-
Notifications
You must be signed in to change notification settings - Fork 227
Test/warning cleanups #1761
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
Changes from all commits
86cff67
3e15aaa
6bb3051
8e98e3f
fafef05
b7898de
d355c00
91f7b8c
25e478f
9a00eca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. let's remove? |
||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ | |
<junit.version>5.12.1</junit.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<websocket.version>1.6.0</websocket.version> | ||
<slf4j.version>2.0.17</slf4j.version> | ||
<opentest4j.version>1.3.0</opentest4j.version> | ||
</properties> | ||
|
||
|
@@ -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 commentThe 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. |
||
<artifactId>slf4j-simple</artifactId> | ||
<version>${slf4j.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. stray change? |
||
junit.jupiter.execution.parallel.mode.default = same_thread | ||
junit.jupiter.execution.parallel.mode.classes.default = concurrent | ||
junit.jupiter.execution.parallel.config.strategy=dynamic | ||
|
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?