8 changed files with 133 additions and 29 deletions
@ -0,0 +1,11 @@ |
|||
[run] |
|||
source= |
|||
./couchpotato/ |
|||
omit = |
|||
./libs/* |
|||
./node_modules/* |
|||
[report] |
|||
omit = |
|||
*/python?.?/* |
|||
./libs/* |
|||
./node_modules/* |
@ -0,0 +1,2 @@ |
|||
[nosetests] |
|||
where=couchpotato |
@ -0,0 +1,34 @@ |
|||
language: python |
|||
sudo: false |
|||
python: |
|||
# - "2.6" |
|||
- "2.7" |
|||
# - "3.2" |
|||
# - "3.3" |
|||
# - "3.4" |
|||
# - "3.5" |
|||
# - "3.5-dev" # 3.5 development branch |
|||
# - "nightly" # currently points to 3.6-dev |
|||
|
|||
cache: |
|||
pip: true |
|||
directories: |
|||
- node_modules |
|||
|
|||
# command to install dependencies |
|||
install: |
|||
- npm install |
|||
- pip install --upgrade pip |
|||
- pip install coverage |
|||
- pip install coveralls |
|||
# disabled, since we don't require colors for tests on travis |
|||
- pip install --upgrade nose |
|||
# - pip install rednose |
|||
|
|||
# command to run tests |
|||
script: |
|||
- grunt test |
|||
- grunt coverage |
|||
|
|||
after_success: |
|||
coveralls |
@ -1,2 +0,0 @@ |
|||
#!/bin/sh |
|||
PYTHONPATH=./libs python -m unittest discover -v -s ./couchpotato/ |
@ -1,26 +1,30 @@ |
|||
{ |
|||
"name": "couchpotato_develop", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "" |
|||
}, |
|||
"scripts": { |
|||
"start": "grunt" |
|||
}, |
|||
"dependencies": {}, |
|||
"devDependencies": { |
|||
"grunt": "~0.4.5", |
|||
"grunt-autoprefixer": "^3.0.3", |
|||
"grunt-concurrent": "~2.1.0", |
|||
"grunt-contrib-clean": "^0.7.0", |
|||
"grunt-contrib-cssmin": "~0.14.0", |
|||
"grunt-contrib-jshint": "~0.11.2", |
|||
"grunt-contrib-sass": "^0.9.2", |
|||
"grunt-contrib-uglify": "~0.11.0", |
|||
"grunt-contrib-watch": "~0.6.1", |
|||
"grunt-shell-spawn": "^0.3.8", |
|||
"jit-grunt": "^0.9.1", |
|||
"jshint-stylish": "^2.0.1", |
|||
"time-grunt": "^1.2.1" |
|||
} |
|||
"name": "couchpotato_develop", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "" |
|||
}, |
|||
"scripts": { |
|||
"start": "grunt", |
|||
"test": "grunt test" |
|||
}, |
|||
"license": "GPL-3.0", |
|||
"dependencies": {}, |
|||
"devDependencies": { |
|||
"grunt": "~0.4.5", |
|||
"grunt-autoprefixer": "^3.0.3", |
|||
"grunt-concurrent": "~2.1.0", |
|||
"grunt-contrib-clean": "^0.7.0", |
|||
"grunt-contrib-cssmin": "~0.14.0", |
|||
"grunt-contrib-jshint": "~0.11.2", |
|||
"grunt-contrib-sass": "^0.9.2", |
|||
"grunt-contrib-uglify": "~0.11.0", |
|||
"grunt-contrib-watch": "~0.6.1", |
|||
"grunt-env": "^0.4.4", |
|||
"grunt-nose": "^1.0.0", |
|||
"grunt-shell-spawn": "^0.3.8", |
|||
"jit-grunt": "^0.9.1", |
|||
"jshint-stylish": "^2.0.1", |
|||
"time-grunt": "^1.2.1" |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue