Skip to content

update documentation with fast_visualise and text #9

update documentation with fast_visualise and text

update documentation with fast_visualise and text #9

Workflow file for this run

name: Run unit tests (for minimal build)
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/[email protected]
with:
# Version range or exact version of Python or PyPy to use, using SemVer's version range syntax. Reads from .python-version if unset.
python-version: "3.12"
# Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv, poetry.
cache: "pip"
- name: Update installation tools
run: python -m pip install --upgrade pip setuptools wheel
- name: Install TurtleThread Minimal
run: pip install .
- name: Install pytest
run: pip install pytest
- name: Run tests with pytest
run: pytest tests/minimal/