Skip to content

Commit 581784c

Browse files
committed
final makefile bench
1 parent 5e3392a commit 581784c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,14 @@ notebook :
5959
ipython notebook --matplotlib=inline --notebook-dir=notebooks/
6060

6161
bench :
62+
@git stash >/dev/null 2>&1
6263
@echo 'Branch master'
63-
git checkout master
64+
@git checkout master >/dev/null 2>&1
6465
python3 $(script)
6566
@echo 'Branch $(branch)'
66-
git checkout $(branch)
67+
@git checkout $(branch) >/dev/null 2>&1
6768
python3 $(script)
69+
@git stash apply >/dev/null 2>&1
6870

6971
autopep8 :
7072
autopep8 -ir test ot examples --jobs -1

0 commit comments

Comments
 (0)