File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
version : 2.1
2
2
3
- # orbs:
4
- # coveralls: coveralls/[email protected]
3
+ orbs :
4
+ codecov : codecov/[email protected]
5
5
6
6
workflows :
7
7
ci :
8
8
jobs :
9
9
- lint
10
10
- test :
11
+ name : Python (<< matrix.python_version >>) - ArangoDB (<< matrix.arangodb_license >>, << matrix.arangodb_version >> << matrix.arangodb_config >>)
11
12
matrix :
12
13
parameters :
13
14
# TODO: Revisit why pyenv doesn't recognize 3.12
82
83
83
84
- run : docker ps -a
84
85
86
+ - run : docker logs arango
87
+
85
88
- run :
86
89
name : " Run pytest"
87
90
command : |
@@ -97,17 +100,13 @@ jobs:
97
100
fi
98
101
99
102
echo "Running pytest with args: ${args[@]}"
100
- pytest --cov=arango --cov-report=xml "${args[@]}"
103
+ pytest --cov=arango --cov-report=xml --cov-report term-missing --color=yes --code-highlight=yes "${args[@]}"
101
104
102
105
- store_artifacts :
103
106
path : test-results
104
107
105
108
- store_test_results :
106
109
path : test-results
107
110
108
- # - run:
109
- # name: Upload to Coveralls
110
- # command: |
111
- # if [ "<< parameters.python_version >>" = "3.11" && "<< parameters.arangodb_config >>" = "single" && "<< parameters.arangodb_license >>" = "community" && "<< parameters.arangodb_version >>" = "latest" ]; then
112
- # coveralls/upload
113
- # fi
111
+ - codecov/upload :
112
+ file : coverage.xml
Original file line number Diff line number Diff line change 39
39
conf_file=" ${setup} "
40
40
fi
41
41
42
- docker run -d --rm \
42
+ docker run -d \
43
43
--name arango \
44
44
-p 8528:8528 \
45
45
-p 8529:8529 \
You can’t perform that action at this time.
0 commit comments