-
Notifications
You must be signed in to change notification settings - Fork 102
/
.travis.yml
30 lines (25 loc) · 916 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
language: python
python:
- "3.5"
node_js:
- "4.2"
install:
- pip install coveralls
- pip install -r requirements.txt
- python -m textblob.download_corpora
#- npm install mocha
#- npm install chai
#- npm install supervisor
script:
#- python -m unittest discover tests/
#- py.test --pyargs /home/travis/build/KevinFasusi/supplychainpy/tests/
- travis_wait 40 coverage run --source=/home/travis/build/KevinFasusi/supplychainpy/ -m unittest discover tests/
#- coverage run --source=/home/travis/build/KevinFasusi/supplychainpy/ -m py.test --pyargs /home/travis/build/KevinFasusi/supplychainpy/tests/
#- mocha --reporter mocha-lcov-reporter --source=/home/travis/build/KevinFasusi/supplychainpy/tests/* > coverage.info
#- coveralls-lcov -v -n coverage.info > coverage.json
#- coveralls --merge=coverage.json
after_success:
- coveralls
notifications:
email: