Skip to content

Commit

Permalink
running async worker tests and blocking worker tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pxp9 committed Apr 8, 2024
1 parent 847a281 commit 8230d9a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: cargo test "blocking::queue::postgres" --verbose --features blocking --color always -- --nocapture

- name: Run blocking dirty tests
run: cargo test "blocking::queue::postgres" --verbose --features blocking -- --ignored
run: cargo test "blocking::worker" --verbose --features blocking -- --ignored

test_fang_derive_error:
name: Test fang_derive_error
Expand All @@ -101,6 +101,7 @@ jobs:

- name: Run fang derive error tests
run: cargo test "fang_derive_error" --verbose --color always -- --nocapture

test_postgres:
name: Test postgres
runs-on: ubuntu-latest
Expand Down Expand Up @@ -149,8 +150,8 @@ jobs:
- name: Run tests
run: cargo test "asynk::async_queue::postgres" --verbose --features asynk-postgres --color always -- --nocapture

- name: Run dirty tests
run: cargo test "asynk::async_queue::postgres" --verbose --features asynk-postgres -- --ignored
- name: Run worker tests
run: cargo test "asynk::async_worker::async_worker_tests" --verbose --features asynk-postgres --color always -- --nocapture

test_sqlite:
name: Test sqlite
Expand Down Expand Up @@ -183,9 +184,6 @@ jobs:
- name: Run tests
run: cargo test "asynk::async_queue::sqlite" --verbose --features asynk-sqlite -- --nocapture

- name: Run dirty tests
run: cargo test "asynk::async_queue::sqlite" --verbose --features asynk-sqlite -- --ignored

release:
name: Release x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8230d9a

Please sign in to comment.