Skip to content

Commit d2adcc5

Browse files
authored
Allow users to disable bindep feature via an environment variable (#106)
1 parent bf0c45d commit d2adcc5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,6 @@ This plugin will add the following list of bindep profiles:
5353
5454
This should allow developers to modify their `bindep.txt` file to include
5555
system dependencies specific to a single tox environment if they wish.
56+
57+
To disable bindep feature, you can define `TOX_EXTRA_BINDEP=0` in your
58+
environment.

src/tox_extra/hooks.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def tox_on_install(tox_env: ToxEnv, arguments: Any, section: str, of_type: str)
6767
*tox_env.name.split("-"),
6868
]
6969
)
70-
check_bindep(path=pathlib.Path.cwd(), profiles=profiles)
70+
if os.environ.get("TOX_EXTRA_BINDEP", "1") != "0":
71+
check_bindep(path=pathlib.Path.cwd(), profiles=profiles)
7172

7273

7374
@impl

0 commit comments

Comments
 (0)