diff options
Diffstat (limited to 'testing/web-platform/tests/tools/pytest/runtox.py')
-rw-r--r-- | testing/web-platform/tests/tools/pytest/runtox.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testing/web-platform/tests/tools/pytest/runtox.py b/testing/web-platform/tests/tools/pytest/runtox.py new file mode 100644 index 000000000..8c13c53e1 --- /dev/null +++ b/testing/web-platform/tests/tools/pytest/runtox.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +if __name__ == "__main__": + import subprocess + import sys + subprocess.call([sys.executable, "-m", "tox", + "-i", "ALL=https://devpi.net/hpk/dev/", + "--develop"] + sys.argv[1:]) |