Skip to content

Add the pytest-html dependency #9

Add the pytest-html dependency

Add the pytest-html dependency #9

Workflow file for this run

# This configuration does the following:
# It triggers the CI pipeline when code is pushed to the master branch.
# It sets up a Python environment, installs project dependencies, and runs pytest.
# Test results are uploaded as artifacts for later examination.
name: CI
on:
push:
branches:
# - master
- test_sanity
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.13
- name: Install Dependencies
run: |
pip install -r requirements.txt
pip install pytest pytest-html
- name: Run Tests with pytest
run: pytest pytest/ --html=report.html # Test everything in the 'pytest' directory, create HTML report
continue-on-error: true # Continue to the next step even if tests fail
- name: Upload HTML Report as Artifact
uses: actions/upload-artifact@v2
with:
name: test-report
path: report.html