-
Notifications
You must be signed in to change notification settings - Fork 20
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
Allow custom parameters to pytest.main #21
Comments
Despite having --- a/Makefile
+++ b/Makefile
@@ -19,8 +19,8 @@ shoelaces.8:
docs: shoelaces.8
test: fmt
- $(GO) test -v $(pkgs) && \
- ./test/integ-test/integ_test.py
+ $(GO) test -vv $(pkgs) && \
+ ./test/integ-test/integ_test.py -vv
.PHONY: all clean docs
so
Repeating the
Where to add the |
The parameters to if __name__ == "__main__":
pytest.main(args=['-v'], plugins=None) Ideally, would like to support custom parameters to have the flexibility of choosing either |
-vv
I think we will benefit if we add support for passing custom parameters to We should leave the issue open until the feature reaches |
On Tue, Jan 17, 2023 at 10:53:01AM -0800, Raul Benencia wrote:
Let me know if you're interested in implementing this feature.
Frankly: No
|
Good stuff, thanks for your contribution. Now that the integration tests are working, a new test case covering this new endpoint will be ideal.
Originally posted by @raul-te in #18 (comment)
The text was updated successfully, but these errors were encountered: