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 c898933 commit bb801d6Copy full SHA for bb801d6
.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
@@ -102,7 +102,7 @@ def test_coverage(monkeypatch):
102
else:
103
codecov_cmd += f" -B {branch}"
104
105
- utils.check_output(codecov_cmd)
+ print(utils.check_output(codecov_cmd))
106
107
warnings.warn(
108
"Not uploading coverage report due to missing CODECOV_TOKEN environment variable"
0 commit comments