Skip to content

Commit

Permalink
chore: bumping prerelease version of algorand-python-testing to use l…
Browse files Browse the repository at this point in the history
…atest
  • Loading branch information
aorumbayev committed Aug 14, 2024
1 parent 163a811 commit 16d2b90
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
algokit-client-generator = "^1.1.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:

def test_hello(context: AlgopyTestContext) -> None:
# Arrange
dummy_input = context.any_string()
dummy_input = context.any.string(length=10)
contract = HelloWorld()

# Act
Expand Down
2 changes: 1 addition & 1 deletion examples/production_python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
algokit-client-generator = "^1.1.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/production_python/tests/hello_world_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:

def test_hello(context: AlgopyTestContext) -> None:
# Arrange
dummy_input = context.any_string()
dummy_input = context.any.string(length=10)
contract = HelloWorld()

# Act
Expand Down
2 changes: 1 addition & 1 deletion template_content/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
{% if deployment_language == 'python' -%}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:

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

# Act
Expand Down

0 comments on commit 16d2b90

Please sign in to comment.