Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix use scripts from engine spec
  • Loading branch information
attilakreiner committed Mar 11, 2024
commit 1775c777f6784aee6ca6c0fc442289365e01696d

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion incubator/exporter-otlp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<jacoco.coverage.ratio>0.90</jacoco.coverage.ratio>
<jacoco.coverage.ratio>0.75</jacoco.coverage.ratio>
<jacoco.missed.count>0</jacoco.missed.count>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public class EventIT
private static final String ENGINE_DIRECTORY = "target/zilla-itests";

private final K3poRule k3po = new K3poRule()
.addScriptRoot("net", "io/aklivity/zilla/runtime/exporter/otlp/internal/network")
.addScriptRoot("app", "io/aklivity/zilla/runtime/exporter/otlp/internal/application");
.addScriptRoot("net", "io/aklivity/zilla/specs/engine/streams/network")
.addScriptRoot("app", "io/aklivity/zilla/specs/engine/streams/application");

private final TestRule timeout = new DisableOnDebug(new Timeout(10, SECONDS));

Expand Down