-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from oujago/develop
fix test bug
- Loading branch information
Showing
5 changed files
with
15 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,9 @@ | ||
language: python | ||
sudo: false | ||
python: | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
- "pypy3" | ||
addons: | ||
apt: | ||
packages: | ||
- libblas-dev | ||
- liblapack-dev | ||
before_install: | ||
- pip install -U pip | ||
install: | ||
- travis_wait travis_retry pip install -r requirements.txt | ||
- travis_retry pip install python-coveralls | ||
- travis_retry python setup.py install | ||
script: py.test --runslow --cov-config=.coveragerc | ||
after_success: | ||
- coveralls | ||
- python setup.py install | ||
- pip install -r requirements.txt | ||
script: pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,5 @@ | |
|
||
|
||
from . import data | ||
# from . import eval | ||
from . import random | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
numpy>=1.6 | ||
scipy>=0.19 | ||
scikit-learn>=0.18 | ||
nltk | ||
numpydoc>=0.6 | ||
sphinx>=1.5.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
numpy>=1.6 | ||
scipy>=0.19 | ||
numpydoc>=0.6 | ||
sphinx>=1.5.4 | ||
scikit-learn>=0.18 | ||
nltk | ||
|