Commit 8a2ea03d authored by Stefan Behnel's avatar Stefan Behnel

disable refnanny in tests under PyPy

parent 1d0e8213
......@@ -1714,7 +1714,7 @@ def main():
action="store_true", default=False,
help="only compile pyx to c, do not run C compiler or run the tests")
parser.add_option("--no-refnanny", dest="with_refnanny",
action="store_false", default=True,
action="store_false", default=not IS_PYPY,
help="do not regression test reference counting")
parser.add_option("--no-fork", dest="fork",
action="store_false", default=True,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment