Skip to content

Commit

Permalink
anvil: propagate TESTS down to the test suite
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
  • Loading branch information
fabbione committed Jun 22, 2023
1 parent fb19022 commit 6026967
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci-setup-anvil-bm-vm
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ cd "$DEPLOYDIR"
git clone git@github.com:Alteeve/anvil-test-suite.git
cd anvil-test-suite
set +e
./run-tests $runtestopts -b $BREAKPOINT
./run-tests $runtestopts -t $TESTS -b $BREAKPOINT
ret=$?
cd /root/ci-tools

Expand Down
6 changes: 5 additions & 1 deletion ci-setup-anvil-vm-env
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
[ -z "$REPOSRC" ] && REPOSRC="$2"
[ -z "$ANVILSRC" ] && ANVILSRC="$3"
[ -z "$DEPLOYDR" ] && DEPLOYDR="$4"
BREAKPOINT="$5"

[ -z "$TESTS" ] && TESTS="$5"
[ -z "$TESTS" ] && TESTS="all"

BREAKPOINT="$6"

[ -z "$BREAKPOINT" ] && BREAKPOINT=none

Expand Down

0 comments on commit 6026967

Please sign in to comment.