8000 Split pytest and C++ unit tests · robertodr/xtensor-python@f716605 · GitHub
[go: up one dir, main page]

Skip to content

Commit f716605

Browse files
committed
Split pytest and C++ unit tests
1 parent 86a4950 commit f716605

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

azure-pipelines.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,17 @@ jobs:
9393
displayName: "Install xtensor-python"
9494
workingDirectory: $(Build.BinariesDirectory)/build
9595
96-
# Test
96+
# Test (Google test)
9797
- script: |
9898
setlocal EnableDelayedExpansion
99-
py.test -s
100-
cd test
10199
.\test_xtensor_python
102-
displayName: "Test xtensor-python"
100+
displayName: "Test xtensor-python (Google test)"
103101
workingDirectory: $(Build.BinariesDirectory)/build/test
102+
103+
# 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

Comments
 (0)
0