Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

goss exits with 0 when flags are bad #420

Closed
jim-raney-physiq opened this issue Jan 29, 2019 · 0 comments · Fixed by #421
Closed

goss exits with 0 when flags are bad #420

jim-raney-physiq opened this issue Jan 29, 2019 · 0 comments · Fixed by #421

Comments

@jim-raney-physiq
Copy link

[bash]$ goss -g goss.yaml validate -o verbose --color --sleep 5s --retry-tiemout 2m
Incorrect Usage: flag provided but not defined: -retry-tiemout

NAME:
   goss validate - Validate system

USAGE:
   goss validate [command options] [arguments...]

OPTIONS:
   --format value, -f value          Format to output in, valid options: [documentation json json_oneline junit nagios rspecish silent tap] (default: "rspecish") [$GOSS_FMT]
   --format-options value, -o value  Extra options passed to the formatter, valid options: [perfdata verbose] [$GOSS_FMT_OPTIONS]
   --color                           Force color on [$GOSS_COLOR]
   --no-color                        Force color off [$GOSS_NOCOLOR]
   --sleep value, -s value           Time to sleep between retries, only active when -r is set (default: 1s) [$GOSS_SLEEP]
   --retry-timeout value, -r value   Retry on failure so long as elapsed + sleep time is less than this (default: 0s) [$GOSS_RETRY_TIMEOUT]
   --max-concurrent value            Max number of tests to run concurrently (default: 50) [$GOSS_MAX_CONCURRENT]
   
[bash]$ echo $?
0

Would be better if it exited non-zero for tools that actively check error codes for test results.

aelsabbahy pushed a commit that referenced this issue May 12, 2019
Previously, the flags were not handled so the application would
Looking at the documentation for https://github.com/urfave/cli , the error is propogated up through the `app.Run` call.
Now, the error is checked before fatally logging it.

closes #420
BenjaminHerbert pushed a commit to BenjaminHerbert/goss that referenced this issue May 28, 2020
Previously, the flags were not handled so the application would
Looking at the documentation for https://github.com/urfave/cli , the error is propogated up through the `app.Run` call.
Now, the error is checked before fatally logging it.

closes goss-org#420
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant