Skip to content

Commit 8c4c336

Browse files
committed
remove archived error-chain crate from integration tests
Can't run `cargo test --all` for `error-chain` anymore. The tests don't compile because of `#[deny(invalid_doc_attributes)]`. Here's the error message: ``` error: this attribute can only be applied at the crate level --> tests/tests.rs:508:7 | 508 | #[doc(test)] | ^^^^ | = note: read <https://doc.rust-lang.org/nightly/rustdoc/the-doc-attribute.html#at-the-crate-level> for more information = note: `#[deny(invalid_doc_attributes)]` on by default help: to apply to the crate, use an inner attribute | 508 | #![doc(test)] | + ```
1 parent acc6877 commit 8c4c336

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/integration.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
matrix:
2020
integration: [
2121
bitflags,
22-
error-chain,
2322
log,
2423
mdbook,
2524
packed_simd,

ci/integration.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ case ${INTEGRATION} in
104104
check_fmt_with_all_tests
105105
cd -
106106
;;
107-
error-chain | tempdir)
107+
tempdir)
108108
git clone --depth=1 https://github.com/rust-lang-deprecated/${INTEGRATION}.git
109109
cd ${INTEGRATION}
110110
show_head

0 commit comments

Comments
 (0)