Skip to content

Commit 6956a7b

Browse files
authored
Merge pull request #911 from rhenium/ky/update-tests-ci-20250711-fixup
Rakefile: fix :test/:test_fips => :compile dependency
2 parents 54d26ed + bb8aa27 commit 6956a7b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ rescue LoadError
1010
"install testing dependency gems."
1111
end
1212

13+
task :test => :compile
1314
Rake::TestTask.new do |t|
1415
t.test_files = FileList["test/**/test_*.rb"]
1516
t.warning = true
1617
end
1718

1819
desc 'Run tests for fips'
19-
task :test_fips do
20+
task :test_fips => :compile do
2021
ENV['TEST_RUBY_OPENSSL_FIPS_ENABLED'] = 'true'
2122
Rake::Task['test_fips_internal'].invoke
2223
end

0 commit comments

Comments
 (0)