Another attempt at changing pytest ordering so that pytest can run without shell script

This commit is contained in:
Miguel Jacq 2018-10-13 10:03:15 +11:00
parent 966ade5dda
commit 2a00656fd6
19 changed files with 28 additions and 53 deletions

View file

@ -12,11 +12,10 @@ class LocalReceiveModeTest(unittest.TestCase, GuiReceiveTest):
}
cls.gui = GuiReceiveTest.set_up(test_settings, 'LocalReceiveModeTest')
@pytest.mark.run(order=1)
def test_run_all_common_setup_tests(self):
self.run_all_common_setup_tests()
@pytest.mark.run(order=2)
@pytest.mark.run(after='test_run_all_common_setup_tests')
def test_run_all_receive_mode_tests(self):
self.run_all_receive_mode_tests(False, True)