-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
Contributors sometimes have issues running tests locally because they must pass special flags they're unaware of. For example, to run JupySQL's unit tests, you need to run the following:
pytest --durations-min=5 --ignore=src/tests/integrationHowever, many contributors attempt to run:
pytestWhich will fail since this will run all tests (including integration tests, which contributors often don't want to run)
I investigated a few options and concluded that our best bet is to ensure that this works on all projects:
pytestAnd document other alternatives (e.g., how to run integration tests)
see: ploomber/jupysql#335
Metadata
Metadata
Assignees
Labels
No labels