From 698932f4870afc1ad7b0501d2abb1640fca42562 Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Wed, 6 Mar 2024 12:44:52 +0200 Subject: [PATCH] Reduce number of globally disabled bandit checks and uncomment fail fast in the test script. --- .buildbot/tox-bionic/test.sh | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildbot/tox-bionic/test.sh b/.buildbot/tox-bionic/test.sh index 8b994fd4..b280953a 100755 --- a/.buildbot/tox-bionic/test.sh +++ b/.buildbot/tox-bionic/test.sh @@ -1,4 +1,4 @@ #!/bin/sh -tox -e lint-basic # || exit 1 +tox -e lint-basic || exit 1 tox diff --git a/tox.ini b/tox.ini index a3cd4044..fec3a54c 100644 --- a/tox.ini +++ b/tox.ini @@ -21,7 +21,7 @@ deps = bandit flake8 commands = - bandit -r --exit-zero -s B105,B301,B411,B413,B608,B101 \ + bandit -r -s B101,B411,B413,B608 \ -x checkdeps.*,bitmessagecurses,bitmessageqt,tests pybitmessage flake8 pybitmessage --count --select=E9,F63,F7,F82 \ --show-source --statistics