31
31
from utils import HTTP_REQUESTS
32
32
33
33
34
+ @pytest .mark .live_test_only
34
35
@pytest .mark .asyncio
35
36
@pytest .mark .parametrize ("http_request" , HTTP_REQUESTS )
36
37
async def test_decompress_plain_no_header (http_request ):
@@ -51,6 +52,7 @@ async def test_decompress_plain_no_header(http_request):
51
52
assert decoded == "test"
52
53
53
54
55
+ @pytest .mark .live_test_only
54
56
@pytest .mark .asyncio
55
57
@pytest .mark .parametrize ("http_request" , HTTP_REQUESTS )
56
58
async def test_compress_plain_no_header (http_request ):
@@ -71,6 +73,7 @@ async def test_compress_plain_no_header(http_request):
71
73
assert decoded == "test"
72
74
73
75
76
+ @pytest .mark .live_test_only
74
77
@pytest .mark .asyncio
75
78
@pytest .mark .parametrize ("http_request" , HTTP_REQUESTS )
76
79
async def test_decompress_compressed_no_header (http_request ):
@@ -94,6 +97,7 @@ async def test_decompress_compressed_no_header(http_request):
94
97
pass
95
98
96
99
100
+ @pytest .mark .live_test_only
97
101
@pytest .mark .asyncio
98
102
@pytest .mark .parametrize ("http_request" , HTTP_REQUESTS )
99
103
async def test_compress_compressed_no_header (http_request ):
@@ -141,6 +145,7 @@ async def test_decompress_plain_header(http_request):
141
145
pass
142
146
143
147
148
+ @pytest .mark .live_test_only
144
149
@pytest .mark .asyncio
145
150
@pytest .mark .parametrize ("http_request" , HTTP_REQUESTS )
146
151
async def test_compress_plain_header (http_request ):
@@ -161,6 +166,7 @@ async def test_compress_plain_header(http_request):
161
166
assert decoded == "test"
162
167
163
168
169
+ @pytest .mark .live_test_only
164
170
@pytest .mark .asyncio
165
171
@pytest .mark .parametrize ("http_request" , HTTP_REQUESTS )
166
172
async def test_decompress_compressed_header (http_request ):
0 commit comments