We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d88ea2c commit 40f863fCopy full SHA for 40f863f
docker-entrypoint.sh
@@ -7,6 +7,7 @@ set -o pipefail
7
bandit -r vcert/
8
9
# ID 40291 is pip, ignore so we can still test python 2.7
10
-safety check -i 40291
+#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