Skip to content

Commit

Permalink
Create separate files for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahselek committed Jan 7, 2018
1 parent db710b3 commit b3e28a9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Expand Up @@ -7,12 +7,12 @@ before_script:
- /bin/bash ./.travis.sh

install:
- "pip install ."
- "pip install requests"
- "pip install python-coveralls"
- "pip install coverage"
- "pip install nose"
- pip install -r requirements.txt
- pip install -r requirements.testing.txt
- pip install .

script:
- nosetests --with-coverage --cover-package=pyley
after_success: coveralls

after_success:
- coveralls
3 changes: 3 additions & 0 deletions requirements.testing.txt
@@ -0,0 +1,3 @@
python-coveralls
coverage
nose
1 change: 1 addition & 0 deletions requirements.txt
@@ -0,0 +1 @@
requests

0 comments on commit b3e28a9

Please sign in to comment.