diff --git a/.circleci/config.yml b/.circleci/config.yml index 17f4a6b8..3a11f726 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,7 +53,8 @@ jobs: - run: name: "Run pytest" command: | - args=("--host" "localhost" "--complete") + mkdir test-results + args=("--host" "localhost" "--complete" "--junitxml=test-results/junit.xml") if [ << parameters.cluster >> = true ]; then args+=("--cluster" "--port=8529" "--port=8539" "--port=8549") else @@ -64,11 +65,16 @@ jobs: fi echo "Running py.test with args: ${args[@]}" py.test "${args[@]}" + - store_test_results: + path: test-results + - store_artifacts: + path: test-results workflows: python-3.10-community-single-3.10: jobs: - run-tests: + name: python-3.10-community-single-3.10 python-version: "3.10.6" arangodb-version: "arangodb:3.10.10" arangodb-config: "single.conf" @@ -77,8 +83,9 @@ workflows: python-3.10-enterprise-cluster-3.10: jobs: - run-tests: + name: python-3.10-enterprise-cluster-3.10 python-version: "3.10.6" - arangodb-version: "arangodb/enterprise:3.10.10" + arangodb-version: "enterprise:3.10.10" arangodb-config: "cluster.conf" cluster: true enterprise: true