Skip to content
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

don’t exclude JsonViewTest #826

Draft
wants to merge 1 commit into
base: 4.12.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"io.micronaut.http.server.tck.tests.filter.ClientResponseFilterTest", // responseFilterThrowableParameter fails under Graal https://ge.micronaut.io/s/ufuhtbe5sgmxi
"io.micronaut.http.server.tck.tests.FilterProxyTest", // see https://github.com/micronaut-projects/micronaut-core/issues/9725
"io.micronaut.http.server.tck.tests.LocalErrorReadingBodyTest", // Cannot read body as text once stream is exhausted trying to read it as a different type See https://github.com/micronaut-projects/micronaut-servlet/pull/548
"io.micronaut.http.server.tck.tests.jsonview.JsonViewsTest", // Not serdeable
})
public class JettyHttpServerTestSuite {
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"io.micronaut.http.server.tck.tests.constraintshandler.ControllerConstraintHandlerTest",
// Proxying is probably not supported. There is no request concurrency
"io.micronaut.http.server.tck.tests.FilterProxyTest",
"io.micronaut.http.server.tck.tests.jsonview.JsonViewsTest", // Not serdeable
})
public class PojaApacheServerTestSuite {
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"io.micronaut.http.server.tck.tests.filter.ClientResponseFilterTest", // responseFilterThrowableParameter fails under Graal https://ge.micronaut.io/s/ufuhtbe5sgmxi
"io.micronaut.http.server.tck.tests.FilterProxyTest", // see https://github.com/micronaut-projects/micronaut-core/issues/9725
"io.micronaut.http.server.tck.tests.LocalErrorReadingBodyTest", // Cannot read body as text once stream is exhausted trying to read it as a different type See https://github.com/micronaut-projects/micronaut-servlet/pull/548
"io.micronaut.http.server.tck.tests.jsonview.JsonViewsTest", // Not serdeable
})
public class TomcatHttpServerTestSuite {
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"io.micronaut.http.server.tck.tests.StreamTest", // The outputstream in Undertow is marked ready asynchronously, and we throw the error early, so sometimes there's no body for statusErrorAsFirstItem.
"io.micronaut.http.server.tck.tests.FilterProxyTest", // see https://github.com/micronaut-projects/micronaut-core/issues/9725
"io.micronaut.http.server.tck.tests.LocalErrorReadingBodyTest", // Cannot read body as text once stream is exhausted trying to read it as a different type See https://github.com/micronaut-projects/micronaut-servlet/pull/548
"io.micronaut.http.server.tck.tests.jsonview.JsonViewsTest", // Not serdeable
})
public class UndertowHttpServerTestSuite {
}
Loading