Skip to content

fix multipe stdouts in loop #5

fix multipe stdouts in loop

fix multipe stdouts in loop #5

Workflow file for this run

name: Tests
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: |
uv sync --dev
- name: Install Godot
run: |
wget https://github.com/godotengine/godot/releases/download/4.5.1-stable/Godot_v4.5.1-stable_linux.x86_64.zip
unzip Godot_v4.5.1-stable_linux.x86_64.zip
chmod +x Godot_v4.5.1-stable_linux.x86_64
sudo mv Godot_v4.5.1-stable_linux.x86_64 /usr/local/bin/godot
- name: Run unit tests
run: |
uv run pytest tests/ -v --ignore=tests/test_e2e.py
- name: Run e2e tests
run: |
uv run pytest tests/test_e2e.py -v --timeout=60