Skip to content

Commit

Permalink
Merge pull request #7 from infolab-csail/missing-deps
Browse files Browse the repository at this point in the history
Add missing dependencies to setup.py
  • Loading branch information
michaelsilver authored Aug 2, 2016
2 parents 0ef5f44 + cecb77e commit 168ded3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ python:
- "3.5-dev"
- "nightly"
install:
- pip install -r requirements.txt
- if [[ $TRAVIS_INSTALL_LIKE_PIP == false ]]; then pip install -r requirements.txt; fi
- pip install codecov pep8
- python setup.py install
script:
- coverage run setup.py test
- pep8 lispify tests --ignore=E501
after_success:
- codecov
env:
- TRAVIS_INSTALL_LIKE_PIP=true
- TRAVIS_INSTALL_LIKE_PIP=false
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
'lispify',
'tests',
],
install_requires=[
'future',
],
tests_require=[
'unittest2',
'nose>=1.0',
],
test_suite='nose.collector',
Expand Down

0 comments on commit 168ded3

Please sign in to comment.