Skip to content

Commit 4e82584

Browse files
committed
Bump minimum Python to 3.11; use Codecov in CI
1 parent 54e511c commit 4e82584

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,7 @@ jobs:
3131
- name: Run pytest
3232
shell: bash -el {0}
3333
run: |
34-
pytest
34+
pytest --cov=xcengine --cov-branch --cov-report=xml
35+
- uses: codecov/codecov-action@v5
36+
with:
37+
verbose: true

environment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- conda-forge
44
dependencies:
55
# Python
6-
- python >=3.10
6+
- python >=3.11
77
# Required
88
- click
99
- docker-py
@@ -15,6 +15,7 @@ dependencies:
1515
- xcube # See note below
1616
# test dependencies
1717
- pytest
18+
- pytest-cov
1819

1920
# Note: xcube is not required for the conversion itself, but is required
2021
# to run generated scripts outside containers ("create" mode).

0 commit comments

Comments
 (0)