From cded51ac2e8b1f5a6e3c12856ff53faca763f9d9 Mon Sep 17 00:00:00 2001 From: Fstei Date: Wed, 18 Sep 2024 13:52:30 +0200 Subject: [PATCH] fixes --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index b22963ee..503c6fcc 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ commands = python -m pip install --upgrade pip # the test environment is called by the Github action that runs the unit tests setenv = PYTHONPATH = {toxinidir}/src deps = - .[tests] + .[test] commands = coverage run -m pytest --basetemp={envtmpdir} {posargs} coverage html --omit .tox/*,unittests/* @@ -23,7 +23,7 @@ commands = [testenv:update_snapshots] deps = -r requirements.txt - .[tests] + .[test] syrupy setenv = PYTHONPATH = {toxinidir}/src commands = python -m pytest -m snapshot --basetemp={envtmpdir} {posargs} --snapshot-update @@ -31,7 +31,7 @@ commands = python -m pytest -m snapshot --basetemp={envtmpdir} {posargs} --snaps [testenv:lint] # the lint environment is called by the Github Action that runs the linter deps = - .[linting] + .[lint] setenv = PYTHONPATH = {toxinidir}/src # add your fixtures like e.g. pytest_datafiles here commands =