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:
binarybaron 2024-09-19 18:10:33 +02:00 committed by GitHub
parent 167e031172
commit 1dd35b3ae5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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