diff options
| author | alex <argriffi@ncsu.edu> | 2014-12-02 15:47:48 -0500 |
|---|---|---|
| committer | alex <argriffi@ncsu.edu> | 2014-12-02 15:47:48 -0500 |
| commit | 8e7645989e4b8a7c2bb27b02e9fc5917fb70ac70 (patch) | |
| tree | c9658c1cdaa928462a28b875aeccc7092c783cd0 /numpy/testing | |
| parent | a6b0917f180999293fdebbce4ae1728b4e3f45ff (diff) | |
| download | numpy-8e7645989e4b8a7c2bb27b02e9fc5917fb70ac70.tar.gz | |
TST: report relaxed strides setting alongside the numpy version and path at the beginning of nosetests
Diffstat (limited to 'numpy/testing')
| -rw-r--r-- | numpy/testing/nosetester.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index 85e9c0f0e..b802f4472 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -246,6 +246,8 @@ class NoseTester(object): import numpy print("NumPy version %s" % numpy.__version__) + relaxed_strides = numpy.ones((10, 1), order="C").flags.f_contiguous + print("NumPy relaxed strides checking option:", relaxed_strides) npdir = os.path.dirname(numpy.__file__) print("NumPy is installed in %s" % npdir) |
