diff --git a/pytest.ini b/pytest.ini index 10681ad..9b3c1ec 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,6 +1,6 @@ [pytest] norecursedirs=dist build .tox .eggs -addopts=--doctest-modules --flake8 --black +addopts=--doctest-modules --flake8 doctest_optionflags=ALLOW_UNICODE ELLIPSIS filterwarnings= ignore:Possible nested set::pycodestyle:113 diff --git a/setup.cfg b/setup.cfg index a3eb3c9..235303f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,7 +29,7 @@ testing = pytest >= 3.5, !=3.7.3 pytest-checkdocs pytest-flake8 - pytest-black + pytest-black; python_version >= "3" # local diff --git a/tox.ini b/tox.ini index 8a3bf67..8fa7966 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,8 @@ tox_pip_extensions_ext_venv_update = true deps = setuptools>=31.0.1 commands = - pytest {posargs} + !py27: pytest --black {posargs} + py27: pytest {posargs} usedevelop = True extras = testing