From 001c7f682a19da7b53181b5ce68a45638be18a95 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Fri, 25 Sep 2020 11:19:27 +0100 Subject: [PATCH] test/integration: move `koji-compose.py` into `tools` This is not an integration test in itself, but a helper tool. Signed-off-by: Tom Gundersen --- test/integration/koji.sh | 2 +- {test/integration => tools}/koji-compose.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {test/integration => tools}/koji-compose.py (100%) diff --git a/test/integration/koji.sh b/test/integration/koji.sh index 7c3ef9b0c..dada21452 100755 --- a/test/integration/koji.sh +++ b/test/integration/koji.sh @@ -68,7 +68,7 @@ greenprint "Creating Koji task" koji --server=http://localhost:8080/kojihub --user kojiadmin --password kojipass --authtype=password make-task image greenprint "Pushing compose to Koji" -sudo ./test/integration/koji-compose.py "${ID}-${VERSION_ID%.*}" +sudo ./tools/koji-compose.py "${ID}-${VERSION_ID%.*}" greenprint "Show Koji task" koji --server=http://localhost:8080/kojihub taskinfo 1 diff --git a/test/integration/koji-compose.py b/tools/koji-compose.py similarity index 100% rename from test/integration/koji-compose.py rename to tools/koji-compose.py