mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 11:22:04 +00:00
Skip S3 write/read test cases
(imported from commit 838c9a5245b45fc9082f753fe6756f270c7378a7)
This commit is contained in:
@@ -5,6 +5,7 @@ from zerver.views.messages import get_sqlalchemy_connection
|
||||
|
||||
import os
|
||||
import time
|
||||
import unittest
|
||||
|
||||
|
||||
def slow(expected_run_time, slowness_reason):
|
||||
@@ -70,7 +71,10 @@ def run_test(test):
|
||||
start_time = time.time()
|
||||
|
||||
test.setUp()
|
||||
test_method()
|
||||
try:
|
||||
test_method()
|
||||
except unittest.SkipTest:
|
||||
pass
|
||||
test.tearDown()
|
||||
|
||||
delay = time.time() - start_time
|
||||
|
||||
Reference in New Issue
Block a user