Skip to content

Add improved 404 page with redirection and styling #22

Add improved 404 page with redirection and styling

Add improved 404 page with redirection and styling #22

Workflow file for this run

name: Python test with pytest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
cd tests
pytest
# pip install pytest pytest-cov
# pytest tests.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html