We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e7dd1 commit 579dab1Copy full SHA for 579dab1
1 file changed
azure-pipelines.yml
@@ -26,29 +26,15 @@ jobs:
26
versionSpec: '$(python.version)'
27
architecture: 'x64'
28
29
- - script: python -m pip install --upgrade pip && pip install tox
+ - script: python -m pip install --upgrade pip && pip install wcwidth
30
displayName: 'Install dependencies'
31
32
- script: |
33
- tox
+ pytest
34
displayName: 'pytest'
35
36
- task: PublishTestResults@2
37
inputs:
38
testResultsFiles: '**/test-results.xml'
39
testRunTitle: 'Python $(python.version)'
40
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