From d0e8f22696efeb8bf1b7532d50bd4b07b3f5d189 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 16 Feb 2019 23:25:54 +0100 Subject: [PATCH] remove pytest plugins --- setup.cfg | 1 - setup.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index b4bd0814..d5304c98 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/setup.py b/setup.py index f515d098..efb915f4 100755 --- a/setup.py +++ b/setup.py @@ -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={