Skip to content

Commit

Permalink
feat: multi-tenant
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Oct 13, 2023
1 parent d052369 commit f3c4027
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected void init() throws IOException, URISyntaxException {
@Test
void flow() throws TimeoutException, URISyntaxException {
Path project = Path.of(Objects.requireNonNull(BuildRunnerTest.class.getClassLoader().getResource("project")).toURI());
Execution execution = runnerUtils.runOne("io.kestra.dbt", "full", null, (flow, execution1) -> Map.of("path", project.toAbsolutePath().toUri().getPath()), Duration.ofMinutes(1));
Execution execution = runnerUtils.runOne(null,"io.kestra.dbt", "full", null, (flow, execution1) -> Map.of("path", project.toAbsolutePath().toUri().getPath()), Duration.ofMinutes(1));

assertThat(execution.getState().getCurrent(), is(State.Type.SUCCESS));
assertThat(execution.getTaskRunList().size(), greaterThan(10));
Expand Down

0 comments on commit f3c4027

Please sign in to comment.