From 529cf20f56407e633ad823572f7661a279f74e55 Mon Sep 17 00:00:00 2001 From: Aaron Holmes Date: Thu, 5 Sep 2024 15:30:43 -0700 Subject: [PATCH] Remove unnecessary envvar from Tox config. This envvar is passed through without defining in the Tox config. --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e092df99..2d4ace72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -210,8 +210,6 @@ legacy_tox_ini = """ # for a subset of tests in the monorepo rather # than for all tests in the repo. PYTEST_ADDOPTS = --cov={env:PYTEST_TARGET:.} - # additional pytest flags - defaults to no flags - PYTEST_FLAGS = {env:PYTEST_FLAGS:} commands = # use `.` add the default --cov option if it's not specified pytest {env:PYTEST_FLAGS} {env:PYTEST_ADDOPTS:--cov=.} {env:PYTEST_TARGET}