Skip to content

Commit

Permalink
rebuild plugin and caches on debug
Browse files Browse the repository at this point in the history
  • Loading branch information
turikhay committed Jan 1, 2024
1 parent 33d59f4 commit 3c02f9e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests_e2e/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,9 @@ def save(data):
test_env_dir = PARENT_DIR / "test_env" / test_name
makedirs(test_env_dir, exist_ok=True)

if debug_level:
gradle_build()

copy_server_files()
copy_proxy_files()

Expand Down Expand Up @@ -400,7 +403,8 @@ def save(data):
if action == "build":
exit_code = docker([
*compose,
'build'
'build',
'--no-cache',
]).wait()
exit(exit_code)

Expand All @@ -409,6 +413,7 @@ def save(data):
'up',
'--force-recreate',
'--build',
*(['-V'] if debug_level else []),
*(['--detach'] if auto else []),
])

Expand Down

0 comments on commit 3c02f9e

Please sign in to comment.