File size: 388 Bytes
5fa1a76 |
1 2 3 4 5 6 7 8 9 10 11 12 |
Here is what they look like: pytest test_this2.py --collect-only -q and it will list: test_this2.py::test_floor[integer-1-1.0] test_this2.py::test_floor[negative--1.5--2.0] test_this2.py::test_floor[large fraction-1.6-1] So now you can run just the specific test: pytest test_this2.py::test_floor[negative--1.5--2.0] test_this2.py::test_floor[integer-1-1.0] as in the previous example. |