-
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
py3 support? #30
Comments
Same problem. https://gitee.com/wind13/jest-pytest-demo |
You can get more information by defining the environment variable JEST_PYTEST_DEBUG_IPC=1. I got it to work with Python 3.8.5 by commenting out the |
Commenting out the |
With Python2 deprecated, this project is effectively useless. It's a shame. This is a really good idea but there's just no active maintenance. |
Any plans for Python 3 support? Can't seem to get this tool to run in Python 3.8, never recognizes tests that are recognized when I run successfully in a 2.7 venv
I've got some simple assert tests I'm trying to run that aren't recognized as tests when I run
yarn jest
` FAIL tests/assertEqual_test.py
● Test suite failed to run
The test to which is just a simple
def func(x):
return x + 1
def test_ints_equal():
assert func(4) == 5,"false!"
Runs without any complaints when I pass the script through to pytest though. Kinda at my wits end.
The text was updated successfully, but these errors were encountered: