Skip to content

Bump certifi from 2024.2.2 to 2024.7.4 #54

Bump certifi from 2024.2.2 to 2024.7.4

Bump certifi from 2024.2.2 to 2024.7.4 #54

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: dracoon tests
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "master" ]
jobs:
build:
environment:
testing
env:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
E2E_BASE_URL: ${{ secrets.E2E_BASE_URL }}
E2E_SERVER_BASE_URL: ${{ secrets.E2E_SERVER_BASE_URL }}
E2E_USER_NAME: ${{ secrets.E2E_USER_NAME }}
E2E_PASSWORD: ${{ secrets.E2E_PASSWORD }}
E2E_ENCRYPTION_PASSWORD: ${{ secrets.E2E_ENCRYPTION_PASSWORD }}
IS_GITHUB_ACTION: §{{ secrets.IS_GITHUB_ACTION }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
max-parallel: 1
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest python-dotenv
python -m pip install --upgrade pip setuptools wheel
python -m pip install respx
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run all tests
run: |
python run_tests.py