@@ -76,25 +76,20 @@ steps:
76
76
77
77
- script :
78
78
tox -e py -- -m unit --junit-xml=junit/unit-test.xml
79
- --use-wpr
80
- --wpr-path="C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\wpr.exe"
81
- --wpr-profile=GeneralProfile.verbose
82
- --wpr-profile=CPU.verbose
83
- --wpr-output=traces/wpr-result.etl
84
79
env :
85
80
TEMP : " R:\\ "
86
81
displayName : Tox run unit tests
87
82
88
- - script :
89
- tracerpt -l traces/wpr-result.etl -export traces/providers.man
90
- displayName : Generate trace provider manifest
91
-
92
- - task : PublishBuildArtifacts@1
93
- displayName : ' Publish trace results'
94
- inputs :
95
- pathtoPublish : traces
96
- artifactName : wpr-result-$(python.version)-$(python.architecture).etl
97
- condition : succeededOrFailed()
83
+ # - script:
84
+ # tracerpt -l traces/wpr-result.etl -export traces/providers.man
85
+ # displayName: Generate trace provider manifest
86
+ #
87
+ # - task: PublishBuildArtifacts@1
88
+ # displayName: 'Publish trace results'
89
+ # inputs:
90
+ # pathtoPublish: traces
91
+ # artifactName: wpr-result-$(python.version)-$(python.architecture).etl
92
+ # condition: succeededOrFailed()
98
93
99
94
- ${{ if eq(parameters.runIntegrationTests, 'true') }} :
100
95
- powershell : |
@@ -105,9 +100,7 @@ steps:
105
100
106
101
# Shorten paths to get under MAX_PATH or else integration tests will fail
107
102
# https://bugs.python.org/issue18199
108
- subst T: $env:TEMP
109
- $env:TEMP = "T:\"
110
- $env:TMP = "T:\"
103
+ $env:TEMP = "R:\"
111
104
112
105
tox -e py -- -m integration -n 3 --duration=5 --junit-xml=junit/integration-test.xml
113
106
displayName: Tox run integration tests
0 commit comments