Skip to content

Add new get_entities method that returns a generator over entity IDs. #89

Add new get_entities method that returns a generator over entity IDs.

Add new get_entities method that returns a generator over entity IDs. #89

Workflow file for this run

name: unit tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.10' ]
steps:
- name: Python ${{ matrix.python-version }} ${{ matrix.os }}
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: pip install pytest
- name: Run tests
run: pytest -v tests