Skip to content

Commit cf49140

Browse files
aMahannaapetenchea
authored andcommitted
Update config.yml
1 parent 31c44f5 commit cf49140

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ workflows:
1010
- test:
1111
matrix:
1212
parameters:
13-
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
# TODO: Revisit why pyenv doesn't recognize 3.12
14+
python_version: ["3.8", "3.9", "3.10", "3.11"] # "3.12"
1415
arangodb_config: ["single", "cluster"]
1516
arangodb_license: ["community", "enterprise"]
1617
arangodb_version: ["3.10.10", "3.11.4", "latest"]
@@ -102,4 +103,9 @@ jobs:
102103
- store_test_results:
103104
path: test-results
104105

105-
# - coveralls/upload
106+
- run:
107+
name: Upload to Coveralls
108+
command: |
109+
if [ "<< parameters.python_version >>" = "3.11" && "<< parameters.arangodb_config >>" == "single" && "<< parameters.arangodb_license >>" == "community" ]; then
110+
coveralls/upload
111+
fi

0 commit comments

Comments
 (0)