Mercurial > p > roundup > code
comparison test/requirements.txt @ 8592:363a6bb5a6ae default tip
test: add subtest support to testTokenlessCsrfProtection
Make each list driven test case a subtest of its own. Add
pytest-subtest pip module to make this work.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 21 Apr 2026 12:55:19 -0400 |
| parents | 4006ddad6b8a |
| children |
comparison
equal
deleted
inserted
replaced
| 8591:501eb8088ea3 | 8592:363a6bb5a6ae |
|---|---|
| 1 # the driving harness | 1 # the driving harness |
| 2 pytest | 2 pytest |
| 3 | |
| 4 # set environment variables for redis password etc. from ini/toml | |
| 5 # settings files. | |
| 6 pytest-env | |
| 7 | |
| 8 # change order of tests to find dependencies | |
| 9 pytest-randomly | |
| 10 | |
| 11 # allows execution of subtests when a test function tests multiple | |
| 12 # scenarios. It is built into pytest 9.0+, but can co-exist with it | |
| 13 # and is required for older pytest that run on older python versions. | |
| 14 pytest-subtests | |
| 3 | 15 |
| 4 # coverage stats | 16 # coverage stats |
| 5 coverage | 17 coverage |
| 6 # fuzz tests | 18 # fuzz tests |
| 7 hypothesis | 19 hypothesis |
