Author: Ronan Lamy <[email protected]>
Branch: mtest
Changeset: r90946:d601c5fc81dc
Date: 2017-04-04 18:28 +0100
http://bitbucket.org/pypy/pypy/changeset/d601c5fc81dc/
Log: Use CPython's documented way of running its test suite, instead of
our hacked script
diff --git a/lib-python/conftest.py b/lib-python/conftest.py
--- a/lib-python/conftest.py
+++ b/lib-python/conftest.py
@@ -597,7 +597,7 @@
py.test.skip("%s module not included in %s" % (mod,
execpath))
- cmd = "%s %s %s" % (execpath, regrrun, fspath.purebasename)
+ cmd = "%s -m test -v %s" % (execpath, fspath.purebasename)
# add watchdog for timing out
cmd = "%s %s %s %s" % (python, watchdog_script, TIMEOUT, cmd)
else:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit