sentry-python
sentry-python copied to clipboard
Split Python tests in unit, integration and e2e tests
Problem Statement
So we can better track how many unit/integration/e2e tests we have. (hint: test pyramid)
Also it should be possible to only run unit/integration/e2e tests if desired.
Mark tests as unit/integration/e2e:
or with this:
Solution Brainstorm
Mark tests as unit/integration/e2e:
https://docs.pytest.org/en/6.2.x/example/markers.html
or with this:
https://pypi.org/project/pytest-integration-mark/
Create an order of test types so we can fail faster.
Tests are ok now, so I am closing this for now.