We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dfefeb commit dd50842Copy full SHA for dd50842
1 file changed
docker-entrypoint.sh
@@ -8,6 +8,8 @@ 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
+#Ignoring cryptography issue 59473 The cryptography package before 41.0.2 for Python mishandles SSH certificates that have critical options.
12
+# If we upgrade to cryptography 41.0.2 or higher we get `pyo3 modules may only be initialized once per interpreter process` and tests cannot run
13
safety check -i 40291 -i 51457 -i 59473
14
15
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