There is the following file: SomeTest1.py
__author__ = 'vbilohorodskyi' import unittest from selenium import webdriver from selenium.webdriver.common import keys class InitDriverTest(unittest.TestCase): def setUp(self): self.driver = webdriver.Firefox() print("=========================================================") #initializing browser and verifying if the selected URL is accessible and has correct content by key values def testInit_driver_and_url(self): driver = self.driver driver.get("somesite.com") assert "Some title" in driver.title print("Init driver and url: PASS") def tearDown(self): self.driver.quit() if __name__ == "__main__": unittest.main() And there is a second file with the same architecture, but with a different test case.
Both of these files are in the same Python Package, and run separately without problems. As soon as I try to run all the tests with pekedzha, I observe an error
Process finished with exit code 0 Empty test suite. init.py file for this pekedzha empty.
I tried to change the configuration of Runner, played with the names of classes and methods (test- at the beginning and -Test at the end), tried different Regexps as a pattern in the configuration of Runner, but nothing helped.
Has anyone encountered this problem? I would be grateful for the help in setting up the launch of the pekedzha test suites.

