From 53b6f9a5b526fe7acdd6ab28e30c8c75a6f9cfd4 Mon Sep 17 00:00:00 2001 From: Shane Fontaine Date: Fri, 28 Dec 2018 20:25:59 -0800 Subject: [PATCH] Remove test skips --- tests/test_public_client.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_public_client.py b/tests/test_public_client.py index 4e56a3a..39736f0 100644 --- a/tests/test_public_client.py +++ b/tests/test_public_client.py @@ -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),