ci: Remove obsolete dcr up -w from import test (#3544)

I _think_ we can get away with this but let's see what the CI thinks. If it passes, it should save us another minuter or two.
This commit is contained in:
Burak Yigit Kaya 2025-01-17 20:29:23 +00:00 committed by GitHub
parent 3984a87611
commit e1870f8ecb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 5 deletions

View File

@ -66,11 +66,6 @@ def test_02_import(setup_backup_restore_env_variables):
capture_output=True,
)
subprocess.run(
["docker", "compose", "--ansi", "never", "up", "--wait"],
check=True,
capture_output=True,
)
sentry_admin_sh = os.path.join(os.getcwd(), "sentry-admin.sh")
subprocess.run(
[

View File

@ -23,6 +23,7 @@ on the host filesystem. Commands that write files should write them to the '/sen
# Actual invocation that runs the command in the container.
invocation() {
$dc up postgres --wait
$dc up redis --wait
$dcr --no-deps -v "$VOLUME_MAPPING" -T -e SENTRY_LOG_LEVEL=CRITICAL web "$@" 2>&1
}