You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The <skipped> must have been an accidental copy/paste on my part.
This would have never passed under Python 3.6 anyway, so we need to sanitize python ver = a little further under Python 3.
tests/test_describe.py:29: AssertionError________________________________test_dumpspecs________________________________@pytest.mark.skipif(notHAS_IRAF, reason='Need IRAF to run')deftest_dumpspecs():
# get dumpspecs outputout_f=six.StringIO()
wutil.dumpspecs(outstream=out_f, skip_volatiles=True)
out_str=out_f.getvalue()
out_f.close()
# modify out_str to remove a path that will always be changingout_str='\n'.join([lforlinout_str.split('\n')
if'python exec ='notinl])
# modify out_str to handle old versions which printed Tkinter as camel-caseout_str=out_str.replace('Tkinter', 'tkinter')
# verify it (is version dependent)key= ('2'ifIS_PY2else'3', sys.platform.replace('2', ''))
expected=REF[key]
>assertexpected.strip() ==out_str.strip(), \
'Unexpected output from wutil.dumpspecs: {}'.format(out_str)
EAssertionError: Unexpectedoutputfromwutil.dumpspecs: pythonver=3.6Eplatform=linuxEPY3K=TrueEc.OF_GRAPHICS=FalseE/dev/consoleowner=<skipped>Etkinteruseunattempted.
EEassert'python ver =... unattempted.'=='python ver = ... unattempted.'E-pythonver=3<skipped>E+pythonver=3.6Eplatform=linuxEPY3K=TrueEc.OF_GRAPHICS=FalseE/dev/consoleowner=<skipped>Etkinteruseunattempted.
tests/test_graphics.py:194: AssertionError```
The text was updated successfully, but these errors were encountered:
The
<skipped>
must have been an accidental copy/paste on my part.This would have never passed under Python 3.6 anyway, so we need to sanitize
python ver =
a little further under Python 3.The text was updated successfully, but these errors were encountered: