Skip to content

Commit

Permalink
Travis integration.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbeced committed Jan 5, 2015
1 parent 9f35053 commit 66ada55
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ python:
# command to install dependencies
install:
- "pip install ."
- "pip install -r requirements-test.txt"
- "pip install -r travis/requirements.txt"

# command to run tests
script: nosetests
# optimizer_testcase is ignored because it gets blocked in Travis.
script: nosetests --ignore-files=optimizer_testcase
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,12 @@
],
install_requires=[
'numpy',
'pytz']
'pytz',
],
extras_require={
'TALib': ["talib"],
'Plotting': ["matplotlib"],
'Bitstamp': ["ws4py", "tornado"],
'Twitter': ["tweepy"],
},
)
3 changes: 2 additions & 1 deletion requirements-test.txt → travis/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
talib
matplotlib
ws4py
tornado
tweepy
matplotlib

0 comments on commit 66ada55

Please sign in to comment.