Moved skips to seperate pull request
This commit is contained in:
parent
42ba5298a7
commit
22699db855
|
@ -1,5 +1,3 @@
|
||||||
import pytest
|
|
||||||
|
|
||||||
from sanic import Sanic
|
from sanic import Sanic
|
||||||
from sanic.exceptions import PayloadTooLarge
|
from sanic.exceptions import PayloadTooLarge
|
||||||
from sanic.response import text
|
from sanic.response import text
|
||||||
|
@ -45,7 +43,6 @@ async def handler3(request):
|
||||||
return text('OK')
|
return text('OK')
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skip # see: https://github.com/channelcat/sanic/issues/598
|
|
||||||
def test_payload_too_large_at_on_header_default():
|
def test_payload_too_large_at_on_header_default():
|
||||||
data = 'a' * 1000
|
data = 'a' * 1000
|
||||||
response = on_header_default_app.test_client.post(
|
response = on_header_default_app.test_client.post(
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
import pytest
|
|
||||||
|
|
||||||
from sanic import Sanic
|
from sanic import Sanic
|
||||||
from sanic.config import Config
|
from sanic.config import Config
|
||||||
from sanic.exceptions import RequestTimeout
|
from sanic.exceptions import RequestTimeout
|
||||||
|
@ -23,7 +21,6 @@ def handler_exception(request, exception):
|
||||||
return text('Request Timeout from error_handler.', 408)
|
return text('Request Timeout from error_handler.', 408)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skip # see: https://github.com/channelcat/sanic/issues/598
|
|
||||||
def test_server_error_request_timeout():
|
def test_server_error_request_timeout():
|
||||||
request, response = request_timeout_app.test_client.get('/1')
|
request, response = request_timeout_app.test_client.get('/1')
|
||||||
assert response.status == 408
|
assert response.status == 408
|
||||||
|
@ -36,7 +33,6 @@ async def handler_2(request):
|
||||||
return text('OK')
|
return text('OK')
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skip # see: https://github.com/channelcat/sanic/issues/598
|
|
||||||
def test_default_server_error_request_timeout():
|
def test_default_server_error_request_timeout():
|
||||||
request, response = request_timeout_default_app.test_client.get('/1')
|
request, response = request_timeout_default_app.test_client.get('/1')
|
||||||
assert response.status == 408
|
assert response.status == 408
|
||||||
|
|
Loading…
Reference in New Issue
Block a user