Skip to content

Commit

Permalink
Merge pull request #14 from NCherel/travis
Browse files Browse the repository at this point in the history
Fix travis.yml
  • Loading branch information
AxeldeRomblay committed Jul 10, 2017
2 parents 2e5e8eb + 8f53eb7 commit b04c287
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install python-package/.
- pip install -r python-package/requirements.txt
- pip install --upgrade pip setuptools wheel
- pip install --only-binary all -r python-package/requirements.txt
# command to run tests
script: pytest
script:
- cd python-package
- python setup.py install
2 changes: 1 addition & 1 deletion python-package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def run(self):
print(str(failed))
print("Please install them manually")
print("")
return 1
raise OSError("Aborting")

# install MlBox
install.run(self)
Expand Down

0 comments on commit b04c287

Please sign in to comment.