Skip to content

Commit

Permalink
chore(ci): run folders-api and acc-packet tests in nightly builds
Browse files Browse the repository at this point in the history
  • Loading branch information
bochaco committed Mar 12, 2024
1 parent cace0fb commit a05f9f3
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,20 @@ jobs:
SN_LOG: "all"
timeout-minutes: 2

# Client FoldersApi tests against local network
- name: Client FoldersApi tests against local network
run: cargo test --release --package sn_client --test folders_api
env:
SN_LOG: "all"
timeout-minutes: 10

# CLI Acc-Packet files and folders tests against local network
- name: CLI Acc-Packet files and folders tests
run: cargo test --release -p sn_cli test_acc_packet -- --nocapture
env:
SN_LOG: "all"
timeout-minutes: 10

- name: Start a client to create a register
run: cargo run --bin safe --release -- --log-output-dest=data-dir register create -n baobao
env:
Expand Down Expand Up @@ -112,11 +126,13 @@ jobs:

- name: Run CLI tests
timeout-minutes: 25
run: cargo test --release --package sn_cli
run: cargo test --release --package sn_cli -- --skip test_acc_packet_

- name: Run client tests
timeout-minutes: 25
run: cargo test --release --package sn_client
run: |
cargo test --release --package sn_client --lib
cargo test --release --package sn_client --doc
- name: Run network tests
timeout-minutes: 25
Expand Down

0 comments on commit a05f9f3

Please sign in to comment.