@@ -22,14 +22,13 @@ jobs:
22
22
CONDA_PY : " 310"
23
23
24
24
steps :
25
- - displayName : ' Set conda path '
26
- script : echo '##vso[task.prependpath]$(HOME)/miniconda3/bin '
25
+ - script : echo '##vso[task.prependpath]$(HOME)/miniconda3/bin '
26
+ displayName : ' Set conda path '
27
27
28
- - displayName : ' Workaround for mamba-org/mamba#488 '
29
- script : rm /usr/local/miniconda/pkgs/cache/*.json
28
+ - script : rm /usr/local/miniconda/pkgs/cache/*.json
29
+ displayName : ' Workaround for mamba-org/mamba#488 '
30
30
31
- - displayName : ' Setup environment and build pandas'
32
- script : |
31
+ - script : |
33
32
echo $PATH
34
33
sccache_version=v0.2.15
35
34
sccache_archive_name=sccache-$sccache_version-x86_64-apple-darwin
@@ -64,21 +63,22 @@ jobs:
64
63
echo "Install pandas"
65
64
time python -m pip install --no-build-isolation -e .
66
65
sccache -s
66
+ displayName: 'Setup environment and build pandas'
67
67
68
- - displayName : ' Test'
69
- script : |
68
+ - script : |
70
69
conda run -n pandas-dev --no-capture-output ci/run_tests.sh
70
+ displayName: 'Test'
71
71
72
- - displayName : ' Build versions'
73
- script : |
72
+ - script : |
74
73
pushd /tmp
75
74
conda run -n pandas-dev python -c "import pandas; pandas.show_versions()"
76
75
popd
76
+ displayName: 'Build versions'
77
77
78
- - displayName : ' Publish test results'
79
- task : PublishTestResults@2
78
+ - task : PublishTestResults@2
80
79
condition : succeededOrFailed()
81
80
inputs :
82
81
failTaskOnFailedTests : true
83
82
testResultsFiles : ' test-data.xml'
84
83
testRunTitle : ${{ format('{0}-$(CONDA_PY)', parameters.name) }}
84
+ displayName : ' Publish test results'
0 commit comments