File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -45,11 +45,19 @@ def pytest_runtestloop(session):
45
45
)
46
46
47
47
test_init_functions .add (opensearch_install_async )
48
- if any (opensearch_test in parent_name for opensearch_test in ["test_es" , "firehose" ]):
48
+
49
+ if any (es_test in parent_name for es_test in ["elasticsearch" , "firehose" ]):
49
50
from tests .aws .services .es .test_es import install_async as es_install_async
50
51
51
52
test_init_functions .add (es_install_async )
52
53
54
+ if "transcribe" in parent_name :
55
+ from tests .aws .services .transcribe .test_transcribe import (
56
+ install_async as transcribe_install_async ,
57
+ )
58
+
59
+ test_init_functions .add (transcribe_install_async )
60
+
53
61
# add init functions for certain tests that download/install things
54
62
for test_class in test_classes :
55
63
# set flag that terraform will be used
Original file line number Diff line number Diff line change 29
29
ffmpeg_installed = threading .Event ()
30
30
installation_errored = threading .Event ()
31
31
32
- INSTALLATION_TIMEOUT = 4 * 60
32
+ INSTALLATION_TIMEOUT = 5 * 60
33
33
PRE_DOWNLOAD_LANGUAGE_CODE_MODELS = ["en-GB" ]
34
34
35
35
You can’t perform that action at this time.
0 commit comments