Skip to content

Commit bb8aa27

Browse files
committed
Rakefile: fix :test/:test_fips => :compile dependency
Restore the dependency accidentally removed by commit 77133c6.
1 parent dbfcc44 commit bb8aa27

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)