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 27fdd7f commit 9a452dbCopy full SHA for 9a452db
winmake.ps1
@@ -78,10 +78,15 @@ function Local-Machine {
78
);
79
Build-Ginkgo
80
if ($files) {
81
- $files = " --focus-file $files "
+ $files = "--focus-file ""$files"""
82
+ } elseif ($FOCUS_FILE) {
83
+ $files = "--focus-file ""$FOCUS_FILE"" --silence-skips"
84
+ }
85
+ if ($FOCUS) {
86
+ $focus = "--focus ""$FOCUS"" --silence-skips"
87
}
88
- Run-Command "./bin/ginkgo.exe -vv --tags `"$remotetags`" --timeout=90m --trace --no-color $files pkg/machine/e2e/."
89
+ Run-Command "./bin/ginkgo.exe -vv --tags `"$remotetags`" --timeout=90m --trace --no-color $focus $files pkg/machine/e2e/."
90
91
92
# Expect starting directory to be /podman
0 commit comments