Revert "DEV: Run core system tests by default in docker test image (#23517)" (#23525)

This reverts commit 40acb9a111.

Reverting because test runs are breaking due to this change
This commit is contained in:
Alan Guo Xiang Tan 2023-09-12 09:45:49 +08:00 committed by GitHub
parent b3bef96744
commit 07c29f3066
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -224,16 +224,17 @@ task "docker:test" do
params << "--seed #{ENV["RSPEC_SEED"]}" if ENV["RSPEC_SEED"]
end
@good &&= run_or_fail("bin/ember-cli --build")
if ENV["USE_TURBO"]
@good &&=
run_or_fail(
"bundle exec ./bin/turbo_rspec --enable-system-tests --verbose #{params.join(" ")}".strip,
)
run_or_fail("bundle exec ./bin/turbo_rspec --verbose #{params.join(" ")}".strip)
else
@good &&= run_or_fail("bundle exec rspec #{params.join(" ")}".strip)
end
if ENV["RUN_SYSTEM_TESTS"]
@good &&= run_or_fail("bin/ember-cli --build")
@good &&= run_or_fail("timeout --verbose 1800 bundle exec rspec spec/system")
end
end
unless ENV["SKIP_PLUGINS"]