diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-07-08 00:22:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 00:22:38 +0300 |
commit | d78893c1116b3ada9eb1ebbddc17aee69693eb5c (patch) | |
tree | c9fb5c042829925cf01accfe5355d914dd4798d7 /numpy/testing/__init__.py | |
parent | 068074f4acab87b0fabf194517b7dfb0f038af5a (diff) | |
parent | 22848046920d58ba91893e003b1a07ed9f763275 (diff) | |
download | numpy-d78893c1116b3ada9eb1ebbddc17aee69693eb5c.tar.gz |
Merge pull request #19423 from Schleehauf/main
Skip finite recursion and refcounting tests for pyston
Diffstat (limited to 'numpy/testing/__init__.py')
-rw-r--r-- | numpy/testing/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/testing/__init__.py b/numpy/testing/__init__.py index 064a74a16..bca1d3670 100644 --- a/numpy/testing/__init__.py +++ b/numpy/testing/__init__.py @@ -8,7 +8,8 @@ away. from unittest import TestCase from ._private.utils import * -from ._private.utils import _assert_valid_refcount, _gen_alignment_data +from ._private.utils import (_assert_valid_refcount, _gen_alignment_data, + IS_PYSTON) from ._private import decorators as dec from ._private.nosetester import ( run_module_suite, NoseTester as Tester |