Skip to content

add ssl from production env #12

add ssl from production env

add ssl from production env #12

Workflow file for this run

name: Run Python E2E tests
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- 'lab/**'
- 'assets/**'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- 'lab/**'
- 'assets/**'
jobs:
test_package:
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
services:
db:
image: mysql:8.2
env:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_DATABASE: relecloud
ports:
- 3306:3306
# needed because the mysql container does not provide a healthcheck
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
playwright install chromium --with-deps
- name: Seed data
run: |
python3 src/manage.py migrate
python3 src/manage.py loaddata src/seed_data.json
env:
MYSQL_HOST: 127.0.0.1
MYSQL_USER: root
MYSQL_PASS: mysql
MYSQL_DATABASE: relecloud
- name: Run tests
run: python3 -m pytest
env:
MYSQL_HOST: 127.0.0.1
MYSQL_USER: root
MYSQL_PASS: mysql
MYSQL_DATABASE: relecloud