From 0b53bd33ad8e4a723ab8e3c8c1ccc8d414de0ef0 Mon Sep 17 00:00:00 2001 From: Daniel Berger <78529+djberg96@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:42:56 -0700 Subject: [PATCH] Automatically cleanup lock file after tests. --- Rakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Rakefile b/Rakefile index 5e05901..33b6604 100644 --- a/Rakefile +++ b/Rakefile @@ -94,4 +94,9 @@ namespace :gem do end end +# Clean up afterwards +Rake::Task[:spec].enhance do + Rake::Task[:clean].invoke +end + task :default => :spec