-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Failed to run continuous testing on apple m1 #23075
Labels
Milestone
Comments
Can you provide a reproducer? That test works fine for me. |
it seems related to |
@QuarkusTest
class ExampleTest {
@Nested
inner class Test1 {
@Test
fun `test1`() {
Assertions.assertTrue(true)
}
}
@Nested
inner class Test2 {
@BeforeEach
fun setupMock() {
}
@Test
fun `test2`() {
Assertions.assertTrue(true)
}
}
} |
stuartwdouglas
added a commit
to stuartwdouglas/quarkus
that referenced
this issue
Jan 25, 2022
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Jan 25, 2022
Fixes quarkusio#23075 (cherry picked from commit a464e10)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
After entered to continuous testing mode, it throws error
Cannot mix both @QuarkusTest based tests and io.quarkus.test.junit.QuarkusTest based tests in the same run
but in fact
@QuarkusTest
is included in the testexample:
Expected behavior
No response
Actual behavior
How to Reproduce?
./gradlew quarkusDev
Output of
uname -a
orver
Darwin 21.2.0 Darwin Kernel Version 21.2.0: Sun Nov 28 20:28:41 PST 2021; root:xnu-8019.61.5~1/RELEASE_ARM64_T6000 arm64
Output of
java -version
OpenJDK 64-Bit Server VM Zulu11.54+23-CA (build 11.0.14+9-LTS, mixed mode)
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.3.1.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)7.3.3
Additional information
No response
The text was updated successfully, but these errors were encountered: