We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a646793 commit 8902946Copy full SHA for 8902946
scripts/test/run_playmode_tests.ps1
@@ -36,7 +36,7 @@ $timer = [System.Diagnostics.Stopwatch]::StartNew()
36
Write-Host "Starting test run"
37
Write-Host "Writing test output to $logPath...`n"
38
39
-$args = @(
+$unityArgs = @(
40
"-runTests",
41
"-testPlatform playmode"
42
"-batchmode",
@@ -46,8 +46,8 @@ $args = @(
46
"-editorTestsFilter $editorTestsFilter"
47
)
48
Write-Host "Running command:"
49
-Write-Host $unityExePath ($args -Join " ")
50
-$handle = Start-Process -FilePath $unityExePath -PassThru -ArgumentList $args
+Write-Host $unityExePath ($unityArgs -Join " ")
+$handle = Start-Process -FilePath $unityExePath -PassThru -ArgumentList $unityArgs
51
52
Start-Process powershell -ArgumentList @(
53
"-command",
0 commit comments