remove pytest plugins

This commit is contained in:
Frédéric Péters 2019-02-16 23:25:54 +01:00
parent 4f57070ef4
commit d0e8f22696
2 changed files with 2 additions and 3 deletions

View File

@ -6,5 +6,4 @@ build-dir = docs/_build
test = pytest
[tool:pytest]
addopts = --cov=weasyprint --flake8 --isort
norecursedirs = dist .cache .git build *.egg-info .eggs venv

View File

@ -75,10 +75,10 @@ setup(
setup_requires=pytest_runner,
test_suite='weasyprint.tests',
tests_require=[
'pytest-runner', 'pytest-cov', 'pytest-flake8', 'pytest-isort'],
'pytest-runner'],
extras_require={
'test': [
'pytest-runner', 'pytest-cov', 'pytest-flake8', 'pytest-isort'],
'pytest-runner'],
':python_version < "3.0"': ['CairoSVG >= 1.0.20, < 2.0.0'],
':python_version >= "3.0"': ['CairoSVG >= 1.0.20']},
entry_points={