Skip to content

Commit cebb747

Browse files
committed
Remove redundant double quotes
1 parent 2036f44 commit cebb747

2 files changed

Lines changed: 16 additions & 15 deletions

File tree

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
steps:
2-
- script: "python -m pip install tox"
3-
displayName: "Setup Python packages"
2+
- script: python -m pip install tox
3+
displayName: Setup Python packages
44

55
- pwsh: |
66
$toxEnv = '$(python.version)'
@@ -9,22 +9,23 @@ steps:
99
}
1010
echo 'tox environment: $toxEnv'
1111
python -m tox -e $toxEnv -- --junitxml=$(Build.ArtifactStagingDirectory)/tests.xml --debugpy-log-dir=$(Build.ArtifactStagingDirectory)/logs tests
12-
displayName: "Run tests using tox"
12+
displayName: Run tests using tox
1313
env:
1414
DEBUGPY_PROCESS_SPAWN_TIMEOUT: 60
1515
DEBUGPY_LAUNCH_TIMEOUT: 60
1616
1717
- task: PublishBuildArtifacts@1
18-
condition: failed()
18+
displayName: Publish test logs
1919
inputs:
20-
artifactName: "Test logs"
21-
pathToPublish: "$(Build.ArtifactStagingDirectory)/logs"
22-
displayName: "Publish test logs"
20+
artifactName: Test logs
21+
pathToPublish: $(Build.ArtifactStagingDirectory)/logs
22+
condition: failed()
2323

2424
- task: PublishTestResults@2
25-
condition: always()
25+
displayName: Publish test results
2626
inputs:
27-
testRunTitle: "$(Agent.JobName)"
28-
testResultsFiles: "tests.xml"
29-
searchFolder: "$(Build.ArtifactStagingDirectory)"
30-
displayName: "Publish test results"
27+
testRunTitle: $(Agent.JobName)
28+
testResultsFiles: tests.xml
29+
searchFolder: $(Build.ArtifactStagingDirectory)
30+
condition: always()
31+
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
steps:
22
- task: UsePythonVersion@0
33
inputs:
4-
versionSpec: "$(python.version)"
5-
architecture: "$(architecture)"
6-
displayName: "Use Python $(python.version) $(architecture)"
4+
versionSpec: $(python.version)
5+
architecture: $(architecture)
6+
displayName: Use Python $(python.version) $(architecture)

0 commit comments

Comments
 (0)