Closed bjschoenfeld closed 5 years ago
Brandon I have been using python3 -m unittest test_dir.specific_test_module.SpecificTestClass.specific_test_method
and that has been working for me.
I haven't tried your way yet.
If that works, then we should be fine. We just need to train everyone to use that.
Thanks, I'll close this issue for now. Feel free to reopen it whenever there is an issue!
Developing is much easier if you can run just a single test at a time, instead of the whole test suite. This can be done typically by calling:
python3 ./path/to/test_case.py TestCaseClass.test_method_name
.For some reason, this does not work in this repo.