This repository was archived by the owner on Feb 14, 2023. It is now read-only.
File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 94
94
95
95
- task : PublishTestResults@2
96
96
inputs :
97
- testResultsFiles : " $(TEST_DIR)/$(JUNITXML)"
97
+ testResultsFiles : ' $(TEST_DIR)/$(JUNITXML)'
98
98
testRunTitle : ${{ format('{0}-$(Agent.JobName)', parameters.name) }}
99
- displayName : " Publish Test Results"
99
+ displayName : ' Publish Test Results'
100
100
condition : eq(variables['SKIP_BUILD'], 'false')
101
101
102
102
- bash : |
@@ -129,8 +129,8 @@ jobs:
129
129
set -e
130
130
# The --force option forces a replacement if the remote file already
131
131
# 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
134
134
echo "PyPI-style index: https://pypi.anaconda.org/$ANACONDA_ORG/simple"
135
135
displayName: Upload to anaconda.org (only if secret token is retrieved)
136
136
condition: variables['TOKEN']
Original file line number Diff line number Diff line change 18
18
PYTHON_ARCH : " x64"
19
19
TEST_DEPENDS : " pytest"
20
20
JUNITXML : " test-data.xml"
21
- TEST_DIR : " $(Agent.WorkFolder)/tmp_for_test"
21
+ TEST_DIR : ' $(Agent.WorkFolder)/tmp_for_test'
22
22
strategy :
23
23
matrix :
24
24
${{ insert }} : ${{ parameters.matrix }}
@@ -103,9 +103,9 @@ jobs:
103
103
104
104
- task : PublishTestResults@2
105
105
inputs :
106
- testResultsFiles : " $(TEST_DIR)/$(JUNITXML)"
106
+ testResultsFiles : ' $(TEST_DIR)/$(JUNITXML)'
107
107
testRunTitle : ${{ format('{0}-$(Agent.JobName)', parameters.name) }}
108
- displayName : " Publish Test Results"
108
+ displayName : ' Publish Test Results'
109
109
condition : eq(variables['SKIP_BUILD'], 'false')
110
110
111
111
- bash : |
You can’t perform that action at this time.
0 commit comments