Skip to content

Script can be run via pytest options #2

Script can be run via pytest options

Script can be run via pytest options #2

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: python:3.10
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run pytest
run: pytest --junitxml=report.xml
- name: Publish Test Report
uses: actions/upload-artifact@v3
if: always()
with:
name: pytest-reports
path: report.xml