From ec1e62b7108a7907fc140363c4a78bc412a26b3b Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 10 Feb 2021 21:39:51 -0500 Subject: [PATCH] Disable plugins. Workaround for pytest-dev/pytest#8332. --- pyproject.toml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b6ebc0b..528c47e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,14 +7,15 @@ skip-string-normalization = true [tool.setuptools_scm] -[pytest.enabler.black] -addopts = "--black" - -[pytest.enabler.mypy] -addopts = "--mypy" - -[pytest.enabler.flake8] -addopts = "--flake8" +# Disable plugins as workaround for pytest-dev/pytest#8332 +#[pytest.enabler.black] +#addopts = "--black" +# +#[pytest.enabler.mypy] +#addopts = "--mypy" +# +#[pytest.enabler.flake8] +#addopts = "--flake8" [pytest.enabler.cov] addopts = "--cov"