File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ def test_no_schema_exception():
85
85
)
86
86
87
87
88
+ @pytest .mark .online
88
89
@pytest .mark .requests
89
90
def test_execute_result_error ():
90
91
@@ -111,6 +112,7 @@ def test_execute_result_error():
111
112
assert 'Cannot query field "id" on type "Continent".' in str (exc_info .value )
112
113
113
114
115
+ @pytest .mark .online
114
116
@pytest .mark .requests
115
117
def test_http_transport_raise_for_status_error (http_transport_query ):
116
118
from gql .transport .requests import RequestsHTTPTransport
@@ -127,6 +129,7 @@ def test_http_transport_raise_for_status_error(http_transport_query):
127
129
assert "400 Client Error: Bad Request for url" in str (exc_info .value )
128
130
129
131
132
+ @pytest .mark .online
130
133
@pytest .mark .requests
131
134
def test_http_transport_verify_error (http_transport_query ):
132
135
from gql .transport .requests import RequestsHTTPTransport
@@ -142,6 +145,7 @@ def test_http_transport_verify_error(http_transport_query):
142
145
assert "Unverified HTTPS request is being made to host" in str (record [0 ].message )
143
146
144
147
148
+ @pytest .mark .online
145
149
@pytest .mark .requests
146
150
def test_http_transport_specify_method_valid (http_transport_query ):
147
151
from gql .transport .requests import RequestsHTTPTransport
@@ -155,6 +159,7 @@ def test_http_transport_specify_method_valid(http_transport_query):
155
159
assert result is not None
156
160
157
161
162
+ @pytest .mark .online
158
163
@pytest .mark .requests
159
164
def test_http_transport_specify_method_invalid (http_transport_query ):
160
165
from gql .transport .requests import RequestsHTTPTransport
You can’t perform that action at this time.
0 commit comments