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: .tmuxp.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ windows:
12
12
panes:
13
13
- focus: true
14
14
- pane
15
-
- if command -v entr > /dev/null; then find . -type f -not -path '*/\.*' | grep -i '.*[.]py$' | entr -c ./run-tests.py; else ./run-tests.py; echo "\nInstall entr(1) to automatically run tests on file change.\n See http://entrproject.org/"; fi
15
+
- make watch_test
16
16
17
17
- window_name: docs
18
18
layout: main-horizontal
@@ -24,5 +24,5 @@ windows:
24
24
panes:
25
25
- focus: true
26
26
- pane
27
-
- echo 'docs built to <http://0.0.0.0:8003/_build/html>'; python -m SimpleHTTPServer 8003
28
-
- if command -v entr > /dev/null; then find .. -print | grep -i '.*[.]rst' | entr -c make html; else make html; echo "\nInstall entr(1) to automatically rebuild documentation when files change. \nSee http://entrproject.org/"; fi
Copy file name to clipboardExpand all lines: Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,4 +8,4 @@ build_docs:
8
8
cd doc &&$(MAKE) html
9
9
10
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
Copy file name to clipboardExpand all lines: doc/Makefile
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -155,3 +155,9 @@ doctest:
155
155
checkbuild:
156
156
rm -rf $(BUILDDIR)
157
157
$(SPHINXBUILD) -n -q ./ $(BUILDDIR)
158
+
159
+
watch:
160
+
ifcommand -v entr > /dev/null;then find . -type f -not -path '*/\.*'| grep -i '.*[.]rst'| entr -c make html;else make html;echo"\nInstall entr(1) to automatically run tests on file change.\n See http://entrproject.org/";fi
161
+
162
+
serve:
163
+
echo'docs built to <http://0.0.0.0:8003/_build/html>'; python -m SimpleHTTPServer 8003
0 commit comments