Skip to content

Commit 2058e5c

Browse files
committed
Make ResponderTest.py pychecker run even less strict
1 parent 6294ded commit 2058e5c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.travis-ci.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,12 +262,16 @@ elif [[ $TASK = 'pychecker' ]]; then
262262
travis_fold end "pychecker_c"
263263
# Special case checking for some python 3 compatibility workarounds
264264
travis_fold start "pychecker_d"
265-
pychecker --quiet --limit 500 --no-shadowbuiltin --no-noeffect ./include/ola/gen_callbacks.py ./tools/rdm/ResponderTest.py
265+
pychecker --quiet --limit 500 --no-shadowbuiltin --no-noeffect ./include/ola/gen_callbacks.py
266266
travis_fold end "pychecker_d"
267267
# Special case checking for some python 3 compatibility workarounds that import files that break pychecker
268268
travis_fold start "pychecker_e"
269269
pychecker --quiet --limit 500 --only --no-shadowbuiltin --no-noeffect ./tools/rdm/TestHelpers.py
270270
travis_fold end "pychecker_e"
271+
# Extra special case checking for some python 3 compatibility workarounds that import files that break pychecker and have unused parameters
272+
travis_fold start "pychecker_f"
273+
pychecker --quiet --limit 500 --only --no-argsused --no-shadowbuiltin --no-noeffect ./tools/rdm/ResponderTest.py
274+
travis_fold end "pychecker_f"
271275
elif [[ $TASK = 'pychecker-wip' ]]; then
272276
travis_fold start "autoreconf"
273277
autoreconf -i;

0 commit comments

Comments
 (0)