We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
--no-terminal
I normally am careful to pass stack general options before the command, but I copied a travis.yml file linked from the wiki which had this line:
travis.yml
stack test --only-snapshot --no-terminal
But, then when I tried to add an extra option to the end, it failed:
stack test --only-snapshot --no-terminal --ghc-options="-j3"
Yet moving the --no-terminal to where it should be (before test) fixes the problem:
test
stack --no-terminal test --only-snapshot --ghc-options="-j3"
This behavior holds on the 0.1.2.0 release, and a recent dev version, 3135624fc43585329bc4ceed2a9c11b158f4099f.
That the first two commands above would both fail or succeed (preferably fail).
First command succeeds and second fails.
The text was updated successfully, but these errors were encountered:
Looks like #519.
Sorry, something went wrong.
Wow, and 679 too! Sorry for the dup.
No branches or pull requests
I normally am careful to pass stack general options before the command, but I copied a
travis.yml
file linked from the wiki which had this line:stack test --only-snapshot --no-terminal
But, then when I tried to add an extra option to the end, it failed:
stack test --only-snapshot --no-terminal --ghc-options="-j3"
Yet moving the
--no-terminal
to where it should be (beforetest
) fixes the problem:stack --no-terminal test --only-snapshot --ghc-options="-j3"
This behavior holds on the 0.1.2.0 release, and a recent dev version, 3135624fc43585329bc4ceed2a9c11b158f4099f.
Expected behavior:
That the first two commands above would both fail or succeed (preferably fail).
Actual behavior:
First command succeeds and second fails.
The text was updated successfully, but these errors were encountered: