Skip to content

Commit 579dab1

Browse files
author
Todd Leonhardt
committed
Tweak test command for Azure Pipelines
1 parent e9e7dd1 commit 579dab1

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,29 +26,15 @@ jobs:
2626
versionSpec: '$(python.version)'
2727
architecture: 'x64'
2828

29-
- script: python -m pip install --upgrade pip && pip install tox
29+
- script: python -m pip install --upgrade pip && pip install wcwidth
3030
displayName: 'Install dependencies'
3131

3232
- script: |
33-
tox
33+
pytest
3434
displayName: 'pytest'
3535
3636
- task: PublishTestResults@2
3737
inputs:
3838
testResultsFiles: '**/test-results.xml'
3939
testRunTitle: 'Python $(python.version)'
4040
condition: succeededOrFailed()
41-
42-
- job: 'Publish'
43-
dependsOn: 'Test'
44-
pool:
45-
vmImage: 'Ubuntu 16.04'
46-
47-
steps:
48-
- task: UsePythonVersion@0
49-
inputs:
50-
versionSpec: '3.x'
51-
architecture: 'x64'
52-
53-
- script: python setup.py sdist
54-
displayName: 'Build sdist'

0 commit comments

Comments
 (0)