a6aab2242a
the image building functionality is now tested by the
osbuild-composer test suite. We weren't successfull at making this
test suite work with the 2 backends so decided to disabled these
scenarios instead. In the future they will likely be deleted.
Cherry-picked from f1c15c67e0
Related: rhbz#1825190
14 lines
315 B
Bash
Executable File
14 lines
315 B
Bash
Executable File
#!/bin/sh -e
|
|
# This is the expected entry point for Cockpit CI; will be called without
|
|
# arguments but with an appropriate $TEST_OS, and optionally $TEST_SCENARIO
|
|
|
|
make vm
|
|
|
|
if [ -n "$TEST_SCENARIO" ]; then
|
|
if [ "$TEST_SCENARIO" == "ci" ]; then
|
|
test/check-cli TestPylint
|
|
fi
|
|
else
|
|
test/check-cli TestImages
|
|
fi
|