Skip to content

Commit bb801d6

Browse files
committed
tmp commit
Signed-off-by: Patrick Roy <[email protected]>
1 parent c898933 commit bb801d6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.buildkite/pipeline_pr.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@
6969
if run_all_tests(changed_files):
7070
pipeline.build_group(
7171
"📦 Build",
72-
pipeline.devtool_test(pytest_opts="integration_tests/build/"),
72+
pipeline.devtool_test(
73+
pytest_opts="integration_tests/build/test_coverage.py -s"
74+
),
7375
depends_on_build=False,
7476
)
7577

tests/integration_tests/build/test_coverage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def test_coverage(monkeypatch):
102102
else:
103103
codecov_cmd += f" -B {branch}"
104104

105-
utils.check_output(codecov_cmd)
105+
print(utils.check_output(codecov_cmd))
106106
else:
107107
warnings.warn(
108108
"Not uploading coverage report due to missing CODECOV_TOKEN environment variable"

0 commit comments

Comments
 (0)