Skip to content

Commit 734c5c1

Browse files
committed
Update Makefile to use pytest for unit testing
Replace nosetests with pytest and simplify the cleanup logic for temporary test directories.
1 parent 3b7a0c4 commit 734c5c1

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
unittest unittests test-unittest test-unittests:
2-
nosetests --nocapture --nologcapture --all-modules --verbose --with-coverage --cover-package=autotst
3-
rm -r species
4-
rm -r ts
5-
rm -r test/species
6-
rm -r test/ts
2+
pytest --verbose --tb=short autotst/
3+
rm -rf species ts test/species test/ts

0 commit comments

Comments
 (0)