Skip to content

Commit

Permalink
ci: only check SDists on Python 3.11 jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed Mar 5, 2023
1 parent 95dce90 commit 7cb3d25
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ jobs:
- name: Install the project
run: pip install --no-binary=wheel .
- name: Install test dependencies
run: pip install .[test] coverage[toml] build flit
run: pip install .[test] coverage[toml]
- name: Include SDist check dependencies
if: matrix.python-version == '3.11'
run: pip install build flit
- name: Test with pytest
run: |
coverage run -m pytest -W always
Expand Down

0 comments on commit 7cb3d25

Please sign in to comment.