-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test/warning cleanups #1761
Test/warning cleanups #1761
Conversation
.github/workflows/test.yml
Outdated
@@ -12,17 +12,17 @@ env: | |||
PW_MAX_RETRIES: 3 | |||
jobs: | |||
dev: | |||
timeout-minutes: 30 | |||
timeout-minutes: 60 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's do it only for channels that we know are slow?
@@ -57,6 +57,10 @@ | |||
<groupId>org.java-websocket</groupId> | |||
<artifactId>Java-WebSocket</artifactId> | |||
</dependency> | |||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's remove?
@@ -91,6 +92,12 @@ | |||
<version>${websocket.version}</version> | |||
<scope>test</scope> | |||
</dependency> | |||
<dependency> | |||
<groupId>org.slf4j</groupId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add comment that it's just for websocket to stop polluting the output with warnings.
@@ -151,7 +158,7 @@ | |||
<configuration> | |||
<properties> | |||
<configurationParameters> | |||
junit.jupiter.execution.parallel.enabled = true | |||
junit.jupiter.execution.parallel.enabled = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stray change?
@@ -74,6 +74,7 @@ void shouldThrowWhenBrowserPathIsInvalid(@TempDir Path tmpDir) throws NoSuchFiel | |||
// Make sure the browsers are not installed yet by pointing at an empty dir. | |||
env.put("PLAYWRIGHT_BROWSERS_PATH", tmpDir.toString()); | |||
env.put("PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD", "false"); | |||
env.put("PW_JAVA_INTERNAL_SILENT_INSTALL", "true"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's not do it for now. If we do it, let's make it a public option?
1a11c01
to
fafef05
Compare
a80bbc3
to
25e478f
Compare
PW_JAVA_INTERNAL_SILENT_INSTALL
to have no confusing output in the test output - Overriding the stderr/out from inside the test does not work, since ProcessBuilder is based on file descriptors.slf4j-simple
in order to get rid of:tbd. Lets see if increasing the timeouts helps to make the tests pass.