diff options
author | Jack Lloyd <[email protected]> | 2020-10-29 11:15:38 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-10-29 11:15:38 -0400 |
commit | 57943a84c7b7a3f0881f2e4e2c4fab244601822b (patch) | |
tree | 50274c5e2c7ddd2ca4700e1478a3e04984e93518 | |
parent | 7548907ef67b89c66873d78d054b213f158d0690 (diff) | |
parent | 07785ec5a145c511eccb30c1b23f0761c24666d7 (diff) |
Merge GH #2438 Fix pylint CI
-rw-r--r-- | src/configs/pylint.rc | 2 | ||||
-rw-r--r-- | src/scripts/ci/travis.yml | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/configs/pylint.rc b/src/configs/pylint.rc index 0c40f9aac..dd7e90747 100644 --- a/src/configs/pylint.rc +++ b/src/configs/pylint.rc @@ -60,7 +60,7 @@ confidence= # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" -disable=missing-docstring,no-else-return,logging-not-lazy,locally-disabled,import-outside-toplevel +disable=missing-docstring,no-else-return,logging-not-lazy,locally-disabled,import-outside-toplevel,super-with-arguments,raise-missing-from [REPORTS] diff --git a/src/scripts/ci/travis.yml b/src/scripts/ci/travis.yml index eb780f4d8..c0d2c36cb 100644 --- a/src/scripts/ci/travis.yml +++ b/src/scripts/ci/travis.yml @@ -116,6 +116,8 @@ jobs: - TARGET="nist" - name: Pylint + arch: arm64 + dist: bionic env: - TARGET="lint" |