Skip to content

Commit

Permalink
fixed actions with new "unregister" implementation(3)
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Piskun <[email protected]>
  • Loading branch information
bigcat88 committed Nov 26, 2023
1 parent db6a9a9 commit aa342df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_occ_commands_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ def deploy_register():
assert r.returncode
# test "--force" option
deploy_register()
run("docker container stop nc_app_skeleton".split(), check=True)
run("docker container rm --force nc_app_skeleton".split(), check=True)
r = run("php occ app_api:app:unregister skeleton".split())
assert r.returncode
r = run("php occ app_api:app:unregister skeleton --silent".split())
assert r.returncode
run("php occ app_api:app:unregister skeleton --force".split(), check=True)

0 comments on commit aa342df

Please sign in to comment.