Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![IEX-API-Python Logo](iex_logo.png)

[![Build Status](https://travis-ci.org/danielecook/iex-api-python.svg?branch=master)](https://travis-ci.org/danielecook/iex-api-python) [![Coverage Status](https://coveralls.io/repos/github/danielecook/iex-api-python/badge.svg)](https://coveralls.io/github/danielecook/iex-api-python) ![Python 3.6](https://img.shields.io/badge/Python-3.6-blue.svg) ![Documentation](https://img.shields.io/badge/Documentation-!-green.svg)
[![Build Status](https://travis-ci.org/danielecook/iex-api-python.svg?branch=master)](https://travis-ci.org/danielecook/iex-api-python) [![Coverage Status](https://coveralls.io/repos/github/danielecook/iex-api-python/badge.svg)](https://coveralls.io/github/danielecook/iex-api-python) ![Python 3.6](https://img.shields.io/badge/Python-3.6-blue.svg)


### Summary
Expand Down
2 changes: 1 addition & 1 deletion iex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "0.0.1"
version = "0.0.2"
from iex.reference_data import reference
from iex.stocks import stock
from iex.batch import batch
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytoolz
toolz
requests
websockets
pandas
Expand Down
3 changes: 0 additions & 3 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import pytest
from tests.tests_helper import *
import unittest
from tests.helpers import *

__all__ = [
'pytest',
'unittest',
'tests_helper'
]
10 changes: 0 additions & 10 deletions tests/tests_helper.py

This file was deleted.

2 changes: 1 addition & 1 deletion tests/unit/test_market.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
m = market()

def test_market_list():
assert m.mostactive().empty == False
m.mostactive()
m.gainers()
m.losers()
m.iexvolume()
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_stock.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import datetime
import re
from pytest import raises

from iex import stock


Expand Down