File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,11 @@ executors:
4
4
python-container :
5
5
docker :
6
6
- image : cimg/python:3.12
7
+ resource_class : small
7
8
python-vm :
8
9
machine :
9
10
image : ubuntu-2204:current
11
+ resource_class : medium
10
12
11
13
workflows :
12
14
ci :
77
79
name : Run pytest
78
80
command : |
79
81
mkdir test-results
82
+ mkdir htmlcov
80
83
81
84
args=("--junitxml=test-results/junit.xml" "--log-cli-level=DEBUG" "--host" "localhost" "--port=8529")
82
85
if [ << parameters.arangodb_config >> = "cluster" ]; then
88
91
fi
89
92
90
93
echo "Running pytest with args: ${args[@]}"
91
- pytest --cov=arango --cov-report=xml --cov-report term-missing --color=yes --code-highlight=yes "${args[@]}"
94
+ pytest --cov=arangoasync --cov-report=html:htmlcov --color=yes --code-highlight=yes "${args[@]}"
95
+ - store_artifacts :
96
+ path : htmlcov
97
+ destination : coverage-report
92
98
- store_artifacts :
93
99
path : test-results
94
100
- store_test_results :
You can’t perform that action at this time.
0 commit comments