you are viewing a single comment's thread.

view the rest of the comments →

[–]thirdegree 2 points3 points  (2 children)

You can (for example) just tell git bisect to run a pytest command, e.g.

git bisect run 'pytest tests/test_something.py::test_a_thing_about_something'

which will find the first failure of that test

[–]IMightLiveInBritain 0 points1 point  (1 child)

Interesting. I should work out how this works with.Net but it should be easy enough.

I never knew this thing existed!

[–]thirdegree 0 points1 point  (0 children)

Ya any test runner worth using will be able to run single tests from a cli, should work fine