Skip to content

fix: fix transition to simulator #35

fix: fix transition to simulator

fix: fix transition to simulator #35

Workflow file for this run

name: Python Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r req.txt
pip install pytest pytest-django
- name: Run tests
run: |
python -m pytest tests/ -v