Skip to content

Commit 7035723

Browse files
bors[bot]adamgreig
andauthored
Merge #429
429: Exclude testsuite from cron, fixes #427 r=therealprof a=adamgreig Turns out #427 was caused by #355 after all, because the CI workflow was updated to exclude testsuite from its default `cargo test`, but the cron workflow wasn't. For now this seems like the simplest fix; eventually it might be nice to have cron run the testsuite too (at least in qemu), but really cron's there to catch surprise compilation failures when new Rust versions or new dependency releases come out, so I don't think it's urgent. Co-authored-by: Adam Greig <[email protected]>
2 parents b9e1832 + c1e7e46 commit 7035723

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
toolchain: stable
1717
override: true
1818
- name: Run tests
19-
run: cargo test --all --exclude cortex-m-rt
19+
run: cargo test --all --exclude cortex-m-rt --exclude testsuite
2020
- uses: imjohnbo/issue-bot@v2
2121
if: failure()
2222
with:

0 commit comments

Comments
 (0)