removed parallel worker subprocess fail screendump req'ment, so not to break the --parallel FT run
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Disco DeDisco
2026-03-18 20:49:44 -04:00
parent e9f50810da
commit 10d717a3ba

View File

@@ -61,12 +61,15 @@ class FunctionalTest(StaticLiveServerTestCase):
super().tearDown()
def _test_has_failed(self):
try:
return any(
failure[0] == self
for failure in itertools.chain(
self._outcome.result.failures, self._outcome.result.errors
)
)
except TypeError:
return False
def take_screenshot(self):
path = SCREEN_DUMP_LOCATION / self._get_filename("png")
@@ -156,12 +159,15 @@ class ChannelsFunctionalTest(ChannelsLiveServerTestCase):
super().tearDown()
def _test_has_failed(self):
try:
return any(
failure[0] == self
for failure in itertools.chain(
self._outcome.result.failures, self._outcome.result.errors
)
)
except TypeError:
return False
def take_screenshot(self):
path = SCREEN_DUMP_LOCATION / self._get_filename("png")