mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
tests, ci: plumb x509-limbo-root (#9871)
Signed-off-by: William Woodruff <william@trailofbits.com>
This commit is contained in:
parent
e673bd2140
commit
f89ce7bcc5
2 changed files with 5 additions and 4 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -133,7 +133,7 @@ jobs:
|
|||
CARGO_TARGET_DIR: ${{ format('{0}/src/rust/target/', github.workspace) }}
|
||||
- name: Tests
|
||||
run: |
|
||||
nox --no-install -- --color=yes --wycheproof-root=wycheproof ${{ matrix.PYTHON.NOXARGS }}
|
||||
nox --no-install -- --color=yes --wycheproof-root=wycheproof --x509-limbo-root=x509-limbo ${{ matrix.PYTHON.NOXARGS }}
|
||||
env:
|
||||
NOXSESSION: ${{ matrix.PYTHON.NOXSESSION }}
|
||||
COLUMNS: 80
|
||||
|
|
@ -205,7 +205,7 @@ jobs:
|
|||
# OPENSSL_ENABLE_SHA1_SIGNATURES is for CentOS 9 Stream
|
||||
OPENSSL_ENABLE_SHA1_SIGNATURES: 1
|
||||
NOXSESSION: ${{ matrix.IMAGE.NOXSESSION }}
|
||||
- run: '/venv/bin/nox --no-install -- --color=yes --wycheproof-root="wycheproof"'
|
||||
- run: '/venv/bin/nox --no-install -- --color=yes --wycheproof-root="wycheproof" --x509-limbo-root="x509-limbo"'
|
||||
env:
|
||||
COLUMNS: 80
|
||||
# OPENSSL_ENABLE_SHA1_SIGNATURES is for CentOS 9 Stream
|
||||
|
|
@ -274,7 +274,7 @@ jobs:
|
|||
NOXSESSION: ${{ matrix.PYTHON.NOXSESSION }}
|
||||
CARGO_TARGET_DIR: ${{ format('{0}/src/rust/target/', github.workspace) }}
|
||||
- name: Tests
|
||||
run: nox --no-install -- --color=yes --wycheproof-root=wycheproof
|
||||
run: nox --no-install -- --color=yes --wycheproof-root=wycheproof --x509-limbo-root=x509-limbo
|
||||
env:
|
||||
NOXSESSION: ${{ matrix.PYTHON.NOXSESSION }}
|
||||
COLUMNS: 80
|
||||
|
|
@ -338,7 +338,7 @@ jobs:
|
|||
NOXSESSION: ${{ matrix.PYTHON.NOXSESSION }}
|
||||
CARGO_TARGET_DIR: ${{ format('{0}/src/rust/target/', github.workspace) }}
|
||||
- name: Tests
|
||||
run: nox --no-install -- --color=yes --wycheproof-root=wycheproof
|
||||
run: nox --no-install -- --color=yes --wycheproof-root=wycheproof --x509-limbo-root=x509-limbo
|
||||
env:
|
||||
NOXSESSION: ${{ matrix.PYTHON.NOXSESSION }}
|
||||
COLUMNS: 80
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ def pytest_report_header(config):
|
|||
|
||||
def pytest_addoption(parser):
|
||||
parser.addoption("--wycheproof-root", default=None)
|
||||
parser.addoption("--x509-limbo-root", default=None)
|
||||
parser.addoption("--enable-fips", default=False)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue