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
Python: Switch to the modern approach for running unit tests
Since the release of Setuptools 41.5.0 in 2019, using "python setup.py test"
to run unit tests is deprecated. A more recent change causes running "python
setup.py test" to fail entirely. Hence switch to "python -m unittest". The
"unittest" module was introduced before 2010.
0 commit comments