File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
tests/src/test/scala/org/apache/openwhisk/core/limits Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,15 @@ import org.apache.openwhisk.core.entity.{
51
51
}
52
52
import org .apache .openwhisk .core .entity .size ._
53
53
import org .apache .openwhisk .http .Messages
54
+ import org .scalatest .BeforeAndAfterAll
54
55
55
56
@ RunWith (classOf [JUnitRunner ])
56
- class ActionLimitsTests extends TestHelpers with WskTestHelpers with WskActorSystem with TimingHelpers {
57
+ class ActionLimitsTests
58
+ extends TestHelpers
59
+ with WskTestHelpers
60
+ with WskActorSystem
61
+ with TimingHelpers
62
+ with BeforeAndAfterAll {
57
63
58
64
implicit val wskprops = WskProps ()
59
65
val wsk = new WskRestOperations
@@ -77,6 +83,10 @@ class ActionLimitsTests extends TestHelpers with WskTestHelpers with WskActorSys
77
83
// * With Docker 18.09.3, we observed test failures and changed to "openFileLimit - 24".
78
84
val minExpectedOpenFiles = openFileLimit - 24
79
85
86
+ override protected def beforeAll (): Unit = {
87
+ Thread .sleep(60000 );
88
+ }
89
+
80
90
behavior of " Action limits"
81
91
82
92
/**
You can’t perform that action at this time.
0 commit comments