File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ bandit -r vcert/
88
99# ID 40291 is pip, ignore so we can still test python 2.7
1010# Ignoring false-positive issue with pytest. ref: https://github.com/pytest-dev/py/issues/287
11- safety check -i 40291 -i 51457
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
1214
1315pytest -v --junit-xml=junit.xml --junit-prefix=` python -V | tr ' ' ' _' ` --cov=vcert --cov=vcert.parser --cov=vcert.policy --cov-report term --cov-report xml
Original file line number Diff line number Diff line change 1- pytest==7.3.1
1+ pytest==7.4.3
22pytest-cov==4.1.0
33safety==2.3.5
44bandit==1.7.5
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ requests==2.31.0
22python-dateutil == 2.8.2
33cryptography == 40.0.2
44six == 1.16.0
5- ruamel.yaml == 0.17.31
5+ ruamel.yaml == 0.18.5
66pynacl == 1.5.0
You can’t perform that action at this time.
0 commit comments