Skip to content

Fixed issues with exit code handling, debug printing #56

Fixed issues with exit code handling, debug printing

Fixed issues with exit code handling, debug printing #56

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test_requirements.txt
- name: Run tests
run: python -m pytest
continue-on-error: false