8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501bae7 commit 0bc2ccbCopy full SHA for 0bc2ccb
sklearn/utils/testing.py
@@ -697,22 +697,7 @@ def run_test(*args, **kwargs):
697
reason='skip on travis')
698
699
except ImportError:
700
-
701
- def skip_if_32bit(func):
702
- """Test decorator that skips tests on 32bit platforms."""
703
- @wraps(func)
704
- def run_test(*args, **kwargs):
705
- bits = 8 * struct.calcsize("P")
706
- if bits == 32:
707
- raise SkipTest('Test skipped on 32bit platforms.')
708
- else:
709
- return func(*args, **kwargs)
710
- return run_test
711
712
- def skip_travis():
713
- """Skip test if being run on Travis."""
714
- if os.environ.get('TRAVIS') == "true":
715
- raise SkipTest("This test needs to be skipped on Travis")
+ pass
716
717
718
def if_safe_multiprocessing_with_blas(func):
0 commit comments