We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e511c commit 4e82584Copy full SHA for 4e82584
.github/workflows/tests.yaml
@@ -31,4 +31,7 @@ jobs:
31
- name: Run pytest
32
shell: bash -el {0}
33
run: |
34
- pytest
+ pytest --cov=xcengine --cov-branch --cov-report=xml
35
+ - uses: codecov/codecov-action@v5
36
+ with:
37
+ verbose: true
environment.yml
@@ -3,7 +3,7 @@ channels:
3
- conda-forge
4
dependencies:
5
# Python
6
- - python >=3.10
+ - python >=3.11
7
# Required
8
- click
9
- docker-py
@@ -15,6 +15,7 @@ dependencies:
15
- xcube # See note below
16
# test dependencies
17
18
+ - pytest-cov
19
20
# Note: xcube is not required for the conversion itself, but is required
21
# to run generated scripts outside containers ("create" mode).
0 commit comments