From d7fc49a32c6057a1e346b54f1a78e2b164dc9cdb Mon Sep 17 00:00:00 2001 From: Artur Trzop Date: Sun, 12 Jan 2020 15:32:27 +0100 Subject: [PATCH 1/3] Add note how to use simplecov with knapsack_pro gem Update section Notes on specific frameworks and test utilities --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 3ca711c5..9a74a093 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,17 @@ to use SimpleCov with them. Here's an overview of the known ones: #185 + + + knapsack_pro + + + To make SimpleCov work with Knapsack Pro Queue Mode to split tests in parallel on CI jobs you need to [provide CI node index number to the `SimpleCov.command_name`](https://knapsackpro.com/faq/question/how-to-use-simplecov-in-queue-mode). + + + Tip + + RubyMine From 6ebcfd0acec41d66049927176b0d7d6c0c307131 Mon Sep 17 00:00:00 2001 From: Artur Trzop Date: Sun, 12 Jan 2020 15:34:03 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a74a093..fe7c0178 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ to use SimpleCov with them. Here's an overview of the known ones: knapsack_pro - To make SimpleCov work with Knapsack Pro Queue Mode to split tests in parallel on CI jobs you need to [provide CI node index number to the `SimpleCov.command_name`](https://knapsackpro.com/faq/question/how-to-use-simplecov-in-queue-mode). + To make SimpleCov work with Knapsack Pro Queue Mode to split tests in parallel on CI jobs you need to provide CI node index number to the SimpleCov.command_name. Tip From 10a5bea07eca3e99ead0fa98350481f1ae608c2b Mon Sep 17 00:00:00 2001 From: Artur Trzop Date: Sun, 12 Jan 2020 15:35:11 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe7c0178..c422010a 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ to use SimpleCov with them. Here's an overview of the known ones: knapsack_pro - To make SimpleCov work with Knapsack Pro Queue Mode to split tests in parallel on CI jobs you need to provide CI node index number to the SimpleCov.command_name. + To make SimpleCov work with Knapsack Pro Queue Mode to split tests in parallel on CI jobs you need to provide CI node index number to the SimpleCov.command_name in KnapsackPro::Hooks::Queue.before_queue hook. Tip