From bb408ea10b5a10e8139b68215396ec586f600a61 Mon Sep 17 00:00:00 2001 From: Hiroshi Miura Date: Mon, 9 Jan 2023 00:39:40 +0900 Subject: [PATCH 1/2] Update tox.ini config tox 4 accept comma separate value or array for pass_env, and raise error for space separate values --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 773ef50a..94cdceef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -177,9 +177,9 @@ isolated_build = True [testenv] passenv = - GITHUB_* - APPVEYOR APPVEYOR_* - TRAVIS TRAVIS_* + GITHUB* + APPVEYOR* + TRAVIS* COVERALLS_* PYTEST_ADDOPTS extras = test, check, docs From 7e453d3aef17ff5d91ab5dd0f2ac6959250d7345 Mon Sep 17 00:00:00 2001 From: Hiroshi Miura Date: Mon, 9 Jan 2023 20:54:47 +0900 Subject: [PATCH 2/2] Update pyproject.toml Limit pytest-remotedata~=0.3.3 Co-authored-by: David Dalcino Signed-off-by: Hiroshi Miura --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 94cdceef..c3af7711 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ aqt = "aqt.__main__:main" test = [ "pytest>=6.0", "pytest-pep8", - "pytest-remotedata", + "pytest-remotedata<0.4.0", "pytest-cov", "pytest-socket", "pytest-leaks", @@ -217,7 +217,7 @@ commands = deps = pytest pytest-leaks - pytest-remotedata + pytest-remotedata<0.4.0 pytest-socket pytest-cov