Functions
Skip
If you want to skip a test when its running, use karva.skip().
| test.py | |
|---|---|
1 2 3 4 | |
You can optionally provide a reason for skipping the test by passing it as an argument to karva.skip().
| test.py | |
|---|---|
1 2 3 4 5 6 7 | |
You can still use pytest.skip() to skip tests.
Fail
If you want to fail a test when its running, use karva.fail().
| test.py | |
|---|---|
1 2 3 4 | |
You can optionally provide a reason for failing the test by passing it as an argument to karva.fail().
| test.py | |
|---|---|
1 2 3 4 5 6 7 | |
Then running uv run karva test will result in two test fails.
You can still use pytest.fail() to fail tests.