1
0
Fork 0

Take optionally the os to test from env variable

This commit is contained in:
Daniele Tricoli 2021-06-25 20:55:05 +02:00
parent c52230e047
commit 001f7af328

5
tests/Vagrantfile vendored
View file

@ -1,5 +1,6 @@
OS_TO_TEST = "debian/buster64"
# OS_TO_TEST = "debian/bullseye64"
# 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"
Vagrant.configure("2") do |config|
config.vm.box = OS_TO_TEST