This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
pasn1
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add a makefile I use for developing pasn1.
It uses entr to watch for edits, and then automatically runs the tests and prints out code coverage.
python2
John-Mark Gurney
5 years ago
parent
f2a06f4c6c
commit
73539cfebc
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
Makefile
+ 4
- 0
Makefile
View File
@@ -0,0 +1,4 @@
MODULES=pasn1.py
test:
(echo $(MODULES) | entr sh -c 'python -m coverage run -m unittest $(basename $(MODULES)) && coverage report -m')
Write
Preview
Loading…
Cancel
Save