Skip to content

Commit 1c91b63

Browse files
committed
Can't move displayName?
1 parent 4c6bc70 commit 1c91b63

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

ci/azure/posix.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@ jobs:
2222
CONDA_PY: "310"
2323

2424
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'
2727

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'
3030

31-
- displayName: 'Setup environment and build pandas'
32-
script: |
31+
- script: |
3332
echo $PATH
3433
sccache_version=v0.2.15
3534
sccache_archive_name=sccache-$sccache_version-x86_64-apple-darwin
@@ -64,21 +63,22 @@ jobs:
6463
echo "Install pandas"
6564
time python -m pip install --no-build-isolation -e .
6665
sccache -s
66+
displayName: 'Setup environment and build pandas'
6767
68-
- displayName: 'Test'
69-
script: |
68+
- script: |
7069
conda run -n pandas-dev --no-capture-output ci/run_tests.sh
70+
displayName: 'Test'
7171
72-
- displayName: 'Build versions'
73-
script: |
72+
- script: |
7473
pushd /tmp
7574
conda run -n pandas-dev python -c "import pandas; pandas.show_versions()"
7675
popd
76+
displayName: 'Build versions'
7777
78-
- displayName: 'Publish test results'
79-
task: PublishTestResults@2
78+
- task: PublishTestResults@2
8079
condition: succeededOrFailed()
8180
inputs:
8281
failTaskOnFailedTests: true
8382
testResultsFiles: 'test-data.xml'
8483
testRunTitle: ${{ format('{0}-$(CONDA_PY)', parameters.name) }}
84+
displayName: 'Publish test results'

0 commit comments

Comments
 (0)