Add function and code execution (#34)

* WIP code execution

* add tests, reorganize

* fix polars test

* credit statements

* attributions
This commit is contained in:
Jack Gerrits
2024-05-29 17:12:02 -04:00
committed by GitHub
parent 15268a86dd
commit 2dc7af87ef
20 changed files with 1564 additions and 7 deletions

View File

@@ -55,14 +55,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["pypy3.10", "3.10", "3.11", "3.12"]
# "pypy3.10" disabled until better example than polars used in tests
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install ".[dev]"
- run: pytest
- run: pytest -n auto
docs:
runs-on: ubuntu-latest