Skip to content
This repository has been archived by the owner on Feb 10, 2018. It is now read-only.

Commit

Permalink
Separate development requirements and update .travis.yml
Browse files Browse the repository at this point in the history
.travis.yml now uses Distribute's build and install methods and
fetches dependencies properly.
  • Loading branch information
Kaustav Das Modak committed Jan 25, 2013
1 parent b5613a1 commit fcc6a45
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ python:
- "2.6"
- "2.7"
install:
- pip install . --use-mirrors
- pip install -r requirements.txt --use-mirrors
- pip install -r tests/requirements.txt --use-mirrors
- python setup.py build
- python setup.py install
script:
- nosetests --exe -v
- pylint --rcfile=pylint-rc.ini pyavrophonetic
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
nose
simplejson>=3.0.0
pylint
2 changes: 2 additions & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nose
pylint

0 comments on commit fcc6a45

Please sign in to comment.