aboutsummaryrefslogtreecommitdiff
path: root/contrib/cirrus/runner.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/cirrus/runner.sh')
-rwxr-xr-xcontrib/cirrus/runner.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh
index 6376bafa2..1bff07203 100755
--- a/contrib/cirrus/runner.sh
+++ b/contrib/cirrus/runner.sh
@@ -55,6 +55,7 @@ function _run_unit() {
}
function _run_apiv2() {
+ source .venv/requests/bin/activate
make localapiv2 |& logformatter
}
@@ -62,6 +63,10 @@ function _run_compose() {
./test/compose/test-compose |& logformatter
}
+function _run_compose_v2() {
+ ./test/compose/test-compose |& logformatter
+}
+
function _run_int() {
dotest integration
}
@@ -96,7 +101,7 @@ function _run_bindings() {
}
function _run_docker-py() {
- source venv/bin/activate
+ source .venv/docker-py/bin/activate
make run-docker-py-tests
}