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 5e3392a commit 581784cCopy full SHA for 581784c
Makefile
@@ -59,12 +59,14 @@ notebook :
59
ipython notebook --matplotlib=inline --notebook-dir=notebooks/
60
61
bench :
62
+ @git stash >/dev/null 2>&1
63
@echo 'Branch master'
- git checkout master
64
+ @git checkout master >/dev/null 2>&1
65
python3 $(script)
66
@echo 'Branch $(branch)'
- git checkout $(branch)
67
+ @git checkout $(branch) >/dev/null 2>&1
68
69
+ @git stash apply >/dev/null 2>&1
70
71
autopep8 :
72
autopep8 -ir test ot examples --jobs -1
0 commit comments