Select pytest tests with regular expressions
Project description
pytest-regex
Use Python Standard Library Regular Expressions to Specify Tests to Run
After installing locally with i.e., python -m pip install . you can compare it with more conventional test selection techniques as follows.
Consider working with SciPy development. Let’s start off by selecting all tests with test_3d anywhere in their node id, using the conventional/ built-in -k flag:
python dev.py test – -v -k “test_3d”
This runs a bunch of tests with string matches as you might expect:
scipy/io/tests/test_idl.py::TestArrayDimensions::test_3d PASSED scipy/io/tests/test_idl.py::TestPointerArray::test_3d PASSED scipy/optimize/_trustregion_constr/tests/test_qp_subproblem.py::TestBoxBoundariesIntersections::test_3d_box_constraints PASSED scipy/optimize/_trustregion_constr/tests/test_qp_subproblem.py::TestBoxBoundariesIntersections::test_3d_box_constraints_entire_line PASSED scipy/optimize/_trustregion_constr/tests/test_qp_subproblem.py::TestModifiedDogleg::test_3d_example PASSED scipy/stats/tests/test_stats.py::TestGeometricStandardDeviation::test_3d_array PASSED scipy/stats/tests/test_stats.py::TestGeometricStandardDeviation::test_3d_array_axis_type_tuple PASSED scipy/stats/tests/test_stats.py::TestGeometricStandardDeviation::test_3d_array_axis_0 PASSED scipy/stats/tests/test_stats.py::TestGeometricStandardDeviation::test_3d_array_axis_1 PASSED scipy/stats/tests/test_stats.py::TestGeometricStandardDeviation::test_3d_array_axis_2 PASSED scipy/stats/tests/test_stats.py::TestFOneWay::test_3d_inputs PASSED
What if you want to run only tests with an exact match to test_3d or test_3d_example?
- Try pytest-regex with:
python dev.py test – -v –regex “(.*test_3d$|.*test_3d_example$)”
scipy/io/tests/test_idl.py::TestArrayDimensions::test_3d PASSED scipy/io/tests/test_idl.py::TestPointerArray::test_3d PASSED scipy/optimize/_trustregion_constr/tests/test_qp_subproblem.py::TestModifiedDogleg::test_3d_example PASSED
This does what we want, and is probably more concise than the -k alternative. In fact, I’m not entirely sure how one would do this with -k in its current form.
How it Works
pytest-regex simply passes the Python regular expression through to the list of node ids, where a node id is structured as follows:
path/to/test_module.py::TestClass::test_name[parameter_value]
If the regex matches the node id, the test is retained and executed.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest-regex-0.2.0.tar.gz
.
File metadata
- Download URL: pytest-regex-0.2.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4076c49abece2503815c8b2e282a8fd22d330f06f9bf91d620b3ef02de7a353 |
|
MD5 | 5e4b47089e96f277edbef1e81aa6db2c |
|
BLAKE2b-256 | 7367e3f3700e8f95fc9e80ab83d589346c117de4e6d01e6b922f7300282e7fc9 |
Provenance
File details
Details for the file pytest_regex-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: pytest_regex-0.2.0-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c97e9c49e8c7e7482bd1fa701e3a5cccd18eb78d263752e32dba4937d8cee6d9 |
|
MD5 | b25ee012dcdc4e86a05173f9980affec |
|
BLAKE2b-256 | 2a72d4143c66c1806599358c119c0af530bab92ef0c48129f17522dfd5a7ff6a |