Skip to content

Commit

Permalink
Re-enable for CommandTest
Browse files Browse the repository at this point in the history
This test still fails sporadically
  • Loading branch information
cppwfs committed Oct 18, 2024
1 parent 13a46ab commit b115631
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

import org.apache.commons.io.IOUtils;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.assertj.core.api.Assertions.assertThat;
Expand Down Expand Up @@ -90,7 +91,8 @@ void giveTheOutputToTheSpecifiedConsumerAsItIsAvailable() throws Exception {
assertThat(consumedLogLines).containsExactly("line 1", "line 2");
}

@Test
@Disabled("flaky test: https://circleci.com/gh/palantir/docker-compose-rule/378, 370, 367, 366")
@Test
void notCreateLongLivedThreadsAfterExecution() throws Exception {
Set<Thread> preEntries = Thread.getAllStackTraces().keySet().stream().filter(Thread::isAlive).collect(Collectors.toSet());
int preThreadCount = preEntries.size();
Expand Down

0 comments on commit b115631

Please sign in to comment.