From a314a5b811962a80a2dbbe598ba5fcf016f2a41c Mon Sep 17 00:00:00 2001 From: Peter Bittner Date: Sun, 9 Jan 2022 23:57:46 +0100 Subject: [PATCH] Fix bandit invocation, remove now-obsolete symlink, update gitignore --- .bandit | 1 - .gitignore | 10 +--------- tox.ini | 2 +- 3 files changed, 2 insertions(+), 11 deletions(-) delete mode 120000 .bandit diff --git a/.bandit b/.bandit deleted file mode 120000 index bf39a01..0000000 --- a/.bandit +++ /dev/null @@ -1 +0,0 @@ -tox.ini \ No newline at end of file diff --git a/.gitignore b/.gitignore index b6c813a..a32ce4a 100644 --- a/.gitignore +++ b/.gitignore @@ -26,12 +26,6 @@ var/ # We only want Pipfile for easy development Pipfile.lock -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - # Installer logs pip-log.txt pip-delete-this-directory.txt @@ -46,6 +40,7 @@ coverage.xml nosetests.xml .pytest_cache/ .tox/ +tests/reports/ # Translations *.mo @@ -58,9 +53,6 @@ nosetests.xml # Sphinx documentation docs/_build/ -# PyBuilder -target/ - # added by GitSavvy /.python-version .ropeproject/ diff --git a/tox.ini b/tox.ini index 920b360..3327d01 100644 --- a/tox.ini +++ b/tox.ini @@ -32,7 +32,7 @@ commands = [testenv:bandit] description = PyCQA security linter deps = bandit -commands = bandit {posargs:-r behave_django setup.py} +commands = bandit {posargs:-r behave_django setup} [testenv:black] description = Ensure consistent code style