Skip to content

Commit

Permalink
4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
icppWorld committed Jul 17, 2024
1 parent 0b3499e commit 34169ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/all_canister_deploy_local_pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def main() -> int:
run_dfx_cmd("deploy", cwd=canister_path)

typer.echo(f"--\nRun pytest on {test_api_path}")
run_shell_cmd(f"pytest --network=local {test_api_path}", cwd=ROOT_PATH)
run_shell_cmd(f"pytest -vv --network=local {test_api_path}", cwd=ROOT_PATH)

typer.echo("--\nStop the local network")
run_dfx_cmd("stop")
Expand Down Expand Up @@ -73,7 +73,7 @@ def main() -> int:
run_dfx_cmd("deploy", cwd=canister_path)

typer.echo(f"--\nRun pytest on {test_api_path}")
run_shell_cmd(f"pytest --network=local {test_api_path}", cwd=ROOT_PATH)
run_shell_cmd(f"pytest -vv --network=local {test_api_path}", cwd=ROOT_PATH)

typer.echo("--\nStop the local network")
run_dfx_cmd("stop")
Expand Down
2 changes: 1 addition & 1 deletion src/icpp/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
https://packaging.python.org/guides/single-sourcing-package-version/
"""

__version__ = "4.0.0rc1"
__version__ = "4.0.0"

0 comments on commit 34169ca

Please sign in to comment.