Skip to content

Commit 2ad03e1

Browse files
committed
move tests up a folder level
1 parent e8b46c6 commit 2ad03e1

20 files changed

Lines changed: 5 additions & 5 deletions

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Run tests
3636
run: |
3737
python -m pip install -r test_requirements.txt
38-
coverage run --source=ciw -m unittest discover
38+
coverage run -m unittest discover
3939
4040
- name: Report coverage
4141
run: |

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Install a development version of the library::
1919

2020
Make sure the tests pass (Ciw uses unit & doc testing)::
2121

22-
python -m unittest discover ciw
22+
python -m unittest discover
2323
python doctests.py
2424

2525
We encourage the use of coverage, ensuring all aspects of the code are tested::
2626

27-
coverage run --source=ciw -m unittest discover ciw.tests
27+
coverage run --source=ciw -m unittest discover
2828
coverage report -m
2929

3030
Add tests for your change. Make your change and make the tests pass.
File renamed without changes.

0 commit comments

Comments
 (0)