Skip to content

Commit 91a93e9

Browse files
committed
Debugging CI
1 parent a222f50 commit 91a93e9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ci/run_tests_pipeline.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ stages:
1111
linux:
1212
imageName: "ubuntu-latest"
1313
poolName: "Azure Pipelines"
14-
pandasVersion: ""
1514
linux-old-pandas:
1615
imageName: "ubuntu-latest"
1716
poolName: "Azure Pipelines"
@@ -20,15 +19,12 @@ stages:
2019
imageName: "ubuntu-latest"
2120
poolName: "Azure Pipelines"
2221
vsQuestDbMaster: true
23-
pandasVersion: ""
2422
mac:
2523
imageName: "macos-latest"
2624
poolName: "Azure Pipelines"
27-
pandasVersion: ""
2825
windows-msvc-2019:
2926
imageName: "windows-2019"
3027
poolName: "Azure Pipelines"
31-
pandasVersion: ""
3228
pool:
3329
name: $(poolName)
3430
vmImage: $(imageName)
@@ -43,8 +39,12 @@ stages:
4339
python3 --version
4440
python3 -m pip install cython
4541
displayName: "Install cython"
42+
- script: python3 ci/pip_install_deps.py
43+
displayName: "Install pandas latest"
44+
condition: eq(variables.pandasVersion, '')
4645
- script: python3 ci/pip_install_deps.py --pandasVersion==$(pandasVersion)
47-
displayName: "Install pandas"
46+
displayName: "Install pandas older"
47+
condition: neq(variables.pandasVersion, '')
4848
- script: python3 proj.py build
4949
displayName: "Build"
5050
- script: |

0 commit comments

Comments
 (0)