Skip to content

Commit 8ac5e5c

Browse files
committed
chore: update testcase
1 parent f3086cb commit 8ac5e5c

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

tests/test_api_diy_options.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def verify_result(self):
2727
result = get_results().pop()
2828
self.assertTrue(result.status == 'success')
2929

30+
@unittest.skip(reason='significant latency')
3031
def test_cookie(self):
3132
config = {
3233
'url': ['http://httpbin.org/post'],
@@ -42,6 +43,7 @@ def test_cookie(self):
4243
result = get_results().pop()
4344
self.assertTrue(result.status == 'success')
4445

46+
@unittest.skip(reason='significant latency')
4547
def test_cookie_dict_params(self):
4648
config = {
4749
'url': ['http://httpbin.org/post'],

tests/test_request_raw.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ def setUp(self):
99
def tearDown(self):
1010
pass
1111

12+
@unittest.skip(reason='significant latency')
1213
def test_get(self):
1314
raw = '''
1415
GET /get?a=1&b=2 HTTP/1.1
@@ -24,6 +25,7 @@ def test_get(self):
2425
r = requests.httpraw(raw)
2526
self.assertTrue(r.json()['args'] == {'a': '1', 'b': '2'})
2627

28+
@unittest.skip(reason='significant latency')
2729
def test_post(self):
2830
raw = '''
2931
POST /post HTTP/1.1
@@ -41,6 +43,7 @@ def test_post(self):
4143
r = requests.httpraw(raw)
4244
self.assertTrue(r.json()['data'] == 'a=1&b=2')
4345

46+
@unittest.skip(reason='significant latency')
4447
def test_json(self):
4548
raw = '''
4649
POST /post HTTP/1.1

0 commit comments

Comments
 (0)