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
Looks like blessings is one of the last few modules which is still using nose which should not be used with python 3.x https://nose.readthedocs.io/en/latest/
Any plans to migrate to pytest or even unittest? (better would be pytest)
[tkloczko@ss-desktop blessings-1.7]$ grep -r noseblessings/tests.py:from nose import SkipTestblessings/tests.py:from nose.tools import eq_blessings/__init__.py: # work even when -s is passed to nosetests. Lean toward sendingblessings/__init__.py: # running simply `nosetests` (without progressive) on nose-.travis.yml: - pip install -q nose.travis.yml: - nosetests -w /tmp blessings.testssetup.py: tests_require=['nose'],setup.py: test_suite='nose.collector',tox.ini:commands = nosetests blessingstox.ini: noseREADME.rst: * Extracted Blessings from nose-progressive, my `progress-bar-having,README.rst:.. _`progress-bar-having, traceback-shortcutting, rootin', tootin' testrunner`: http://pypi.python.org/pypi/nose-progressive/
The text was updated successfully, but these errors were encountered:
Looks like
blessings
is one of the last few modules which is still usingnose
which should not be used with python 3.x https://nose.readthedocs.io/en/latest/Any plans to migrate to pytest or even unittest? (better would be pytest)
The text was updated successfully, but these errors were encountered: