Skip to content

Commit

Permalink
Don't run macro tests on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
frengor committed Apr 25, 2024
1 parent 7641260 commit 210f461
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/macro_tests.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![cfg(feature = "derive")]
#![cfg(all(not(miri), feature = "derive", not(feature = "nightly")))]
// No need to run under miri. Also, don't run with the nightly compiler,
// since error messages might have changed, hence failing the CI

#[cfg(not(miri))]
#[test]
fn macro_tests() {
let t = trybuild::TestCases::new();
Expand Down

0 comments on commit 210f461

Please sign in to comment.