diff --git a/.circleci/config.yml b/.circleci/config.yml index b5f2620..9d37208 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,9 +4,11 @@ executors: python-container: docker: - image: cimg/python:3.12 + resource_class: small python-vm: machine: image: ubuntu-2204:current + resource_class: medium workflows: ci: @@ -77,6 +79,7 @@ jobs: name: Run pytest command: | mkdir test-results + mkdir htmlcov args=("--junitxml=test-results/junit.xml" "--log-cli-level=DEBUG" "--host" "localhost" "--port=8529") if [ << parameters.arangodb_config >> = "cluster" ]; then @@ -88,7 +91,10 @@ jobs: fi echo "Running pytest with args: ${args[@]}" - pytest --cov=arango --cov-report=xml --cov-report term-missing --color=yes --code-highlight=yes "${args[@]}" + pytest --cov=arangoasync --cov-report=html:htmlcov --color=yes --code-highlight=yes "${args[@]}" + - store_artifacts: + path: htmlcov + destination: coverage-report - store_artifacts: path: test-results - store_test_results: