summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLukáš Ježek <lukas.jezek@nic.cz>2020-03-13 11:54:01 +0100
committerTomas Krizek <tomas.krizek@nic.cz>2020-05-27 10:12:40 +0200
commit1bc784beb927cef166f9d603d0936f90fb195015 (patch)
tree325d4ac157f631a0ebaca4de9376375065e064bb /tests
parentpackaging tests: add refuse_nord (diff)
downloadknot-resolver-1bc784beb927cef166f9d603d0936f90fb195015.tar.xz
knot-resolver-1bc784beb927cef166f9d603d0936f90fb195015.zip
CI: run all distributions on nightly branch
Diffstat (limited to '')
-rw-r--r--tests/packaging/test_packaging.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/tests/packaging/test_packaging.py b/tests/packaging/test_packaging.py
index 1ede3967..3c97fbe5 100644
--- a/tests/packaging/test_packaging.py
+++ b/tests/packaging/test_packaging.py
@@ -371,8 +371,8 @@ def buildenv(request, tmpdir_factory):
from_image=img.build_id)
yield img
- client.images.remove(img.run_id)
- client.images.remove(img.build_id)
+# client.images.remove(img.run_id)
+# client.images.remove(img.build_id)
@pytest.mark.parametrize('module', MODULES)
@@ -390,7 +390,7 @@ def test_collect(module, buildenv, tmp_path):
distro_dir = os.path.join(module_dir, buildenv.distro, buildenv.version)
if os.path.isfile(os.path.join(distro_dir, 'NOTSUPPORTED')):
- pytest.skip('Unsupported linux distribution ({0} {1})'.format(buildenv.distro, buildenv.version))
+ pytest.skip('Unsupported linux distribution ({0} {1}:{2})'.format(buildenv.distro, buildenv.version, module))
try:
if module == 'daemon/packaging':
@@ -430,7 +430,9 @@ def test_collect(module, buildenv, tmp_path):
'pre-run.sh'), '/root/kresd/')
if os.path.isfile(os.path.join(distro_dir, 'rundeps')):
- ch.exec_cmd(buildenv.cmd_pkgs_install() + ' '.join(
+ logger.debug(buildmod.cmd_pkgs_install() + ' '.join(
+ buildmod.readDependencies(os.path.join(distro_dir, 'rundeps'))))
+ ch.exec_cmd(buildmod.cmd_pkgs_install() + ' '.join(
buildmod.readDependencies(os.path.join(distro_dir, 'rundeps'))),
'/root/kresd/')
@@ -469,8 +471,8 @@ def test_collect(module, buildenv, tmp_path):
finally:
ch.stop()
ch.container.remove()
- if buildmod is not None and buildmod is not buildenv:
- client.images.remove(buildmod.run_id)
- client.images.remove(buildmod.build_id)
+# if buildmod is not None and buildmod is not buildenv:
+# client.images.remove(buildmod.run_id)
+# client.images.remove(buildmod.build_id)
assert(rcode == 0)