Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Nov 10, 2023
1 parent 5fe59c5 commit 3b12712
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ workflows:
- test:
matrix:
parameters:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# TODO: Revisit why pyenv doesn't recognize 3.12
python_version: ["3.8", "3.9", "3.10", "3.11"] # "3.12"
arangodb_config: ["single", "cluster"]
arangodb_license: ["community", "enterprise"]
arangodb_version: ["3.10.10", "3.11.4", "latest"]
Expand Down Expand Up @@ -102,4 +103,9 @@ jobs:
- store_test_results:
path: test-results

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

0 comments on commit 3b12712

Please sign in to comment.