Skip to content

Commit 6b0689d

Browse files
committed
ci: removed docker compose
1 parent a3a44ad commit 6b0689d

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

.github/workflows/coverage.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,12 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- name: Install dependencies
1515
run: sudo apt update && sudo apt install -y libssh2-1-dev libssl-dev
16-
- name: Setup containers
17-
run: docker compose -f "tests/docker-compose.yml" up -d --build
1816
- name: Setup nightly toolchain
1917
uses: dtolnay/rust-toolchain@stable
2018
with:
2119
toolchain: nightly
22-
override: true
2320
- name: Run tests (nightly)
24-
run: cargo test --lib --no-default-features --features find,github-actions,with-containers --no-fail-fast
21+
run: cargo test --lib --no-default-features --features find,github-actions --no-fail-fast
2522
env:
2623
RUST_LOG: trace
2724
CARGO_INCREMENTAL: "0"

.github/workflows/linux.yml

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- name: Install dependencies
1515
run: sudo apt update && sudo apt install -y libssh2-1-dev libssl-dev
16-
- name: Setup containers
17-
run: docker compose -f "tests/docker-compose.yml" up -d --build
1816
- uses: dtolnay/rust-toolchain@stable
1917
with:
2018
toolchain: stable

CONTRIBUTING.md

+1-9
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,7 @@ In addition to the process described for the PRs, I've also decided to introduce
109109

110110
## Run test units
111111

112-
In case you want to test the aws s3 client, you need to follow these steps:
113-
114-
1. Run containers
115-
116-
```sh
117-
docker-compose -f "tests/docker-compose.yml" up -d --build
118-
```
119-
120-
2. Run tests with `cargo test --features with-containers`
112+
Run tests with `cargo test `
121113

122114
---
123115

0 commit comments

Comments
 (0)