Skip to content

Commit

Permalink
test: force
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed May 9, 2024
1 parent e7321e5 commit 727495b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ def runner():


def test_compile_using_cli(ape_cli, runner):
result = runner.invoke(ape_cli, ["compile"], catch_exceptions=False)
result = runner.invoke(ape_cli, ("compile", "--force"), catch_exceptions=False)
assert result.exit_code == 0
assert "CompilesOnce" in result.output
result = runner.invoke(ape_cli, ["compile"], catch_exceptions=False)
result = runner.invoke(ape_cli, ("compile",), catch_exceptions=False)

# Already compiled so does not compile again.
assert "CompilesOnce" not in result.output
Expand Down

0 comments on commit 727495b

Please sign in to comment.