-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into server-maintenance-mode
- Loading branch information
Showing
16 changed files
with
447 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
version: 2.1 | ||
|
||
# orbs: | ||
# coveralls: coveralls/[email protected] | ||
orbs: | ||
codecov: codecov/[email protected] | ||
|
||
workflows: | ||
ci: | ||
jobs: | ||
- lint | ||
- test: | ||
name: Python (<< matrix.python_version >>) - ArangoDB (<< matrix.arangodb_license >>, << matrix.arangodb_version >> << matrix.arangodb_config >>) | ||
matrix: | ||
parameters: | ||
# TODO: Revisit why pyenv doesn't recognize 3.12 | ||
|
@@ -82,6 +83,8 @@ jobs: | |
|
||
- run: docker ps -a | ||
|
||
- run: docker logs arango | ||
|
||
- run: | ||
name: "Run pytest" | ||
command: | | ||
|
@@ -97,17 +100,13 @@ jobs: | |
fi | ||
echo "Running pytest with args: ${args[@]}" | ||
pytest --cov=arango --cov-report=xml "${args[@]}" | ||
pytest --cov=arango --cov-report=xml --cov-report term-missing --color=yes --code-highlight=yes "${args[@]}" | ||
- store_artifacts: | ||
path: test-results | ||
|
||
- store_test_results: | ||
path: test-results | ||
|
||
# - run: | ||
# name: Upload to Coveralls | ||
# command: | | ||
# if [ "<< parameters.python_version >>" = "3.11" && "<< parameters.arangodb_config >>" = "single" && "<< parameters.arangodb_license >>" = "community" && "<< parameters.arangodb_version >>" = "latest" ]; then | ||
# coveralls/upload | ||
# fi | ||
- codecov/upload: | ||
file: coverage.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.