Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gmatteo committed Jul 21, 2024
1 parent a7f255c commit fabe565
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
matrix:
config:
- os: ubuntu-latest
python: '>3.9'
python: '3.11'
#python: '>3.9'
#extras: ci, optional

# pytest-split automatically distributes work load so parallel jobs finish in similar time
Expand All @@ -52,10 +53,11 @@ jobs:
- name: Installing abinit from conda-forge
run: |
micromamba run -n abipy install abinit -c conda-forge
micromamba run -n abipy abinit --version
micromamba run -n abipy abinit --build
micromamba activate abipy
abinit --version
abinit --build
- name: pytest split ${{ matrix.split }}
run: |
micromamba activate abipy
pytest --splits 10 --group ${{ matrix.split }} --durations-path tests/files/.pytest-split-durations tests
pytest --splits 10 --group ${{ matrix.split }} # --durations-path tests/files/.pytest-split-durations tests

0 comments on commit fabe565

Please sign in to comment.