How to make unit test in pyCharm
You need to double check the settings for the tests run configuration:
By default PyCharm will inspect files that start with test
and that are subclasses of unittest.TestCase
, however you can control the Pattern and the subclasses option.
Change Pattern according to your test file names, it accepts Python regular expression.