Skip to content

Commit

Permalink
Disable telemetry by default
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-treebeard authored Oct 16, 2023
1 parent 61bba8f commit 9f376f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nbmake/pytest_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def pytest_terminal_summary(terminalreporter: Any, exitstatus: int, config: Any)
if not config.option.nbmake:
return

if os.getenv("NBMAKE_METRICS", "1") != "1":
if os.getenv("NBMAKE_METRICS", "0") != "1":
return

try:
Expand Down

0 comments on commit 9f376f5

Please sign in to comment.