diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-06-30 16:04:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 14:04:47 -0600 |
commit | e88f15a3bca93c82eb02c13e87f2b6839385639b (patch) | |
tree | 2e36e2f7cdbf390d1e49eef5a03a4664552d84ee /tests/cloud_tests | |
parent | 882f1a5f2d5bafd08e6900a2782c3affa67c9d86 (diff) | |
download | vyos-cloud-init-e88f15a3bca93c82eb02c13e87f2b6839385639b.tar.gz vyos-cloud-init-e88f15a3bca93c82eb02c13e87f2b6839385639b.zip |
cloud_tests: don't pass --python-version to read-dependencies (#465)
We dropped that parameter in 4d26848
Diffstat (limited to 'tests/cloud_tests')
-rw-r--r-- | tests/cloud_tests/bddeb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cloud_tests/bddeb.py b/tests/cloud_tests/bddeb.py index 6f74436d..e45ad947 100644 --- a/tests/cloud_tests/bddeb.py +++ b/tests/cloud_tests/bddeb.py @@ -55,7 +55,7 @@ def build_deb(args, instance): LOG.debug('installing deps') deps_path = os.path.join(extract_dir, 'tools', 'read-dependencies') instance.execute([deps_path, '--install', '--test-distro', - '--distro', 'ubuntu', '--python-version', '3']) + '--distro', 'ubuntu']) LOG.debug('building deb in remote system at: %s', output_link) bddeb_args = args.bddeb_args.split() if args.bddeb_args else [] |