We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd094bd commit 832dd59Copy full SHA for 832dd59
src/buildkite_test_collector/pytest_plugin/__init__.py
@@ -1,6 +1,7 @@
1
"""Buildkite test collector for Pytest."""
2
3
from logging import warning
4
+from os import environ
5
6
import pytest
7
@@ -24,12 +25,13 @@ def spans(request):
24
25
def pytest_configure(config):
26
"""pytest_configure hook callback"""
27
env = detect_env()
28
+ debug = environ.get("BUILDKITE_ANALYTICS_DEBUG_ENABLED")
29
30
if env:
31
plugin = BuildkitePlugin(Payload.init(env))
32
setattr(config, '_buildkite', plugin)
33
config.pluginmanager.register(plugin)
- else:
34
+ elif debug:
35
warning("Unable to detect CI environment. No test analytics will be sent.")
36
37
0 commit comments