summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-12-02 12:48:54 +0300
committerAndrew Dolgov <[email protected]>2023-12-02 12:48:54 +0300
commit2b8e34453234b8b31ebc9e7020f8677bf3889898 (patch)
treec61ac80fd086d738cec8f0d1042118ee938f3563 /tests/integration
parente453befab635d18478545e9616cb28daee5b568e (diff)
add some unittest options for xmlrunner
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/selenium_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/selenium_test.py b/tests/integration/selenium_test.py
index 137462698..11aa96fc0 100644
--- a/tests/integration/selenium_test.py
+++ b/tests/integration/selenium_test.py
@@ -69,4 +69,4 @@ class SeleniumTest(unittest.TestCase):
assert self.driver.find_element(by=By.CSS_SELECTOR, value="#feedTree").is_displayed()
with open('selenium-report.xml', 'wb') as output:
- unittest.main(testRunner=xmlrunner.XMLTestRunner(output=output))
+ unittest.main(testRunner=xmlrunner.XMLTestRunner(output=output), failfast=False, buffer=False, catchbreak=False)