From 44b86c4d388ec8da4543f401bb6fc44e3d1e79d3 Mon Sep 17 00:00:00 2001 From: Robert Niederreiter Date: Wed, 11 Dec 2024 14:45:12 +0100 Subject: [PATCH] Fix test package installation in tox test env --- .flake8 | 2 ++ pyproject.toml | 1 - tox.ini | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.flake8 b/.flake8 index 7ef4f64..5dc1d2f 100644 --- a/.flake8 +++ b/.flake8 @@ -12,6 +12,8 @@ ignore = E203, # black takes care of spaces after commas E231, + # multiple statements on one line (def) + E704, ## # Add extra configuration options in .meta.toml: diff --git a/pyproject.toml b/pyproject.toml index 5f1b84d..a22f036 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,6 @@ callbacks = [ "fastapi", ] test = [ - "pytest-asyncio", "pytest", "requests-mock", "tox", diff --git a/tox.ini b/tox.ini index c684cdd..5d2b796 100644 --- a/tox.ini +++ b/tox.ini @@ -22,9 +22,8 @@ python = [testenv] use_develop = true skip_install = false -constrain_package_deps = true deps = - tests/data/test_wallet_google_plugins + -e tests/data/test_wallet_google_plugins commands = pytest {posargs}