You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
test:
2
-
./run-tests.py
2
+
py.test
3
3
4
4
watch_test:
5
5
ifcommand -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
@@ -17,7 +17,7 @@ watch_docs:
17
17
cd doc &&$(MAKE) watch_docs
18
18
19
19
flake8:
20
-
flake8 tmuxp
20
+
flake8 tmuxp tests
21
21
22
22
watch_flake8:
23
23
ifcommand -v entr > /dev/null;then find . -type f -not -path '*/\.*'| grep -i '.*[.][py]'| entr -c make flake8;else make flake8;echo"\nInstall entr(1) to automatically run tests on file change.\n See http://entrproject.org/";fi
0 commit comments