b75b692607
weldr-client has replaced composer-cli so remove all of the code and tests, adjust various things so they don't expect it to be available, and rename some things like test/composertest.py to reflect its exclusive use by lorax.
11 lines
320 B
Bash
Executable File
11 lines
320 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
|
|
|
|
if [ "$TEST_SCENARIO" != "osbuild-composer" ]; then
|
|
echo "$TEST_SCENARIO no longer supported by lorax"
|
|
exit 1
|
|
fi
|
|
make vm
|
|
test/check-lorax TestLorax
|