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

re-enable h3 tests #8773

Merged
merged 14 commits into from
Jan 12, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ public void init(Transport transport) throws IOException
@ArgumentsSource(TransportProvider.class)
public void testIterative(Transport transport) throws Exception
{
// TODO: cannot run HTTP/3 (or UDP) in Jenkins.
if ("ci".equals(System.getProperty("env")))
Assumptions.assumeTrue(transport != Transport.H3);

init(transport);
scenario.start(new LoadHandler(), client ->
{
Expand Down Expand Up @@ -118,9 +114,6 @@ public void testIterative(Transport transport) throws Exception
@ArgumentsSource(TransportProvider.class)
public void testConcurrent(Transport transport) throws Exception
{
// TODO: cannot run HTTP/3 (or UDP) in Jenkins.
Assumptions.assumeTrue(transport != Transport.H3);

init(transport);
scenario.start(new LoadHandler(), client ->
{
Expand Down