Skip to content

Commit 7b9d137

Browse files
committed
Add make command for running nose tests
1 parent 57671ed commit 7b9d137

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ test:
44
watch_test:
55
if command -v entr > /dev/null; then find . -type f -not -path '*/\.*' | grep -i '.*[.]py' | entr -c make test; else make test; echo "\nInstall entr(1) to automatically run tests on file change.\n See http://entrproject.org/"; fi
66

7+
nose:
8+
nosetests tmuxp/testsuite/*.py -m "^test*."
9+
710
build_docs:
811
cd doc && $(MAKE) html
912

0 commit comments

Comments
 (0)