Skip to content

Commit 832dd59

Browse files
committed
Silence warning unless debug
Similar to #7
1 parent cd094bd commit 832dd59

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/buildkite_test_collector/pytest_plugin/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""Buildkite test collector for Pytest."""
22

33
from logging import warning
4+
from os import environ
45

56
import pytest
67

@@ -24,12 +25,13 @@ def spans(request):
2425
def pytest_configure(config):
2526
"""pytest_configure hook callback"""
2627
env = detect_env()
28+
debug = environ.get("BUILDKITE_ANALYTICS_DEBUG_ENABLED")
2729

2830
if env:
2931
plugin = BuildkitePlugin(Payload.init(env))
3032
setattr(config, '_buildkite', plugin)
3133
config.pluginmanager.register(plugin)
32-
else:
34+
elif debug:
3335
warning("Unable to detect CI environment. No test analytics will be sent.")
3436

3537

0 commit comments

Comments
 (0)