Skip to content

Commit

Permalink
Modify rake test to skip stub building during execution
Browse files Browse the repository at this point in the history
Updated the rake test command configuration to prevent the building of stubs when the tests are run. This change streamlines the testing process by reducing unnecessary build operations.
  • Loading branch information
shinokaro committed Aug 11, 2024
1 parent 201f51a commit e8395bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
=== 1.3.17
- Modified `rake test` to no longer build stubs during test execution. Use `rake build_stub` when stub generation is necessary.

=== 1.3.16
- Support for Ruby 3.0 and above. Drop ruby 2.6 and 2.7 support.
- At startup, OCRAN no longer automatically removes directories that were previously deployed but couldn't be deleted. This change has been made to enhance security by preventing processes other than the startup process from manipulating temporary files created by them.
Expand Down
2 changes: 0 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ file "share/ocran/stub.exe" => :build_stub
file "share/ocran/stubw.exe" => :build_stub
file "share/ocran/edicon.exe" => :build_stub

task :test => :build_stub

task :clean do
rm_f Dir["{bin,samples}/*.exe"]
rm_f Dir["share/ocran/{stub,stubw,edicon}.exe"]
Expand Down

0 comments on commit e8395bd

Please sign in to comment.