algorand-python-testing 1.2.0b11__tar.gz → 1.2.0b13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- algorand_python_testing-1.2.0b13/.github/actions/build-documentation/action.yml +48 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.github/workflows/cd.yaml +38 -9
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.github/workflows/ci.yaml +25 -6
- algorand_python_testing-1.2.0b13/.github/workflows/gh-pages.yaml +28 -0
- algorand_python_testing-1.2.0b13/.github/workflows/publish-devportal-docs.yml +40 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.gitignore +3 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/CHANGELOG.md +34 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/PKG-INFO +2 -2
- algorand_python_testing-1.2.0b13/docs/.gitignore +5 -0
- algorand_python_testing-1.2.0b13/docs/api_build.py +512 -0
- algorand_python_testing-1.2.0b13/docs/astro.config.mjs +54 -0
- algorand_python_testing-1.2.0b13/docs/legacy-routes.json +28 -0
- algorand_python_testing-1.2.0b13/docs/package.json +31 -0
- algorand_python_testing-1.2.0b13/docs/pnpm-lock.yaml +5281 -0
- algorand_python_testing-1.2.0b13/docs/scripts/generate-examples-mdx.ts +136 -0
- algorand_python_testing-1.2.0b13/docs/scripts/generate-legacy-redirects.mjs +82 -0
- algorand_python_testing-1.2.0b13/docs/sidebar.config.json +45 -0
- algorand_python_testing-1.2.0b13/docs/sphinx/conf.py +103 -0
- algorand_python_testing-1.2.0b13/docs/sphinx/index.rst +7 -0
- {algorand_python_testing-1.2.0b11/docs → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts}/algopy.md +4 -1
- {algorand_python_testing-1.2.0b11/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts}/arc4-types.md +12 -26
- {algorand_python_testing-1.2.0b11/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts}/avm-types.md +29 -27
- {algorand_python_testing-1.2.0b11/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts}/opcodes.md +44 -34
- algorand_python_testing-1.2.0b11/docs/testing-guide/index.md → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts/overview.md +7 -23
- algorand_python_testing-1.2.0b11/docs/testing-guide/concepts.md → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts/test-context.md +13 -30
- algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts/value-generators.md +37 -0
- algorand_python_testing-1.2.0b13/docs/src/content/docs/conftest.py +10 -0
- algorand_python_testing-1.2.0b11/docs/examples.md → algorand_python_testing-1.2.0b13/docs/src/content/docs/examples/index.md +6 -1
- {algorand_python_testing-1.2.0b11/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/contract-testing.md +14 -26
- {algorand_python_testing-1.2.0b11/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/signature-testing.md +16 -21
- {algorand_python_testing-1.2.0b11/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/state-management.md +20 -21
- {algorand_python_testing-1.2.0b11/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/subroutines.md +9 -20
- {algorand_python_testing-1.2.0b11/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/transactions.md +17 -26
- algorand_python_testing-1.2.0b13/docs/src/content/docs/index.mdx +80 -0
- {algorand_python_testing-1.2.0b11/docs → algorand_python_testing-1.2.0b13/docs/src/content/docs/reference}/coverage.md +5 -2
- {algorand_python_testing-1.2.0b11/docs → algorand_python_testing-1.2.0b13/docs/src/content/docs/reference}/faq.md +9 -7
- algorand_python_testing-1.2.0b13/docs/src/content/docs/tutorials/quick-start.md +107 -0
- algorand_python_testing-1.2.0b13/docs/src/content.config.ts +7 -0
- algorand_python_testing-1.2.0b13/docs/src/styles/api-reference.css +75 -0
- algorand_python_testing-1.2.0b13/docs/tsconfig.json +8 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/pyproject.toml +27 -15
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/arc4.py +2 -2
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/fixed_bytes.py +0 -1
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/uint64.py +0 -1
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/box.py +12 -9
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utilities/log.py +15 -11
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/value_generators/arc4.py +2 -3
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/value_generators/avm.py +2 -2
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/Contract.arc56.json +8 -24
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV0.arc56.json +5 -14
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV1.arc56.json +5 -14
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/data/SignaturesContract.arc56.json +31 -97
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/data/Arc4InnerTxnsContract.arc56.json +4 -11
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/data/Arc4PrimitiveOpsContract.arc56.json +62 -229
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/Contract.arc56.json +28 -110
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/DynamicArrayInitContract.arc56.json +7 -20
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayContract.arc56.json +52 -188
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/StaticSizeContract.arc56.json +22 -88
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/data/BoxContract.arc56.json +44 -150
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppCall.arc56.json +4 -11
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppExpectingEffects.arc56.json +14 -42
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/data/CryptoOpsContract.arc56.json +16 -47
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/DynamicItxnGroup.arc56.json +10 -34
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/VerifierContract.arc56.json +5 -14
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/data/GlobalStateValidator.arc56.json +5 -14
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/data/MiscellaneousOpsContract.arc56.json +40 -119
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/data/PrimitiveOpsContract.arc56.json +72 -215
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/StateMutations.arc56.json +20 -73
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalStateContract.arc56.json +48 -143
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/ITxnOpsContract.arc56.json +4 -11
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalStateContract.arc56.json +34 -101
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGetContract.arc56.json +29 -105
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalContract.arc56.json +10 -29
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalExContract.arc56.json +3 -8
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalContract.arc56.json +12 -35
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalExContract.arc56.json +4 -11
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppParamsContract.arc56.json +14 -57
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetHoldingContract.arc56.json +5 -14
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetParamsContract.arc56.json +17 -66
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/data/TuplesContract.arc56.json +4 -11
- algorand_python_testing-1.2.0b11/.github/workflows/gh-pages.yaml +0 -39
- algorand_python_testing-1.2.0b11/docs/Makefile +0 -20
- algorand_python_testing-1.2.0b11/docs/_static/custom.css +0 -14
- algorand_python_testing-1.2.0b11/docs/api.md +0 -41
- algorand_python_testing-1.2.0b11/docs/conf.py +0 -96
- algorand_python_testing-1.2.0b11/docs/index.md +0 -182
- algorand_python_testing-1.2.0b11/docs/make.bat +0 -35
- algorand_python_testing-1.2.0b11/tests/value_generators/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.coveragerc +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.editorconfig +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.github/dependabot.yml +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.github/pull_request_template.md +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.pre-commit-config.yaml +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.vscode/extensions.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.vscode/launch.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.vscode/settings.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/CONTRIBUTING.md +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/LICENSE +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/README.md +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/README.md +0 -0
- {algorand_python_testing-1.2.0b11/docs → algorand_python_testing-1.2.0b13/examples}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11/examples → algorand_python_testing-1.2.0b13/examples/auction}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/auction/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/auction/test_contract.py +0 -0
- {algorand_python_testing-1.2.0b11/examples/auction → algorand_python_testing-1.2.0b13/examples/htlc_logicsig}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/htlc_logicsig/signature.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/htlc_logicsig/test_signature.py +0 -0
- {algorand_python_testing-1.2.0b11/examples/htlc_logicsig → algorand_python_testing-1.2.0b13/examples/marketplace}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/marketplace/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/marketplace/test_contract.py +0 -0
- {algorand_python_testing-1.2.0b11/examples/marketplace → algorand_python_testing-1.2.0b13/examples/proof_of_attendance}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/proof_of_attendance/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/proof_of_attendance/test_contract.py +0 -0
- {algorand_python_testing-1.2.0b11/examples/proof_of_attendance → algorand_python_testing-1.2.0b13/examples/scratch_storage}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/scratch_storage/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/scratch_storage/test_contract.py +0 -0
- {algorand_python_testing-1.2.0b11/examples/scratch_storage → algorand_python_testing-1.2.0b13/examples/simple_voting}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/simple_voting/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/simple_voting/test_contract.py +0 -0
- {algorand_python_testing-1.2.0b11/examples/simple_voting → algorand_python_testing-1.2.0b13/examples/zk_whitelist}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/zk_whitelist/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/examples/zk_whitelist/test_contract.py +0 -0
- {algorand_python_testing-1.2.0b11/examples/zk_whitelist → algorand_python_testing-1.2.0b13/scripts}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/scripts/check_stubs_cov.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/scripts/refresh_test_artifacts.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/scripts/validate_examples.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/compiled.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/constants.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context_helpers/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context_helpers/context_storage.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context_helpers/ledger_context.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context_helpers/txn_context.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/decorators/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/decorators/arc4.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/decorators/subroutine.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/enums.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/gtxn.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/itxn.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/itxn_loader.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/account.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/application.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/asset.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/logicsig.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/template_variable.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/txn_fields.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/unsigned_builtins.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/mutable.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/block.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/constants.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/crypto.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/global_values.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/itxn.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/misc.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/pure.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/txn.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/array.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/biguint.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/bytes.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/string.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/protocols.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/py.typed +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/serialize.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/global_map.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/global_state.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/local_map.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/local_state.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/utils.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utilities/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utilities/budget.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utilities/size_of.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utils.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/value_generators/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/value_generators/txn.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/algopy/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/algopy/arc4.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/algopy/gtxn.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/algopy/itxn.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/algopy/op.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/algopy/py.typed +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/algopy_testing/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/src/algopy_testing/py.typed +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/templates/.macros.j2 +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/templates/.release_notes.md.j2 +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/templates/CHANGELOG.md.j2 +0 -0
- {algorand_python_testing-1.2.0b11/scripts → algorand_python_testing-1.2.0b13/tests}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11/tests → algorand_python_testing-1.2.0b13/tests/arc4}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/conftest.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_abi_call.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_address.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_arc4_method_signature.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_bool.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_dynamic_array.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_dynamic_bytes.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_emit.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_encode_decode.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_static_array.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_string.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_struct.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_tuple.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_ufixednxm.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/arc4/test_uintn.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/arc4 → algorand_python_testing-1.2.0b13/tests/artifacts/AVM12}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/Contract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/Contract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV0.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV0.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV1.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV1.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/AVM12 → algorand_python_testing-1.2.0b13/tests/artifacts/Arc4ABIMethod}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/data/SignaturesContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/data/SignaturesContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/data/SignaturesContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/Arc4ABIMethod → algorand_python_testing-1.2.0b13/tests/artifacts/Arc4InnerTxns}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/data/Arc4InnerTxnsContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/data/Arc4InnerTxnsContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/data/Arc4InnerTxnsContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/Arc4InnerTxns → algorand_python_testing-1.2.0b13/tests/artifacts/Arc4PrimitiveOps}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/data/Arc4PrimitiveOpsContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/data/Arc4PrimitiveOpsContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/data/Arc4PrimitiveOpsContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/Arc4PrimitiveOps → algorand_python_testing-1.2.0b13/tests/artifacts/Arrays}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/Contract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/Contract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/Contract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/DynamicArrayInitContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/DynamicArrayInitContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayInitContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayInitContract.arc56.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayInitContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/StaticSizeContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/StaticSizeContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/StaticSizeContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/immutable.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/static_size.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/uint64.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/Arrays → algorand_python_testing-1.2.0b13/tests/artifacts/BoxContract}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/data/BoxContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/data/BoxContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/data/BoxContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/BoxContract → algorand_python_testing-1.2.0b13/tests/artifacts/Contains}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Contains/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Contains/data/MyContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Contains/data/MyContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/Contains → algorand_python_testing-1.2.0b13/tests/artifacts/CreatedAppAsset}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppCall.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppCall.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppCall.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppExpectingEffects.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppExpectingEffects.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppExpectingEffects.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/other.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/CreatedAppAsset → algorand_python_testing-1.2.0b13/tests/artifacts/CryptoOps}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/data/CryptoOpsContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/data/CryptoOpsContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/data/CryptoOpsContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/CryptoOps → algorand_python_testing-1.2.0b13/tests/artifacts/DynamicITxnGroup}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/DynamicItxnGroup.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/DynamicItxnGroup.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/VerifierContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/VerifierContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/verifier.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/DynamicITxnGroup → algorand_python_testing-1.2.0b13/tests/artifacts/GlobalStateValidator}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/data/GlobalStateValidator.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/data/GlobalStateValidator.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/data/GlobalStateValidator.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/GlobalStateValidator → algorand_python_testing-1.2.0b13/tests/artifacts/LogicSignature}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/data/args_complex.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/data/args_complex_no_validation.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/data/args_simple.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/lsig_args_complex.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/lsig_args_simple.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/LogicSignature → algorand_python_testing-1.2.0b13/tests/artifacts/MiscellaneousOps}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/data/MiscellaneousOpsContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/data/MiscellaneousOpsContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/data/MiscellaneousOpsContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/MiscellaneousOps → algorand_python_testing-1.2.0b13/tests/artifacts/PrimitiveOps}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/data/PrimitiveOpsContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/data/PrimitiveOpsContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/data/PrimitiveOpsContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/PrimitiveOps → algorand_python_testing-1.2.0b13/tests/artifacts/StateMutations}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/Contract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/Contract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/Contract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/StateMutations.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/StateMutations.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/StateMutations.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/statemutations.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/StateMutations → algorand_python_testing-1.2.0b13/tests/artifacts/StateOps}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalMapContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalMapContract.arc56.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalMapContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalStateContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalStateContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalStateContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/ITxnOpsContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/ITxnOpsContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/ITxnOpsContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalMapContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalMapContract.arc56.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalMapContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalStateContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalStateContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalStateContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGet.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGet.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGet.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGetContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGetContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGetContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalExContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalExContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalExContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalExContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalExContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalExContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppParamsContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppParamsContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppParamsContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetHoldingContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetHoldingContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetHoldingContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetParamsContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetParamsContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetParamsContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/StateOps → algorand_python_testing-1.2.0b13/tests/artifacts/Tuples}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/data/TuplesContract.approval.teal +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/data/TuplesContract.arc32.json +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/data/TuplesContract.clear.teal +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts/Tuples → algorand_python_testing-1.2.0b13/tests/artifacts}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/artifacts → algorand_python_testing-1.2.0b13/tests/avm12}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/avm12/conftest.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/avm12/test_avm12.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/common.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/conftest.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/avm12 → algorand_python_testing-1.2.0b13/tests/contexts}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/contexts → algorand_python_testing-1.2.0b13/tests/dynamic_itxn_group}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/dynamic_itxn_group/test_dynamic_itxn_group.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/dynamic_itxn_group → algorand_python_testing-1.2.0b13/tests/logic_signature}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/logic_signature/test_lsig_args_complex.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/logic_signature/test_lsig_args_simple.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/logic_signature → algorand_python_testing-1.2.0b13/tests/models}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/models/test_asset.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/models/test_box.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/models/test_box_map.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/models/test_box_ref.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/models/test_contract.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/models/test_uenumerate.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/models/test_urange.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/models → algorand_python_testing-1.2.0b13/tests/primitives}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/primitives/conftest.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/primitives/test_biguint.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/primitives/test_bytes.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/primitives/test_fixed_bytes.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/primitives/test_string.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/primitives/test_uint64.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/primitives → algorand_python_testing-1.2.0b13/tests/state}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/state/conftest.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/state/test_global_map.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/state/test_global_state.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/state/test_local_map.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/state/test_local_state.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/state/test_mutations.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/test_array.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/test_context.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/test_miscellaneous_op.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/test_op.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/util.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/state → algorand_python_testing-1.2.0b13/tests/utilities}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/utilities/conftest.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/utilities/test_log.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/utilities/test_size_of.py +0 -0
- {algorand_python_testing-1.2.0b11/tests/utilities → algorand_python_testing-1.2.0b13/tests/value_generators}/__init__.py +0 -0
- {algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/tests/value_generators/test_avm.py +0 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: "Build Documentation"
|
|
2
|
+
description: "Build Astro Starlight documentation using hatch"
|
|
3
|
+
inputs:
|
|
4
|
+
node-version:
|
|
5
|
+
description: "Node.js version"
|
|
6
|
+
required: false
|
|
7
|
+
default: "22.x"
|
|
8
|
+
upload-pages-artifact:
|
|
9
|
+
description: "Upload docs/dist as a GitHub Pages artifact"
|
|
10
|
+
required: false
|
|
11
|
+
default: "true"
|
|
12
|
+
|
|
13
|
+
runs:
|
|
14
|
+
using: "composite"
|
|
15
|
+
steps:
|
|
16
|
+
- name: Set up Python 3.12
|
|
17
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
18
|
+
with:
|
|
19
|
+
python-version: "3.12"
|
|
20
|
+
cache: "pip"
|
|
21
|
+
|
|
22
|
+
- name: Install hatch
|
|
23
|
+
shell: bash
|
|
24
|
+
run: pip install hatch
|
|
25
|
+
|
|
26
|
+
- name: Setup Node.js
|
|
27
|
+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
|
|
28
|
+
with:
|
|
29
|
+
node-version: ${{ inputs.node-version }}
|
|
30
|
+
|
|
31
|
+
- name: Setup pnpm
|
|
32
|
+
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
|
|
33
|
+
with:
|
|
34
|
+
package_json_file: docs/package.json
|
|
35
|
+
|
|
36
|
+
- name: Install docs dependencies
|
|
37
|
+
shell: bash
|
|
38
|
+
run: pnpm install --frozen-lockfile --dir docs
|
|
39
|
+
|
|
40
|
+
- name: Build docs
|
|
41
|
+
shell: bash
|
|
42
|
+
run: hatch run docs:build
|
|
43
|
+
|
|
44
|
+
- name: Upload Pages artifact
|
|
45
|
+
if: inputs.upload-pages-artifact == 'true'
|
|
46
|
+
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5
|
|
47
|
+
with:
|
|
48
|
+
path: docs/dist
|
{algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.github/workflows/cd.yaml
RENAMED
|
@@ -26,8 +26,7 @@ on:
|
|
|
26
26
|
concurrency: release
|
|
27
27
|
|
|
28
28
|
permissions:
|
|
29
|
-
contents:
|
|
30
|
-
packages: read
|
|
29
|
+
contents: read
|
|
31
30
|
|
|
32
31
|
jobs:
|
|
33
32
|
release:
|
|
@@ -42,16 +41,46 @@ jobs:
|
|
|
42
41
|
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'true' && '--noop' || '' }}
|
|
43
42
|
PRERELEASE: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.prerelease || 'true' }}
|
|
44
43
|
steps:
|
|
45
|
-
- uses: actions/
|
|
44
|
+
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3
|
|
45
|
+
id: app-token
|
|
46
|
+
with:
|
|
47
|
+
app-id: ${{ secrets.BOT_ID }}
|
|
48
|
+
private-key: ${{ secrets.BOT_SK }}
|
|
49
|
+
|
|
50
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
46
51
|
with:
|
|
47
52
|
fetch-depth: 0
|
|
48
|
-
token: ${{
|
|
53
|
+
token: ${{ steps.app-token.outputs.token }}
|
|
54
|
+
|
|
55
|
+
- name: Verify production puyapy and algorand-python dependencies
|
|
56
|
+
if: ${{ env.PRERELEASE == 'false' }}
|
|
57
|
+
run: |
|
|
58
|
+
set -euo pipefail
|
|
59
|
+
deps=$(grep -oE '"(puyapy|algorand-python)[><=!~@ ][^"]*"' pyproject.toml | tr -d '"' || true)
|
|
60
|
+
if [ -z "$deps" ]; then
|
|
61
|
+
echo "ERROR: No puyapy or algorand-python dependency found in pyproject.toml"
|
|
62
|
+
exit 1
|
|
63
|
+
fi
|
|
64
|
+
echo "Found dependencies:"
|
|
65
|
+
echo "$deps"
|
|
66
|
+
echo ""
|
|
67
|
+
failed=0
|
|
68
|
+
while IFS= read -r dep; do
|
|
69
|
+
version=$(echo "$dep" | sed -E 's/^(puyapy|algorand-python)[><=!~@ ]*//')
|
|
70
|
+
if [[ "$version" =~ ^[0-9]+\.?[0-9]*\.?[0-9]*$ ]]; then
|
|
71
|
+
echo "OK: $dep"
|
|
72
|
+
else
|
|
73
|
+
echo "ERROR: '$dep' uses non-production version ('$version')"
|
|
74
|
+
failed=1
|
|
75
|
+
fi
|
|
76
|
+
done <<< "$deps"
|
|
77
|
+
exit $failed
|
|
49
78
|
|
|
50
79
|
- name: Install hatch
|
|
51
80
|
run: pipx install hatch
|
|
52
81
|
|
|
53
82
|
- name: Set up Python 3.12
|
|
54
|
-
uses: actions/setup-python@
|
|
83
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
55
84
|
with:
|
|
56
85
|
python-version: "3.12"
|
|
57
86
|
cache: "pip"
|
|
@@ -77,18 +106,18 @@ jobs:
|
|
|
77
106
|
- name: Python Semantic Release
|
|
78
107
|
id: semantic-release
|
|
79
108
|
if: ${{ github.ref == 'refs/heads/main' }}
|
|
80
|
-
uses: python-semantic-release/python-semantic-release@
|
|
109
|
+
uses: python-semantic-release/python-semantic-release@350c48fcb3ffcdfd2e0a235206bc2ecea6b69df0 # v10.5.3
|
|
81
110
|
with:
|
|
82
|
-
github_token: ${{
|
|
111
|
+
github_token: ${{ steps.app-token.outputs.token }}
|
|
83
112
|
prerelease: ${{ env.PRERELEASE == 'true' }}
|
|
84
113
|
root_options: $DRY_RUN
|
|
85
114
|
|
|
86
115
|
- name: Publish to PyPI
|
|
87
116
|
if: ${{ !inputs.dry_run && steps.semantic-release.outputs.released == 'true' }}
|
|
88
|
-
uses: pypa/gh-action-pypi-publish@
|
|
117
|
+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
|
|
89
118
|
with:
|
|
90
119
|
packages-dir: dist
|
|
91
120
|
|
|
92
|
-
- uses: actions/upload-artifact@
|
|
121
|
+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
|
|
93
122
|
with:
|
|
94
123
|
path: dist
|
{algorand_python_testing-1.2.0b11 → algorand_python_testing-1.2.0b13}/.github/workflows/ci.yaml
RENAMED
|
@@ -6,15 +6,18 @@ on:
|
|
|
6
6
|
schedule:
|
|
7
7
|
- cron: "0 8 * * 1" # Each monday 8 AM UTC
|
|
8
8
|
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
9
12
|
jobs:
|
|
10
13
|
check-python:
|
|
11
14
|
runs-on: "ubuntu-latest"
|
|
12
15
|
steps:
|
|
13
16
|
- name: Checkout source code
|
|
14
|
-
uses: actions/checkout@
|
|
17
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
15
18
|
|
|
16
19
|
- name: Set up Python 3.12
|
|
17
|
-
uses: actions/setup-python@
|
|
20
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
18
21
|
with:
|
|
19
22
|
python-version: "3.12"
|
|
20
23
|
cache: "pip"
|
|
@@ -22,6 +25,19 @@ jobs:
|
|
|
22
25
|
- name: Install hatch
|
|
23
26
|
run: pip install hatch
|
|
24
27
|
|
|
28
|
+
- name: Setup Node.js
|
|
29
|
+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
|
|
30
|
+
with:
|
|
31
|
+
node-version: "22.x"
|
|
32
|
+
|
|
33
|
+
- name: Setup pnpm
|
|
34
|
+
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
|
|
35
|
+
with:
|
|
36
|
+
package_json_file: docs/package.json
|
|
37
|
+
|
|
38
|
+
- name: Install docs dependencies
|
|
39
|
+
run: pnpm install --frozen-lockfile --dir docs
|
|
40
|
+
|
|
25
41
|
- name: Start LocalNet
|
|
26
42
|
run: pipx install algokit && algokit localnet start
|
|
27
43
|
|
|
@@ -37,8 +53,11 @@ jobs:
|
|
|
37
53
|
- name: Check wheels can be built
|
|
38
54
|
run: hatch build
|
|
39
55
|
|
|
56
|
+
- name: Build docs
|
|
57
|
+
run: hatch run docs:build
|
|
58
|
+
|
|
40
59
|
- name: Check doctests
|
|
41
|
-
run: hatch run docs
|
|
60
|
+
run: hatch run test:docs
|
|
42
61
|
|
|
43
62
|
test-python-matrix:
|
|
44
63
|
runs-on: "ubuntu-latest"
|
|
@@ -47,10 +66,10 @@ jobs:
|
|
|
47
66
|
python-version: ["3.12", "3.13"]
|
|
48
67
|
steps:
|
|
49
68
|
- name: Checkout source code
|
|
50
|
-
uses: actions/checkout@
|
|
69
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
51
70
|
|
|
52
71
|
- name: Set up Python ${{ matrix.python-version }}
|
|
53
|
-
uses: actions/setup-python@
|
|
72
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
54
73
|
with:
|
|
55
74
|
python-version: ${{ matrix.python-version }}
|
|
56
75
|
cache: "pip"
|
|
@@ -68,7 +87,7 @@ jobs:
|
|
|
68
87
|
run: hatch run examples.py${{ matrix.python-version }}:tests
|
|
69
88
|
|
|
70
89
|
- name: Upload coverage artifacts
|
|
71
|
-
uses: actions/upload-artifact@
|
|
90
|
+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
|
|
72
91
|
if: ${{ matrix.python-version == '3.13' }}
|
|
73
92
|
with:
|
|
74
93
|
name: coverage-reports
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: Publish docs to GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_call:
|
|
5
|
+
workflow_dispatch:
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build-and-publish-docs:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
permissions:
|
|
14
|
+
contents: read
|
|
15
|
+
pages: write
|
|
16
|
+
id-token: write
|
|
17
|
+
steps:
|
|
18
|
+
- name: Checkout source code
|
|
19
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
20
|
+
|
|
21
|
+
- name: Build and upload docs artifact
|
|
22
|
+
uses: ./.github/actions/build-documentation
|
|
23
|
+
with:
|
|
24
|
+
node-version: 22.x
|
|
25
|
+
upload-pages-artifact: 'true'
|
|
26
|
+
|
|
27
|
+
- name: Deploy to GitHub Pages
|
|
28
|
+
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: Publish DevPortal Docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches: [main]
|
|
7
|
+
tags: ['v*']
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
publish-docs:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
17
|
+
|
|
18
|
+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
|
|
19
|
+
with:
|
|
20
|
+
node-version: 24.x
|
|
21
|
+
|
|
22
|
+
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
|
|
23
|
+
with:
|
|
24
|
+
package_json_file: docs/package.json
|
|
25
|
+
|
|
26
|
+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
27
|
+
with:
|
|
28
|
+
python-version: '3.12'
|
|
29
|
+
cache: pip
|
|
30
|
+
|
|
31
|
+
- name: Install hatch
|
|
32
|
+
run: pip install hatch
|
|
33
|
+
|
|
34
|
+
- name: Generate API docs
|
|
35
|
+
run: hatch run docs:api
|
|
36
|
+
|
|
37
|
+
- name: Publish DevPortal Docs
|
|
38
|
+
uses: algorandfoundation/devportal/.github/actions/publish-devportal-docs@release/ak-v4
|
|
39
|
+
with:
|
|
40
|
+
docs-dir: docs
|
|
@@ -1,4 +1,38 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
|
+
## v1.2.0-beta.13 (2026-05-28)
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* bootstrap starlight docs workspace and shared styling ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
7
|
+
|
|
8
|
+
* replace sphinx build flow with api bridge and legacy redirects ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
|
|
12
|
+
* starlight docs ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
13
|
+
|
|
14
|
+
* migrate top-level documentation pages to starlight ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
15
|
+
|
|
16
|
+
* migrate testing guide pages and assets to starlight ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
17
|
+
|
|
18
|
+
* restructure starlight docs with new concepts, quick-start and api build improvements ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
19
|
+
|
|
20
|
+
* replace process.stdout with console.log in generate-examples-mdx script ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
21
|
+
|
|
22
|
+
* replace process.stdout with console.log in generate-legacy-redirects.mjs script ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
23
|
+
|
|
24
|
+
* restore mermaid diagrams and render them using astro-mermaid ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
25
|
+
|
|
26
|
+
* restore doctest with pytest-markdown-docs and wirte into ci ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
27
|
+
|
|
28
|
+
* add parentheses to @pytest.fixture decorator in conftest ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
|
|
29
|
+
|
|
30
|
+
## v1.2.0-beta.12 (2026-05-13)
|
|
31
|
+
|
|
32
|
+
### Features
|
|
33
|
+
|
|
34
|
+
* check if depending on production release of puyapy, fail prod release otherwise ([`0632a78`](https://github.com/algorandfoundation/algorand-python-testing/commit/0632a78b5c49c8459bcba41bc58f25feac6ad613))
|
|
35
|
+
|
|
2
36
|
## v1.2.0-beta.11 (2026-04-14)
|
|
3
37
|
|
|
4
38
|
## v1.2.0-beta.10 (2026-04-14)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: algorand-python-testing
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.0b13
|
|
4
4
|
Summary: Algorand Python testing library
|
|
5
5
|
Project-URL: Documentation, https://github.com/algorandfoundation/puya/tree/main/algopy_testing#README.md
|
|
6
6
|
Project-URL: Issues, https://github.com/algorandfoundation/puya/issues
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Classifier: Topic :: Software Development :: Testing
|
|
17
17
|
Requires-Python: >=3.12
|
|
18
|
-
Requires-Dist: algokit-utils>=5.0.
|
|
18
|
+
Requires-Dist: algokit-utils>=5.0.0b3
|
|
19
19
|
Requires-Dist: algorand-python>=3
|
|
20
20
|
Requires-Dist: coincurve>=19.0.1
|
|
21
21
|
Requires-Dist: ecdsa>=0.17.0
|