Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit 25d80c1

Browse files
committed
REV Revert change
1 parent 8c4cceb commit 25d80c1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

azure/posix.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ jobs:
9494
9595
- task: PublishTestResults@2
9696
inputs:
97-
testResultsFiles: "$(TEST_DIR)/$(JUNITXML)"
97+
testResultsFiles: '$(TEST_DIR)/$(JUNITXML)'
9898
testRunTitle: ${{ format('{0}-$(Agent.JobName)', parameters.name) }}
99-
displayName: "Publish Test Results"
99+
displayName: 'Publish Test Results'
100100
condition: eq(variables['SKIP_BUILD'], 'false')
101101

102102
- bash: |
@@ -129,8 +129,8 @@ jobs:
129129
set -e
130130
# The --force option forces a replacement if the remote file already
131131
# exists.
132-
ls scikit-learn/dist/scikit_learn-*.whl
133-
anaconda -t $TOKEN upload --force -u $ANACONDA_ORG scikit-learn/dist/scikit_learn-*.whl
132+
ls wheelhouse/*.whl
133+
anaconda -t $TOKEN upload --force -u $ANACONDA_ORG wheelhouse/*.whl
134134
echo "PyPI-style index: https://pypi.anaconda.org/$ANACONDA_ORG/simple"
135135
displayName: Upload to anaconda.org (only if secret token is retrieved)
136136
condition: variables['TOKEN']

azure/windows.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
PYTHON_ARCH: "x64"
1919
TEST_DEPENDS: "pytest"
2020
JUNITXML: "test-data.xml"
21-
TEST_DIR: "$(Agent.WorkFolder)/tmp_for_test"
21+
TEST_DIR: '$(Agent.WorkFolder)/tmp_for_test'
2222
strategy:
2323
matrix:
2424
${{ insert }}: ${{ parameters.matrix }}
@@ -103,9 +103,9 @@ jobs:
103103
104104
- task: PublishTestResults@2
105105
inputs:
106-
testResultsFiles: "$(TEST_DIR)/$(JUNITXML)"
106+
testResultsFiles: '$(TEST_DIR)/$(JUNITXML)'
107107
testRunTitle: ${{ format('{0}-$(Agent.JobName)', parameters.name) }}
108-
displayName: "Publish Test Results"
108+
displayName: 'Publish Test Results'
109109
condition: eq(variables['SKIP_BUILD'], 'false')
110110

111111
- bash: |

0 commit comments

Comments
 (0)