diff options
| author | J08nY | 2022-01-03 20:56:26 +0100 |
|---|---|---|
| committer | J08nY | 2022-01-03 20:57:59 +0100 |
| commit | 3bd75b1554acc9c8f420ece1b7fa08aa1baea280 (patch) | |
| tree | c2fa2d9497362b1363c58f36af0fc8db1e04dfce /.github/workflows | |
| parent | 548b6b62f1abab0e5a7dcd2d64d4ab8d623f68cd (diff) | |
| download | sec-certs-3bd75b1554acc9c8f420ece1b7fa08aa1baea280.tar.gz sec-certs-3bd75b1554acc9c8f420ece1b7fa08aa1baea280.tar.zst sec-certs-3bd75b1554acc9c8f420ece1b7fa08aa1baea280.zip | |
Split workflow steps in test workflow.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/tests.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5d2999ae..bbef1b7d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,9 +15,10 @@ jobs: python-version: '3.8' - name: Install python dependencies run: pip install -r requirements.txt - - name: Install pytest and run tests + - name: Install pytest and package run: | pip install pytest pip install pytest-cov pip install ".[dev,test]" - pytest --cov sec_certs + - name: Run tests + run: pytest --cov sec_certs |
