We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d901905 commit 3b11b3eCopy full SHA for 3b11b3e
.travis.yml
@@ -10,4 +10,8 @@ install:
10
- python -m pip install --upgrade pip
11
- pip install --upgrade -r requirements.txt
12
script:
13
- - ./scripts/test.sh
+ - python -m nose core_tests/unit
14
+ - python -m flake8 --max-line-length=120 core core_tests data products tests
15
+ - python -m pylint --disable=locally-disabled --rcfile=.pylintrc core data products
16
+ - find core_tests | grep .py | grep -v .pyc | xargs python -m pylint --disable=locally-disabled --rcfile=.pylintrc
17
+ - find tests | grep .py | grep -v .pyc | xargs python -m pylint --disable=locally-disabled --min-similarity-lines=15 --rcfile=.pylintrc
scripts/test.sh
@@ -1,5 +1,4 @@
1
#!/usr/bin/env bash
2
-set -e
3
4
# Run unit tests
5
python -m nose core_tests/unit
0 commit comments