schutzbot: move test scripts into the test package

`run_{base,image}_tests.sh` are osbuild-composer-specific, and should
live in the `-test` subpackage, rather than as part of the testing
infratructure.

This is not a functional change.
This commit is contained in:
Tom Gundersen 2020-10-19 19:33:15 +00:00 committed by Ondřej Budai
parent fbc93f7f87
commit 1d7df26775
3 changed files with 2 additions and 2 deletions

View file

@ -436,14 +436,14 @@ void run_tests(test_type) {
if (test_type == 'base') {
sh (
label: "Base tests",
script: "schutzbot/run_base_tests.sh"
script: "/usr/libexec/tests/osbuild-composer/base_tests.sh"
)
}
if (test_type == 'image') {
sh (
label: "Image tests",
script: "schutzbot/run_image_tests.sh"
script: "/usr/libexec/tests/osbuild-composer/image_tests.sh"
)
}