Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
Remove test skips
Browse files Browse the repository at this point in the history
  • Loading branch information
shanefontaine committed Dec 29, 2018
1 parent 8113e76 commit 53b6f9a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/test_public_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,16 @@ class TestPublicClient(object):
def teardown_method():
time.sleep(.5) # Avoid rate limit

@pytest.mark.skip
def test_get_platform_status(self, client):
r = client.get_platform_status()
assert type(r) is list

@pytest.mark.skip
@pytest.mark.parametrize('pair', ['tBTCUSD', 'tETHBTC'])
def test_get_ticker(self, client, pair):
r = client.get_ticker(pair)
assert type(r) is list
assert len(r) is 10

@pytest.mark.skip
@pytest.mark.parametrize('pair, limit, start, end, sort', [
('tBTCUSD', 120, None, None, 0),
('tBTCUSD', 120, 1514764800000, 1514765700000, 0),
Expand Down

0 comments on commit 53b6f9a

Please sign in to comment.