We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5034217 commit 415b62fCopy full SHA for 415b62f
1 file changed
.github/workflows/build-and-test.yml
@@ -29,3 +29,22 @@ jobs:
29
path: |
30
build/mingw-release/install
31
python.3.13.0
32
+ test:
33
+ name: "Run tests on Windows"
34
+ runs-on: windows-latest
35
+ needs: build
36
+
37
+ steps:
38
+ - name: Download build artifacts
39
+ uses: actions/download-artifact@v4
40
+ - name: Execute tests
41
+ run: |
42
+ dir
43
+ $Env:PATH = "$PWD/python.3.13.0/tools;$Env:PATH"
44
+ cd build/mingw-release/install
45
+ bin/tests.exe
46
+ python --version
47
+ python -m venv venv
48
+ venv/Scripts/activate
49
+ pip install numpy pytest
50
+ pytest --junitxml pytest_result.xml
0 commit comments