Skip to content

Commit 863ec34

Browse files
committed
Force Nuget.Config overwrite so xcopy doesn't prompt for overwrite.
1 parent cd877e2 commit 863ec34

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

eng/performance/scenarios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: CorrelationStaging
2828
value: $(Build.SourcesDirectory)\CorrelationStaging\
2929
- name: AdditionalHelixPreCommands
30-
value: 'call %HELIX_CORRELATION_PAYLOAD%\machine-setup$(ScriptExtension);xcopy %HELIX_CORRELATION_PAYLOAD%\NuGet.config %HELIX_WORKITEM_ROOT%'
30+
value: 'call %HELIX_CORRELATION_PAYLOAD%\machine-setup$(ScriptExtension);xcopy %HELIX_CORRELATION_PAYLOAD%\NuGet.config %HELIX_WORKITEM_ROOT% /Y'
3131
- name: PreservePythonPath
3232
value: 'set ORIGPYPATH=%PYTHONPATH%'
3333
- name: HelixPostCommand

src/scenarios/mauiblazordesktop/test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import os
22
import subprocess
33
from shared.runner import TestTraits, Runner
4+
from performance.logger import setup_loggers
45

56
EXENAME = 'MauiBlazorDesktopTesting'
67

src/scenarios/mauidesktop/test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import os
22
import subprocess
33
from shared.runner import TestTraits, Runner
4+
from performance.logger import setup_loggers
45

56
EXENAME = 'MauiDesktopTesting'
67

78
def main():
9+
setup_loggers(True)
810
traits = TestTraits(exename=EXENAME,
911
guiapp='true',
1012
startupmetric='WinUI',

0 commit comments

Comments
 (0)