Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 6ba7c2b

Browse files
committed
Added separate pylint command to Jenkins build and Travis CI
1 parent 30efe3c commit 6ba7c2b

File tree

3 files changed

+4
-54
lines changed

3 files changed

+4
-54
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ services:
1313

1414
install: "pip install -r requirements.txt && pip install -r test-requirements.txt"
1515
# command to run tests
16-
script: nosetests -w ./tests/unit
16+
script:
17+
- pylint ./src/cloudant
18+
- nosetests -w ./tests/unit
1719

1820
notifications:
1921
email: false

Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ def test_python(pythonVersion)
1616
export SKIP_DB_UPDATES=1
1717
pip install -r requirements.txt
1818
pip install -r test-requirements.txt
19+
pylint ./src/cloudant
1920
nosetests -w ./tests/unit --with-xunit"""
2021
} finally {
2122
// Load the test results

tests/unit/lint_test.py

Lines changed: 0 additions & 53 deletions
This file was deleted.

0 commit comments

Comments
 (0)