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
I am trying to build flake8 3.0.4 for python 3.5. The python3 setup.py test command fails with error: error in setup.cfg: command 'PyTest' has no such option 'norecursedirs'. This failure is related PyTest Issue 567, where the use of the [pytest] section in setup.cfg causes conflicts with built-in setuptools commands. The solution is to change the section name to [tool:pytest]. In fact, the use of [pytest] is now deprecated.
The text was updated successfully, but these errors were encountered:
In GitLab by @toddrme2178 on Sep 22, 2016, 08:03
I am trying to build flake8 3.0.4 for python 3.5. The
python3 setup.py test
command fails witherror: error in setup.cfg: command 'PyTest' has no such option 'norecursedirs'
. This failure is related PyTest Issue 567, where the use of the[pytest]
section insetup.cfg
causes conflicts with built-in setuptools commands. The solution is to change the section name to[tool:pytest]
. In fact, the use of[pytest]
is now deprecated.The text was updated successfully, but these errors were encountered: