We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a6ba0 commit 8574f47Copy full SHA for 8574f47
.github/workflows/_test.yml
@@ -51,7 +51,13 @@ jobs:
51
- name: Python build
52
run: |
53
${{ matrix.platform.python_exec }} -m maturin develop -E all
54
- - name: Python tests
+ - name: Python tests (non-Windows)
55
+ if: ${{ !startsWith(matrix.platform.runner, 'windows') }}
56
+ run: |
57
+ ${{ matrix.platform.python_exec }} -m pytest --capture=no python/cocoindex/tests
58
+ - name: Python tests (Windows)
59
+ if: ${{ startsWith(matrix.platform.runner, 'windows') }}
60
+ shell: cmd
61
62
${{ matrix.platform.python_exec }} -m pytest --capture=no python/cocoindex/tests
63
- name: Python type check (mypy)
0 commit comments