8000
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 86a4950 commit f716605Copy full SHA for f716605
azure-pipelines.yml
@@ -93,11 +93,17 @@ jobs:
93
displayName: "Install xtensor-python"
94
workingDirectory: $(Build.BinariesDirectory)/build
95
96
- # Test
+ # Test (Google test)
97
- script: |
98
setlocal EnableDelayedExpansion
99
- py.test -s
100
- cd test
101
.\test_xtensor_python
102
- displayName: "Test xtensor-python"
+ displayName: "Test xtensor-python (Google test)"
103
workingDirectory: $(Build.BinariesDirectory)/build/test
+
+ # Test (pytest)
104
+ - script: |
105
+ setlocal EnableDelayedExpansion
106
+ set PYTHONPATH=%PYTHONPATH%
107
+ py.test -s
108
+ displayName: "Test xtensor-python (pytest)"
109
+ workingDirectory: $(Build.BinariesDirectory)
0 commit comments