You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
Every test related things will be prefixed with test_ for auto test discovery.
Every test case will be a module-level function starting with test_.
Every file containing the test cases will be named with the prefix test_.
Every module containing the test case files will be named with the prefix test_.
For the module to be a module (and to be discovered), you need to have an __init__.py inside the module folder, regardless if it's an empty file (and it usually will be empty, except that you want to inject something).
The text was updated successfully, but these errors were encountered:
We use
pytest
for this project. Here is its documentation.Rules of thumb
Every test related things will be prefixed with
test_
for auto test discovery.test_
.test_
.test_
.For the module to be a module (and to be discovered), you need to have an
__init__.py
inside the module folder, regardless if it's an empty file (and it usually will be empty, except that you want to inject something).The text was updated successfully, but these errors were encountered: