Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions hack/ci/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,11 @@ function run_apiv2() {
pip install --upgrade pip
pip install --requirement ./test/apiv2/python/requirements.txt
$SUDO sh -c "(
make localapiv2-bash
rc=0
make localapiv2-bash || rc=\$?
source .venv/requests/bin/activate
make localapiv2-python
make localapiv2-python || rc=\$?
exit \$rc
)" |& logformatter
}

Expand Down
Loading