Skip to content

Fix console entry point to allow direct execution with uvx #71

Fix console entry point to allow direct execution with uvx

Fix console entry point to allow direct execution with uvx #71

Workflow file for this run

name: Python Unit Tests Linux
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Test with Pytest
run: |
pytest tests/test_unit