Skip to content

Commit 3b11b3e

Browse files
committed
chore: do not use test.sh in travis job
1 parent d901905 commit 3b11b3e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ install:
1010
- python -m pip install --upgrade pip
1111
- pip install --upgrade -r requirements.txt
1212
script:
13-
- ./scripts/test.sh
13+
- 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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env bash
2-
set -e
32

43
# Run unit tests
54
python -m nose core_tests/unit

0 commit comments

Comments
 (0)