From 1cc6c9d0a729d465ac28c5387661287327e0a296 Mon Sep 17 00:00:00 2001 From: Joe Polny Date: Wed, 19 Nov 2025 10:58:40 -0500 Subject: [PATCH] test: use polytest for transact --- .gitignore | 2 ++ pyproject.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index ff508c87..b03b2a00 100644 --- a/.gitignore +++ b/.gitignore @@ -177,3 +177,5 @@ cython_debug/ .references/ *.xml + +.polytest*/ diff --git a/pyproject.toml b/pyproject.toml index de66aed6..76a258fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -169,6 +169,8 @@ docs = ["docs-md-only"] docs-md-only = "sphinx-build docs/source docs/markdown -b markdown" docstrings-check = "pydoclint src --style sphinx --arg-type-hints-in-docstring false --check-return-types false" docs-dev = "sphinx-autobuild --ignore '**/_build/**' --ignore '**/autoapi/**' --ignore '**/.doctrees/**' docs/source docs/_build" +polytest-generate-transact = "polytest --config test_configs/transact.jsonc --git 'https://github.com/joe-p/algokit-polytest#feat/update_transact' generate -t pytest" +polytest-run-transact = "polytest --config test_configs/transact.jsonc --git 'https://github.com/joe-p/algokit-polytest#feat/update_transact' run -t pytest --no-parse" [tool.poe.tasks.ruff-check] cmd = "ruff check src tests"