mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Exclude encryption performance tests from isolated runs
Encryption performance tests were meant to be excluded from the builds, however they were still being executed when running `isolated:` tests for active record adapters. See https://buildkite.com/rails/rails/builds/76249#e7605d50-87be-445e-a9ae-a5761c996597/1512-1531
This commit is contained in:
parent
af27a25f19
commit
1fff866dd1
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ end
|
||||||
test_options = ENV["TESTOPTS"].to_s.split(/[\s]+/)
|
test_options = ENV["TESTOPTS"].to_s.split(/[\s]+/)
|
||||||
|
|
||||||
test_files = (Dir["test/cases/**/*_test.rb"].reject {
|
test_files = (Dir["test/cases/**/*_test.rb"].reject {
|
||||||
|x| x.include?("/adapters/")
|
|x| x.include?("/adapters/") || x.include?("/encryption/performance")
|
||||||
} + Dir["test/cases/adapters/#{adapter_short}/**/*_test.rb"]).sort
|
} + Dir["test/cases/adapters/#{adapter_short}/**/*_test.rb"]).sort
|
||||||
|
|
||||||
if ENV["BUILDKITE_PARALLEL_JOB_COUNT"]
|
if ENV["BUILDKITE_PARALLEL_JOB_COUNT"]
|
||||||
|
|
Loading…
Reference in a new issue