Skip to content

Unit Test Execution by @SalatielBairros #8

Unit Test Execution by @SalatielBairros

Unit Test Execution by @SalatielBairros #8

Workflow file for this run

name: Unit tests execution
run-name: Unit Test Execution by @${{ github.actor }}
on:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest
python -m pytest tests/ --disable-warnings