diff --git a/scripts/all_canister_deploy_local_pytest.py b/scripts/all_canister_deploy_local_pytest.py index bfbc123..464c434 100644 --- a/scripts/all_canister_deploy_local_pytest.py +++ b/scripts/all_canister_deploy_local_pytest.py @@ -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") @@ -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") diff --git a/src/icpp/version.py b/src/icpp/version.py index c6d8116..697300d 100644 --- a/src/icpp/version.py +++ b/src/icpp/version.py @@ -10,4 +10,4 @@ https://packaging.python.org/guides/single-sourcing-package-version/ """ -__version__ = "4.0.0rc1" +__version__ = "4.0.0"