Skip to content

Commit b85c8fe

Browse files
author
childish-sambino
authored
chore: drop pytest which was not being used (#1044)
1 parent 807a2c9 commit b85c8fe

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ Flask==1.1.2
22
PyYAML>=4.2b1
33
python-http-client>=3.2.1
44
six==1.11.0
5-
pytest==3.8.2
65
starkbank-ecdsa>=2.0.1
76
more-itertools==5.0.0

test/unit/test_unassigned.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import json
2-
import pytest
32

43
from sendgrid.helpers.endpoints.ip.unassigned import unassigned
54

6-
75
ret_json = '''[ {
86
"ip": "167.89.21.3",
97
"pools": [
@@ -69,8 +67,7 @@ def make_data():
6967

7068

7169
def test_unassigned_ip_json():
72-
73-
data = make_data()
70+
data = make_data()
7471

7572
as_json = True
7673
calculated = unassigned(get_all_ip(), as_json=as_json)
@@ -81,8 +78,7 @@ def test_unassigned_ip_json():
8178

8279

8380
def test_unassigned_ip_obj():
84-
85-
data = make_data()
81+
data = make_data()
8682

8783
as_json = False
8884
calculated = unassigned(get_all_ip(), as_json=as_json)

0 commit comments

Comments
 (0)