Skip to content

Update dependency urllib3 to v1.26.19 [SECURITY] #642

Update dependency urllib3 to v1.26.19 [SECURITY]

Update dependency urllib3 to v1.26.19 [SECURITY] #642

Workflow file for this run

name: "Unit Tests"
on:
pull_request: {}
push:
branches: ["main"]
env:
PYTHON_VERSION: "3.10.1"
jobs:
test:
name: Pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
steps:
- name: Check out code
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
requirements: "true"
test-requirements: "true"
- name: Run pytest
run: pytest --cov plugin_scripts/ tests --cov-report xml:coverage-${{ env.PYTHON_VERSION }}.xml --junitxml=test-results-${{ env.PYTHON_VERSION }}.xml
- name: Upload pytest test results artifact
uses: actions/upload-artifact@v3
with:
name: pytest-results-${{ env.PYTHON_VERSION }}
path: test-results-${{ env.PYTHON_VERSION }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
- name: Upload coverage results artifact
uses: actions/upload-artifact@v3
with:
name: pytest-coverage-${{ env.PYTHON_VERSION }}
path: coverage-${{ env.PYTHON_VERSION }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
- name: Publish coverage results to Codecov
uses: codecov/codecov-action@v3.1.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage-${{ env.PYTHON_VERSION }}.xml
fail_ci_if_error: true