-
Notifications
You must be signed in to change notification settings - Fork 9
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
print does not show in console #3
Comments
Very happy you like this. I'm definitely a testing connoisseur so I prefer not to use any of the python tooling. |
I see the test result output but I don't see for example these print statements: print('hi -------------------------------------------------')
def test_thing():
print('hi ------------------------------------------------')
x = thing() I also tried setting Maybe the result of these execa call ( Line 39 in 66d1773
Line 45 in 66d1773
|
So when I do that I see the print statements now like so:
along with all the output jest-pytest is already showing. I guess it would have to be grepped out and then passed into jest-result. Also maybe we can get the captured stdout from pytest from the file where you already get the main output. |
First of all, love this. Way better than pure python alternatives.
One of the surprising things coming from jest for JS is that the calls to print do not show up in the console. Not sure what would be involved with fixing that, but just thought I'd point that out.
Thanks again!
The text was updated successfully, but these errors were encountered: