This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
ntunnel
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
don't need twisted as moving to asyncio... allow the python binary to be set to
allow pypy to possibly be used..
tags/v0.1.0
John-Mark Gurney
5 years ago
parent
349295cda7
commit
0f275cf7f7
1 changed files
with
4 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-3
Makefile
+ 4
- 3
Makefile
View File
@@ -1,9 +1,10 @@
VIRTUALENV ?= virtualenv
VRITUALENVARGS =
MODULES=
twistednoise
.py
MODULES=
ntunnel
.py
test:
(echo $(MODULES) | entr sh -c 'python -m coverage run -m
twisted.trial
$(basename $(MODULES)) && coverage report --omit=p/\* -m -i')
(echo $(MODULES) | entr sh -c 'python -m coverage run -m
unittest
$(basename $(MODULES)) && coverage report --omit=p/\* -m -i')
env:
($(VIRTUALENV) p && . ./p/bin/activate && pip install -r requirements.txt)
($(VIRTUALENV)
$(VIRTUALENVARGS)
p && . ./p/bin/activate && pip install -r requirements.txt)
Write
Preview
Loading…
Cancel
Save