From 0180bce383f4c917b51f856fe5101ed66df220b6 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 11 Sep 2020 16:51:20 +0200 Subject: [PATCH] test: use python based integration test Instead of creating a compose from integration.sh, use the new python based integration tests. The integration.sh script will this just setup the environment and the actual tests are all found in test/integration/ --- test/integration.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/test/integration.sh b/test/integration.sh index 0f937b6..7603c88 100755 --- a/test/integration.sh +++ b/test/integration.sh @@ -81,13 +81,8 @@ sudo ./run-builder.sh start greenprint "Creating Koji tag infrastructure" ./make-tags.sh -greenprint "Creating a compose" -koji --server=http://localhost/kojihub \ - --user=kojiadmin \ - --password=kojipass \ - --authtype=password \ - osbuild-image Fedora-Cloud 32 fedora-32 f32-candidate x86_64 \ - --repo 'http://download.fedoraproject.org/pub/fedora/linux/releases/32/Everything/$arch/os/' +greenprint "Running integration tests" +python3 -m unittest discover -v test/integration/ greenprint "Stopping koji builder" sudo ./run-builder.sh stop