Skip to content

Commit

Permalink
CI: Test for python 3.9 and 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
maestroque committed Jul 22, 2024
1 parent 9efbf5f commit ba5dcbc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
paths:
- src/coverage/.coverage.py39

test312:
test311:
docker:
- image: cimg/python:3.12
- image: cimg/python:3.11
working_directory: /tmp/src/phys2denoise
resource_class: medium
steps:
Expand All @@ -75,13 +75,13 @@ jobs:
command: |
pytest --cov=./phys2denoise
mkdir /tmp/src/coverage
mv ./.coverage /tmp/src/coverage/.coverage.py312
mv ./.coverage /tmp/src/coverage/.coverage.py311
- store_artifacts:
path: /tmp/src/coverage
- persist_to_workspace:
root: /tmp
paths:
- src/coverage/.coverage.py312
- src/coverage/.coverage.py311

style_check:
docker:
Expand All @@ -105,7 +105,7 @@ jobs:
merge_coverage:
working_directory: /tmp/src/phys2denoise
docker:
- image: cimg/python:3.12
- image: cimg/python:3.11
resource_class: small
steps:
- attach_workspace:
Expand Down Expand Up @@ -136,10 +136,10 @@ workflows:
- test39:
requires:
- style_check
- test312:
- test311:
requires:
- style_check
- merge_coverage:
requires:
- test39
- test312
- test311

0 comments on commit ba5dcbc

Please sign in to comment.