Skip to content

Commit

Permalink
fix: remove encrypt-records dead flag from ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
grumbach committed Jan 2, 2025
1 parent 3f96717 commit 6d57f27
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,19 +148,19 @@ jobs:
# This is most likely due to the setup and cocurrency issues of the tests.
# As the `record_store` is used in a single thread style, get the test passing executed
# and passing standalone is enough.
- name: Run network tests (with encrypt-records)
- name: Run network tests
timeout-minutes: 25
run: cargo test --release --package ant-networking --features="open-metrics, encrypt-records" -- --skip can_store_after_restart
run: cargo test --release --package ant-networking --features="open-metrics" -- --skip can_store_after_restart

- name: Run network tests (with encrypt-records)
- name: Run network tests
timeout-minutes: 5
run: cargo test --release --package ant-networking --features="open-metrics, encrypt-records" can_store_after_restart
run: cargo test --release --package ant-networking --features="open-metrics" can_store_after_restart

- name: Run network tests (without encrypt-records)
- name: Run network tests
timeout-minutes: 25
run: cargo test --release --package ant-networking --features="open-metrics" -- --skip can_store_after_restart

- name: Run network tests (without encrypt-records)
- name: Run network tests
timeout-minutes: 5
run: cargo test --release --package ant-networking --features="open-metrics" can_store_after_restart

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ jobs:

- name: Run network tests
timeout-minutes: 25
run: cargo test --release --package ant-networking --features="open-metrics, encrypt-records"
run: cargo test --release --package ant-networking --features="open-metrics"

- name: Run protocol tests
timeout-minutes: 25
Expand Down

0 comments on commit 6d57f27

Please sign in to comment.