We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4cc5eb commit 8447761Copy full SHA for 8447761
.github/workflows/test-suppressed-exception.yml
@@ -0,0 +1,34 @@
1
+name: Test case for issue 586
2
+on: [push, pull_request]
3
+jobs:
4
+ python:
5
+ strategy:
6
+ matrix:
7
+ python-version:
8
+ - "3.7"
9
+ - "3.8"
10
+ - "3.9"
11
+ - "3.10"
12
+ - "3.11"
13
+ - "3.12"
14
+ - "3.13"
15
+ runs-on: windows-latest
16
+ continue-on-error: true
17
+ steps:
18
+ - name: Set up Python ${{ matrix.python-version }}
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version: ${{ matrix.python-version }}
22
+ - name: Double-check Python version
23
+ run: |
24
+ python --version
25
+ - name: Clone Git repository
26
+ uses: actions/checkout@v4
27
28
+ submodules: true
29
+ - name: Install Python package
30
31
+ python -m pip install .
32
+ - name: Run tests
33
34
+ python -c "import sounddevice; 1 / 0"
0 commit comments