We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a18b190 commit 45a7ea4Copy full SHA for 45a7ea4
makefile
@@ -5,4 +5,14 @@ test:
5
py.test -v brainpy --cov=brainpy --cov-report=html --cov-report term
6
7
retest:
8
- py.test -v brainpy --lf
+ py.test -v brainpy --lf
9
+
10
+update-docs:
11
+ git checkout gh-pages
12
+ git pull origin master
13
+ cd docs && make clean
14
+ cd docs && make html
15
+ git add docs/_build/html -f
16
+ git commit -m "update docs"
17
+ git push origin gh-pages
18
+ git checkout master
0 commit comments