mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-05-20 07:30:40 -04:00
fix(ci): Disable Tauri feature for tests (#91)
We omit the --all-features for the tests run in the CI. There are no features in any of our crates besides tauri so this doesn't disable any features that might be required.
This commit is contained in:
parent
167e031172
commit
1dd35b3ae5
1 changed files with 3 additions and 3 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -210,7 +210,7 @@ jobs:
|
||||||
run: cargo test --package monero-harness --all-features
|
run: cargo test --package monero-harness --all-features
|
||||||
|
|
||||||
- name: Run library tests for swap
|
- name: Run library tests for swap
|
||||||
run: cargo test --package swap --lib --all-features
|
run: cargo test --package swap --lib
|
||||||
|
|
||||||
docker_tests:
|
docker_tests:
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -256,7 +256,7 @@ jobs:
|
||||||
librsvg2-dev
|
librsvg2-dev
|
||||||
|
|
||||||
- name: Run test ${{ matrix.test_name }}
|
- name: Run test ${{ matrix.test_name }}
|
||||||
run: cargo test --package swap --all-features --test ${{ matrix.test_name }} -- --nocapture
|
run: cargo test --package swap --test ${{ matrix.test_name }} -- --nocapture
|
||||||
|
|
||||||
rpc_tests:
|
rpc_tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -280,7 +280,7 @@ jobs:
|
||||||
librsvg2-dev
|
librsvg2-dev
|
||||||
|
|
||||||
- name: Run RPC server tests
|
- name: Run RPC server tests
|
||||||
run: cargo test --package swap --all-features --test rpc -- --nocapture
|
run: cargo test --package swap --test rpc -- --nocapture
|
||||||
|
|
||||||
check_stable:
|
check_stable:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue