Skip to content

Commit

Permalink
Force Nuget.Config overwrite so xcopy doesn't prompt for overwrite.
Browse files Browse the repository at this point in the history
  • Loading branch information
LoopedBard3 committed Jan 25, 2023
1 parent cd877e2 commit 863ec34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion eng/performance/scenarios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: CorrelationStaging
value: $(Build.SourcesDirectory)\CorrelationStaging\
- name: AdditionalHelixPreCommands
value: 'call %HELIX_CORRELATION_PAYLOAD%\machine-setup$(ScriptExtension);xcopy %HELIX_CORRELATION_PAYLOAD%\NuGet.config %HELIX_WORKITEM_ROOT%'
value: 'call %HELIX_CORRELATION_PAYLOAD%\machine-setup$(ScriptExtension);xcopy %HELIX_CORRELATION_PAYLOAD%\NuGet.config %HELIX_WORKITEM_ROOT% /Y'
- name: PreservePythonPath
value: 'set ORIGPYPATH=%PYTHONPATH%'
- name: HelixPostCommand
Expand Down
1 change: 1 addition & 0 deletions src/scenarios/mauiblazordesktop/test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import subprocess
from shared.runner import TestTraits, Runner
from performance.logger import setup_loggers

EXENAME = 'MauiBlazorDesktopTesting'

Expand Down
2 changes: 2 additions & 0 deletions src/scenarios/mauidesktop/test.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import os
import subprocess
from shared.runner import TestTraits, Runner
from performance.logger import setup_loggers

EXENAME = 'MauiDesktopTesting'

def main():
setup_loggers(True)
traits = TestTraits(exename=EXENAME,
guiapp='true',
startupmetric='WinUI',
Expand Down

0 comments on commit 863ec34

Please sign in to comment.