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
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
6
+
7
+
build_docs:
8
+
cd doc &&$(MAKE) html
9
+
10
+
watch_docs:
11
+
ifcommand -v entr > /dev/null;then find . -type f -not -path '*/\.*'| grep -i '.*[.]rst'| entr -c make build_docs;else make build_docs;echo"\nInstall entr(1) to automatically run tests on file change.\n See http://entrproject.org/";fi
0 commit comments