We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dc64ee commit ef79cc6Copy full SHA for ef79cc6
1 file changed
.github/workflows/build-and-test.yml
@@ -95,7 +95,13 @@ jobs:
95
cache: "pip"
96
cache-dependency-path: .github/scripts/requirements.txt
97
- run: pip install -r .github/scripts/requirements.txt
98
- - name: Run tests
+ - name: Test cargo directly (debug)
99
+ if: matrix.group == 'spv'
100
env:
101
CARGO_LOG: cargo::core::compiler::fingerprint=info
- run: python .github/scripts/ci_config.py run-group ${{ matrix.group }} --os ${{ inputs.os }} 2>&1 | head -200
102
+ run: |
103
+ echo "=== Direct cargo test (no Python) ==="
104
+ cargo test -p dash-spv --all-features 2>&1 | head -100
105
+ shell: bash
106
+ - name: Run tests
107
+ run: python .github/scripts/ci_config.py run-group ${{ matrix.group }} --os ${{ inputs.os }}
0 commit comments