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 93af1c8 commit 7b3d070Copy full SHA for 7b3d070
.github/workflows/release.yml
@@ -2,9 +2,6 @@ name: Build and upload to PyPI
2
3
on:
4
push:
5
- branches:
6
- - master
7
- - numpy2
8
release:
9
types:
10
- published
@@ -117,6 +114,16 @@ jobs:
117
114
cp -r {project}/data tmp_test_dir/data
118
115
cd tmp_test_dir
119
116
pytest
+ CIBW_TEST_COMMAND_WINDOWS: |
+ echo "Starting tests on Windows"
+ mkdir tmp_test_dir
120
+ echo "Copying test directory"
121
+ xcopy /E /I /Y stochastic_arrow\test tmp_test_dir\test
122
+ echo "Copying data directory"
123
+ xcopy /E /I /Y stochastic_arrow\data tmp_test_dir\data
124
+ cd tmp_test_dir
125
+ echo "Running pytest on Windows"
126
+ pytest -v
127
CIBW_ENVIRONMENT: USE_CYTHON=1
128
uses: pypa/cibuildwheel@v2.22.0
129
0 commit comments