m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/pl/edu/mimuw/cloudatlas/agent
diff options
context:
space:
mode:
authorMartin <marcin.j.chrzanowski@gmail.com>2019-11-17 18:20:12 +0100
committerGitHub <noreply@github.com>2019-11-17 18:20:12 +0100
commit821e37f20cc9c1c6f135a931eaf5bb055e854043 (patch)
treeeb3031c16e93281d54d197c74c90fc15446605df /src/test/java/pl/edu/mimuw/cloudatlas/agent
parent582448484ee914a55c46e6360c96ffc59d85ed94 (diff)
GitHub actions (#16)
* Increase sleeps for CI * Upload test report in CI * Try not exiting with failure from run command * Ignore test that fails in CI * Go back to just ./gradlew
Diffstat (limited to 'src/test/java/pl/edu/mimuw/cloudatlas/agent')
-rw-r--r--src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java b/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java
index cc1b4b5..24924a7 100644
--- a/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java
+++ b/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentTest.java
@@ -27,9 +27,9 @@ public class AgentTest {
@BeforeClass
public static void bindApi() throws Exception {
registryProcess = Runtime.getRuntime().exec("./scripts/registry");
- Thread.sleep(2000);
+ Thread.sleep(10000);
agentProcess = Runtime.getRuntime().exec("./gradlew runAgent");
- Thread.sleep(5000);
+ Thread.sleep(10000);
}
@AfterClass