We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f2128 commit 0c80913Copy full SHA for 0c80913
.buildkite/pipeline_pr.py
@@ -69,7 +69,9 @@
69
if run_all_tests(changed_files):
70
pipeline.build_group(
71
"📦 Build",
72
- pipeline.devtool_test(pytest_opts="integration_tests/build/"),
+ pipeline.devtool_test(
73
+ pytest_opts="integration_tests/build/test_coverage.py -s"
74
+ ),
75
depends_on_build=False,
76
)
77
tests/integration_tests/build/test_coverage.py
@@ -104,7 +104,7 @@ def test_coverage(monkeypatch):
104
else:
105
codecov_cmd += f" -B {branch}"
106
107
- utils.check_output(codecov_cmd)
+ print(utils.check_output(codecov_cmd))
108
109
warnings.warn(
110
"Not uploading coverage report due to missing CODECOV_TOKEN environment variable"
0 commit comments