Merged in jurko/pytest/jurko/tox_usage (pull request #150)
runtox.py cleanup
This commit is contained in:
commit
6efde60b8b
10
runtox.py
10
runtox.py
|
@ -1,10 +1,8 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
if __name__ == "__main__":
|
||||
subprocess.call(["tox",
|
||||
import subprocess
|
||||
import sys
|
||||
subprocess.call([sys.executable, "-m", "tox",
|
||||
"-i", "ALL=https://devpi.net/hpk/dev/",
|
||||
"--develop",] + sys.argv[1:])
|
||||
|
||||
"--develop"] + sys.argv[1:])
|
||||
|
|
Loading…
Reference in New Issue