Skip to content

Commit

Permalink
ci: actually run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Sep 17, 2024
1 parent fab5c10 commit a27c7b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Start Backbone
run: docker compose -p test-backbone --env-file .dev/compose.backbone.env -f .dev/compose.backbone.yml up -d
- name: Run Tests
run: mvn test --batch-mode --file ./pom.xml
run: mvn test
env:
NMSHD_TEST_BASEURL: http://host.docker.internal:8090
NMSHD_TEST_CLIENTID: test
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/eu/enmeshed/ConnectorClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public ConnectorClient(
}

public static ConnectorClient create(String url, String apiKey) {
return create(url, apiKey, new Options(), Level.FULL);
return create(url, apiKey, new Options(), Level.NONE);
}

public static ConnectorClient create(String url, String apiKey, Options options, Level loggerLevel) {
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/eu/enmeshed/utils/TestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private static ConnectorRelationship syncUntilHasRelationshipInStatus(ConnectorC
}

try {
Thread.sleep(1000);
Thread.sleep(1000 + (i * 200));
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit a27c7b6

Please sign in to comment.