We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e7e4bb commit 842482bCopy full SHA for 842482b
.circleci/config.yml
@@ -77,6 +77,7 @@ jobs:
77
name: Run pytest
78
command: |
79
mkdir test-results
80
+ mkdir htmlcov
81
82
args=("--junitxml=test-results/junit.xml" "--log-cli-level=DEBUG" "--host" "localhost" "--port=8529")
83
if [ << parameters.arangodb_config >> = "cluster" ]; then
@@ -88,7 +89,10 @@ jobs:
88
89
fi
90
91
echo "Running pytest with args: ${args[@]}"
- pytest --cov=arango --cov-report=xml --cov-report term-missing --color=yes --code-highlight=yes "${args[@]}"
92
+ pytest --cov=arangoasync --cov-report=html:htmlcov --color=yes --code-highlight=yes "${args[@]}"
93
+ - store_artifacts:
94
+ path: htmlcov
95
+ destination: coverage-report
96
- store_artifacts:
97
path: test-results
98
- store_test_results:
0 commit comments