Skip to content

Commit

Permalink
Update pytest configuration and package installation
Browse files Browse the repository at this point in the history
  • Loading branch information
hllelli2 committed Oct 1, 2024
1 parent cb6a8c9 commit b95eaa6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
allow-prereleases: true

- name: Install package
run: python -m pip install -e .
run: python -m pip install -e .[test]

- name: Test package
run: >-
python -m pytest -ra --cov --cov-report=xml --cov-report=term
--durations=20 --disable-pytest-warnings
--durations=20
- name: Upload coverage report
uses: codecov/codecov-action@v3.1.4
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ install_requires =


[options.packages.find]
where = src
where =
src
src/Transforms
src/Wrappers

exclude =
tests
Expand Down

0 comments on commit b95eaa6

Please sign in to comment.