graphql-core
graphql-core copied to clipboard
How do you run tests with an IDE?
seems like pycharm / vscode can't recognise them since they are not prefixed with test_
PyCharm works out of the box for me:
Make sure to have your venv setup in the project settings. Apart from that, you can always create your own pytest run config in pycharm or vscode. Is there any particular step your IDE seems to fail at?
Ok I forgot to install extras
poetry install --with=test
This caught me off-guard a few times in this project as well 😆
Reopening this as a reminder to add a "development" section to the README (even though probably nobody reads READMEs)