Skip to content

Commit d760176

Browse files
Skip flaky job cancelation tests
1 parent 5d63f9e commit d760176

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

coriolis/tests/integration/transfers/test_executions.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
Integration tests for the transfer executions.
66
"""
77

8+
import time
9+
import unittest
10+
from unittest import mock
11+
812
from coriolis import constants
913
from coriolis.tests.integration import base
1014
from coriolis.tests.integration.providers.test_provider import imp
@@ -84,6 +88,10 @@ def _test_cancel_running_execution(self, force):
8488
Verifies that a RUNNING transfer execution can be cancelled via the API
8589
and that the execution reaches a finalized (CANCELED or ERROR) state.
8690
"""
91+
raise unittest.SkipTest(
92+
"Currently skipped due to flakiness. "
93+
"Re-enable the test once we switch to external Coriolis services.")
94+
8795
# Artificially bump the execution time of a transfer.
8896
self._patch_add_delay(
8997
imp.TestImportProvider,

0 commit comments

Comments
 (0)