Skip to content
Snippets Groups Projects
Commit 518bdfd1 authored by yang-g's avatar yang-g
Browse files

Properly filter the end2end tests

parent b40a86fe
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ END2END_FIXTURES = { ...@@ -65,7 +65,7 @@ END2END_FIXTURES = {
tracing=True), tracing=True),
'h2_ssl': fixture_options(secure=True), 'h2_ssl': fixture_options(secure=True),
'h2_ssl_cert': fixture_options(secure=True), 'h2_ssl_cert': fixture_options(secure=True),
'h2_ssl_proxy': fixture_options(secure=True), 'h2_ssl_proxy': fixture_options(includes_proxy=True, secure=True),
'h2_uds': fixture_options(dns_resolver=False, 'h2_uds': fixture_options(dns_resolver=False,
platforms=['linux', 'mac', 'posix']), platforms=['linux', 'mac', 'posix']),
} }
...@@ -95,7 +95,7 @@ END2END_TESTS = { ...@@ -95,7 +95,7 @@ END2END_TESTS = {
'cancel_before_invoke': test_options(), 'cancel_before_invoke': test_options(),
'cancel_in_a_vacuum': test_options(), 'cancel_in_a_vacuum': test_options(),
'cancel_with_status': test_options(), 'cancel_with_status': test_options(),
'compressed_payload': test_options(), 'compressed_payload': test_options(proxyable=False),
'connectivity': test_options(needs_fullstack=True, proxyable=False), 'connectivity': test_options(needs_fullstack=True, proxyable=False),
'default_host': test_options(needs_fullstack=True, needs_dns=True), 'default_host': test_options(needs_fullstack=True, needs_dns=True),
'disappearing_server': test_options(needs_fullstack=True), 'disappearing_server': test_options(needs_fullstack=True),
...@@ -120,7 +120,7 @@ END2END_TESTS = { ...@@ -120,7 +120,7 @@ END2END_TESTS = {
'payload': test_options(), 'payload': test_options(),
'load_reporting_hook': test_options(), 'load_reporting_hook': test_options(),
'ping_pong_streaming': test_options(), 'ping_pong_streaming': test_options(),
'ping': test_options(proxyable=False), 'ping': test_options(needs_fullstack=True, proxyable=False),
'registered_call': test_options(), 'registered_call': test_options(),
'request_with_flags': test_options(proxyable=False), 'request_with_flags': test_options(proxyable=False),
'request_with_payload': test_options(), 'request_with_payload': test_options(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment