On 7/6/22 14:54, Gylstorff Quirin wrote: > > > On 7/6/22 13:46, Quirin Gylstorff wrote: >> From: Quirin Gylstorff >> >> With avocado-framework version 97.0 the following error occurs: >> ``` >> Successfully installed avocado-framework-97.0 >> + avocado --show=app,test run /builds/debian/isar/testsuite/citest.py >> -t fast,-repro,-startvm --test-runner=runner --disable-sysinfo -p >> quiet=1 -p cross=1 -p time_to_wait=300 >> Suite creation for runner "runner" is not supported >> ``` >> > Reason: the legacy test runner was removed with > https://github.com/avocado-framework/avocado/commit/c961522567539bdb3859524f1087e4c5c69c600a. > >  Quirin Also the new runner breaks the CI build. Attached is the build log. This is on next with the following changes: ``` modified scripts/ci_build.sh @@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then rm -rf /tmp/avocado_venv virtualenv --python python3 /tmp/avocado_venv source /tmp/avocado_venv/bin/activate - pip install avocado-framework + pip install avocado-framework==97.0 fi # Get Avocado build tests path @@ -143,5 +143,5 @@ export VIRTUAL_ENV="./" set -x avocado $VERBOSE run "$TESTSUITE_DIR/citest.py" \ - -t $TAGS --test-runner=runner --disable-sysinfo \ + -t $TAGS --disable-sysinfo \ -p quiet=$QUIET -p cross=$CROSS_BUILD -p time_to_wait=$TIMEOUT ``` Quirin >> Force for now version 96.0. >> >> Signed-off-by: Quirin Gylstorff >> --- >>   scripts/ci_build.sh | 2 +- >>   1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh >> index 2513f1a0..b1ec6912 100755 >> --- a/scripts/ci_build.sh >> +++ b/scripts/ci_build.sh >> @@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then >>       rm -rf /tmp/avocado_venv >>       virtualenv --python python3 /tmp/avocado_venv >>       source /tmp/avocado_venv/bin/activate >> -    pip install avocado-framework >> +    pip install avocado-framework==96.0 >>   fi >>   # Get Avocado build tests path > > - >