Skip to content

Commit 3f0b191

Browse files
authored
Merge pull request #46 from buildkite/pie-3529-python-test-collector-should-run-without-citrue-flag
Remove `CI` environment requirement
2 parents 3f06c46 + fb91ba0 commit 3f0b191

File tree

3 files changed

+4
-19
lines changed

3 files changed

+4
-19
lines changed

src/buildkite_test_collector/collector/run_env.py

-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ def __circle_ci_env() -> Optional['RuntimeEnvironment']:
7878

7979

8080
def __generic_env() -> Optional['RuntimeEnvironment']:
81-
if __get_env("CI") is None:
82-
return None
83-
8481
return RuntimeEnvironment(
8582
ci="generic",
8683
key=str(uuid4()),

src/buildkite_test_collector/pytest_plugin/__init__.py

+3-8
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,12 @@ def spans(request):
2626
def pytest_configure(config):
2727
"""pytest_configure hook callback"""
2828
env = detect_env()
29-
debug = environ.get("BUILDKITE_ANALYTICS_DEBUG_ENABLED")
3029

3130
config.addinivalue_line("markers", "execution_tag(key, value): add tag to test execution for Buildkite Test Collector. Both key and value must be a string.")
3231

33-
if env:
34-
plugin = BuildkitePlugin(Payload.init(env))
35-
setattr(config, '_buildkite', plugin)
36-
config.pluginmanager.register(plugin)
37-
38-
elif debug:
39-
warning("Unable to detect CI environment. No test analytics will be sent.")
32+
plugin = BuildkitePlugin(Payload.init(env))
33+
setattr(config, '_buildkite', plugin)
34+
config.pluginmanager.register(plugin)
4035

4136

4237
@pytest.hookimpl

tests/buildkite_test_collector/collector/test_run_env.py

+1-8
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77
from buildkite_test_collector.collector.run_env import detect_env
88

99

10-
def test_detect_env_with_no_env_returns_none():
11-
with mock.patch.dict(os.environ, {}, clear=True):
12-
assert detect_env() is None
13-
14-
1510
def test_detect_env_with_buildkite_api_env_vars_returns_the_correct_environment():
1611
id = str(uuid4())
1712
commit = uuid4().hex
@@ -96,9 +91,7 @@ def test_detect_env_with_circle_ci_env_vars_returns_the_correct_environment():
9691
assert runtime_env.message == "excellent adventure"
9792

9893
def test_detect_env_with_generic_env_vars():
99-
env = {
100-
"CI": "true"
101-
}
94+
env = {}
10295

10396
with mock.patch.dict(os.environ, env, clear=True):
10497
runtime_env = detect_env()

0 commit comments

Comments
 (0)