Skip to content

Commit

Permalink
Can't test file formats that don't get pulled in in the requirements,…
Browse files Browse the repository at this point in the history
… fix
  • Loading branch information
dbhart committed Sep 12, 2024
1 parent a93d6b2 commit 5d9f62a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
python3 -m pip install tomli
- name: Test install
run: python3 -m pip install .[dev]
run: python3 -m pip install .[tests]

- name: Test with pytest
run: python3 -m pytest --cov=sansmic examples/ tests/
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ dev = [
'pyproject_hooks',
'black',
'pybind11',
'unittest',
'pytest',
'pytest-cov',
]
tests = [
'pytest',
'pytest-cov',
'h5py',
Expand Down

0 comments on commit 5d9f62a

Please sign in to comment.