Skip to content

Commit 5a1adff

Browse files
author
Colin Schimmelfing
committed
Merge pull request Clever#24 from Clever/clean-up-the-unix
Clean up the unix
2 parents be3f9e0 + e25463c commit 5a1adff

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
httmock>=1.2.2
12
requests>=0.8.8

test/test_cert_pinning.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ def test_prod_api(self):
1818
district = clever.District.all()[0]
1919
self.assertEqual(district.name, 'Demo District')
2020

21-
def test_staging_api(self):
22-
clever.api_base = 'https://api-staging.ops.clever.com'
23-
district = clever.District.all()[0]
24-
self.assertEqual(district.name, 'Demo District')
25-
2621
def test_cert_failure(self):
2722
clever.api_base = 'https://httpbin.org'
2823
self.assertRaises(clever.APIConnectionError, clever.District.all)

0 commit comments

Comments
 (0)