Skip to content

Commit ef79cc6

Browse files
committed
ci: test cargo directly without Python to isolate issue
1 parent 6dc64ee commit ef79cc6

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,13 @@ jobs:
9595
cache: "pip"
9696
cache-dependency-path: .github/scripts/requirements.txt
9797
- run: pip install -r .github/scripts/requirements.txt
98-
- name: Run tests
98+
- name: Test cargo directly (debug)
99+
if: matrix.group == 'spv'
99100
env:
100101
CARGO_LOG: cargo::core::compiler::fingerprint=info
101-
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

Comments
 (0)