From 82b45064b0fb77c9ddef2f1bdc720614a495c8b2 Mon Sep 17 00:00:00 2001 From: Olivier Ramonat Date: Mon, 16 Jan 2023 14:56:25 +0100 Subject: [PATCH 1/2] Tox's passenv format has changed Fix #550 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b977de05..35096b4d 100644 --- a/tox.ini +++ b/tox.ini @@ -17,7 +17,7 @@ deps = cov: coverage codecov: codecov -passenv = CI GITHUB_* CODECOV_* +passenv = CI,GITHUB_*,CODECOV_* extras = config # Run testsuite with coverage when '-cov' is in the env name From f94a6a2b8007f51109a2d0adc3a26b231e98e0e1 Mon Sep 17 00:00:00 2001 From: Olivier Ramonat Date: Mon, 16 Jan 2023 15:17:47 +0100 Subject: [PATCH 2/2] Ignore (at least temporarily) flake8 B906 and B028 Ref #552 Ref #553 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 35096b4d..7848b6c1 100644 --- a/tox.ini +++ b/tox.ini @@ -70,7 +70,7 @@ markers = [flake8] exclude = .git,__pycache__,build,dist,.tox -ignore = A003, C901, E203, E266, E501, W503,D100,D101,D102,D102,D103,D104,D105,D106,D107,D203,D403,D213 +ignore = A003, C901, E203, E266, E501, W503,D100,D101,D102,D102,D103,D104,D105,D106,D107,D203,D403,D213,B028,B906 # line length is intentionally set to 80 here because black uses Bugbear # See https://github.com/psf/black/blob/master/README.md#line-length for more details max-line-length = 80