Remove integration test (#1490)

* Remove integration test

* Remove from top list
This commit is contained in:
Pierre Krieger
2020-03-11 14:05:02 +01:00
committed by GitHub
parent 10089c5f46
commit 2084fadd86

View File

@ -7,7 +7,6 @@ workflows:
- test
- test-wasm
- check-rustdoc-links
- integration-test
jobs:
test:
@ -91,23 +90,3 @@ jobs:
- ./target
- /usr/local/cargo
- /root/.cache/sccache
integration-test:
docker:
- image: rust
- image: ipfs/go-ipfs
steps:
- checkout
- restore_cache:
key: integration-test-cache-{{ epoch }}
- run:
name: Print Rust version
command: |
rustc --version
- run:
command: cargo run --example ipfs-kad
- save_cache:
key: integration-test-cache-{{ epoch }}
paths:
- "~/.cargo"
- "./target"