Skip to content

Commit 842482b

Browse files
committed
Circle CI code coverage
1 parent 6e7e4bb commit 842482b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
name: Run pytest
7878
command: |
7979
mkdir test-results
80+
mkdir htmlcov
8081
8182
args=("--junitxml=test-results/junit.xml" "--log-cli-level=DEBUG" "--host" "localhost" "--port=8529")
8283
if [ << parameters.arangodb_config >> = "cluster" ]; then
@@ -88,7 +89,10 @@ jobs:
8889
fi
8990
9091
echo "Running pytest with args: ${args[@]}"
91-
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
9296
- store_artifacts:
9397
path: test-results
9498
- store_test_results:

0 commit comments

Comments
 (0)