Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d483abd

Browse files
committedOct 21, 2015
skip cli parse tests on windows due to no stdin
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
1 parent d44fa7b commit d483abd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎commands/cli/parse_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ func TestOptionParsing(t *testing.T) {
132132
}
133133

134134
func TestArgumentParsing(t *testing.T) {
135+
if runtime.GOOS == "windows" {
136+
t.Skip("stdin handling doesnt yet work on windows")
137+
}
135138
rootCmd := &commands.Command{
136139
Subcommands: map[string]*commands.Command{
137140
"noarg": {},

0 commit comments

Comments
 (0)
Please sign in to comment.