Skip to content

Commit

Permalink
Fix install settings for Travis (#3)
Browse files Browse the repository at this point in the history
This change fixes the .travis.yml file to work properly. The one committed initially fails to properly install _pine itself as well as the requirements.
  • Loading branch information
briancurtin committed Mar 11, 2018
1 parent 38e9194 commit 21daa48
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ language: python
python:
- "3.7-dev" # 3.7 development branch
# command to install dependencies
install: "pip install -r test-requirements.txt"
install:
- pip install .
- pip install -r requirements.txt
- pip install -r test-requirements.txt
# command to run tests
script: python -m unittest discover -v tests
#after_success:
Expand Down

0 comments on commit 21daa48

Please sign in to comment.