From a98cc5982063159824a13df7df9437e6ca1b1b85 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Thu, 21 Nov 2024 01:27:02 +0100 Subject: [PATCH] Add tox posargs --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 89030a0b..e0dca7cf 100644 --- a/tox.ini +++ b/tox.ini @@ -28,17 +28,17 @@ setenv = PYTHONPATH = flit_core commands = - python -m pytest --cov=flit --cov=flit_core/flit_core + python -m pytest --cov=flit --cov=flit_core/flit_core {posargs} # Python 3.6: only test flit_core [testenv:py36] commands = - python -m pytest --cov=flit_core/flit_core flit_core + python -m pytest --cov=flit_core/flit_core flit_core {posargs} # Python 3.7: only test flit_core [testenv:py37] commands = - python -m pytest --cov=flit_core/flit_core flit_core + python -m pytest --cov=flit_core/flit_core flit_core {posargs} [testenv:bootstrap] skip_install = true