1
0
Fork 0

Use fetch method to handle the default os to test

This commit is contained in:
Daniele Tricoli 2021-06-25 21:01:23 +02:00
parent 001f7af328
commit eb477f3e80
1 changed files with 1 additions and 1 deletions

2
tests/Vagrantfile vendored
View File

@ -1,6 +1,6 @@
# Default to buster, but just set env variable to, for example,
# "debian/bullseye64" to run test against bullseye.
OS_TO_TEST = ENV["OS_TO_TEST"] || "debian/buster64"
OS_TO_TEST = ENV.fetch("OS_TO_TEST", "debian/buster64")
Vagrant.configure("2") do |config|
config.vm.box = OS_TO_TEST