Skip to content

Commit 0c80913

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

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
@@ -104,7 +104,7 @@ def test_coverage(monkeypatch):
104104
else:
105105
codecov_cmd += f" -B {branch}"
106106

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

0 commit comments

Comments
 (0)