We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e134e3 commit 1f1731bCopy full SHA for 1f1731b
1 file changed
docker-entrypoint.sh
@@ -6,4 +6,8 @@ set -o pipefail
6
7
bandit -r vcert/
8
9
+# ID 40291 is pip, ignore so we can still test python 2.7
10
+#Ignoring false-positive issue with pytest. ref: https://github.com/pytest-dev/py/issues/287
11
+safety check -i 40291 -i 51457
12
+
13
pytest -v --junit-xml=junit.xml --junit-prefix=`python -V | tr ' ' '_'` --cov=vcert --cov=vcert.parser --cov=vcert.policy --cov-report term --cov-report xml
0 commit comments