[32bit] nitime.tests.test_timeseries.test_basic_slicing: npt.assert_equal(len(t[ep]), x)
See original GitHub issueFails only on i686:
======================================================================
FAIL: nitime.tests.test_timeseries.test_basic_slicing
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib/python3.4/site-packages/nose/case.py", line 198, in runTest
self.test(*self.arg)
File "/builddir/build/BUILD/nitime-rel-0.5/nitime/tests/test_timeseries.py", line 672, in test_basic_slicing
npt.assert_equal(len(t[ep]), x)
File "/usr/lib/python3.4/site-packages/numpy/testing/utils.py", line 354, in assert_equal
raise AssertionError(msg)
AssertionError:
Items are not equal:
ACTUAL: 0
DESIRED: 1
Issue Analytics
- State:
- Created 8 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hello. I’m not a Python expert, at all. I’m running pytest on a RPi3 running an armv7hl system.
In the for loop at line 690 of
test_timeseries.py
https://github.com/nipy/nitime/blob/07382c057b628f74d47b525d0552b832b59c18df/nitime/tests/test_timeseries.py#L690when the loop start,
x
is ‘0’ andlen(t[ep])
is0
whenx
become 1,len(t[ep])
is0
as well, andnpt.assert_equal(len(t[ep]), x)
fails.Sorry—I’ll try and collect more information and hopefully that’ll tell us a little more. On my TODO list now 😃