Skip to content

Commit 766dabd

Browse files
authored
chore: bumping prerelease version of algorand-python-testing to use latest (#39)
* chore: bumping prerelease version of algorand-python-testing to use latest * chore: regen artifacts
1 parent 163a811 commit 766dabd

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

examples/generators/production_python_smart_contract_python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^1.0.0"
13-
algorand-python-testing = "^0.2.1"
13+
algorand-python-testing = "^0.3.0b1"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"

examples/generators/production_python_smart_contract_python/tests/hello_world_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:
1515

1616
def test_hello(context: AlgopyTestContext) -> None:
1717
# Arrange
18-
dummy_input = context.any_string()
18+
dummy_input = context.any.string(length=10)
1919
contract = HelloWorld()
2020

2121
# Act

examples/generators/production_python_smart_contract_typescript/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^1.0.0"
13-
algorand-python-testing = "^0.2.1"
13+
algorand-python-testing = "^0.3.0b1"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
black = {extras = ["d"], version = "*"}

examples/generators/starter_python_smart_contract_python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^1.0.0"
13-
algorand-python-testing = "^0.2.1"
13+
algorand-python-testing = "^0.3.0b1"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"

examples/generators/starter_python_smart_contract_typescript/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^1.0.0"
13-
algorand-python-testing = "^0.2.1"
13+
algorand-python-testing = "^0.3.0b1"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
puyapy = "*"

examples/production_python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^1.0.0"
13-
algorand-python-testing = "^0.2.1"
13+
algorand-python-testing = "^0.3.0b1"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"

examples/production_python/tests/hello_world_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:
1515

1616
def test_hello(context: AlgopyTestContext) -> None:
1717
# Arrange
18-
dummy_input = context.any_string()
18+
dummy_input = context.any.string(length=10)
1919
contract = HelloWorld()
2020

2121
# Act

examples/starter_python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^1.0.0"
13-
algorand-python-testing = "^0.2.1"
13+
algorand-python-testing = "^0.3.0b1"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"

template_content/pyproject.toml.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^1.0.0"
13-
algorand-python-testing = "^0.2.1"
13+
algorand-python-testing = "^0.3.0b1"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
{% if deployment_language == 'python' -%}

template_content/{% if use_python_pytest %}tests{% endif %}/{% if use_python_pytest %}{{ contract_name }}_test.py{% endif %}.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:
1515

1616
def test_hello(context: AlgopyTestContext) -> None:
1717
# Arrange
18-
dummy_input = context.any_string()
18+
dummy_input = context.any.string(length=10)
1919
contract = {{ contract_name.split('_')|map('capitalize')|join }}()
2020

2121
# Act

0 commit comments

Comments
 (0)