fix(ci): exclude integration tests from unit test run
This commit is contained in:
parent
0a91a7dcde
commit
6a3149ca60
1 changed files with 9 additions and 1 deletions
|
|
@ -69,9 +69,17 @@ jobs:
|
|||
working-directory: ./backend
|
||||
run: cargo build --verbose
|
||||
|
||||
- name: Temporarily exclude integration tests
|
||||
working-directory: ./backend
|
||||
run: mv tests tests.disabled
|
||||
|
||||
- name: Run unit tests
|
||||
working-directory: ./backend
|
||||
run: cargo test --lib --bins
|
||||
run: cargo test --verbose
|
||||
|
||||
- name: Restore integration tests
|
||||
working-directory: ./backend
|
||||
run: mv tests.disabled tests
|
||||
|
||||
docker-build:
|
||||
runs-on: docker
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue