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)]
    |  +
```
This commit is contained in:
Yacin Tmimi 2024-04-19 23:46:37 -04:00
parent acc687735a
commit 8c4c336e37
2 changed files with 1 additions and 2 deletions

View file

@ -19,7 +19,6 @@ jobs:
matrix: matrix:
integration: [ integration: [
bitflags, bitflags,
error-chain,
log, log,
mdbook, mdbook,
packed_simd, packed_simd,

View file

@ -104,7 +104,7 @@ case ${INTEGRATION} in
check_fmt_with_all_tests check_fmt_with_all_tests
cd - cd -
;; ;;
error-chain | tempdir) tempdir)
git clone --depth=1 https://github.com/rust-lang-deprecated/${INTEGRATION}.git git clone --depth=1 https://github.com/rust-lang-deprecated/${INTEGRATION}.git
cd ${INTEGRATION} cd ${INTEGRATION}
show_head show_head