Giter VIP home page Giter VIP logo

Comments (2)

ArturT avatar ArturT commented on July 21, 2024

It looks like rspec has a memory leak when doing multiple runs within the same process. If Iā€™m not mistaken, I think is how knapsack pro operates.

Yes, we call ::RSpec::Core::Runner for each batch of tests fetched from Queue API.

In past, we noticed that if you were to use KNAPSACK_PRO_RSPEC_SPLIT_BY_TEST_EXAMPLES=true and run too many RSpec test cases in queue mode it could lead to more memory consumption so that's why we try to run a minimal number of test cases when you use the RSpec split by test examples feature.

Along the same lines, it would be better if knapsack pro could write custom runner that queries and adds tests on the fly to a single test run. This would make the output more seamless and address the memory issue, if it were the case.

Do you have an idea how this could be done other than calling ::RSpec::Core::Runner?

Here is how it's done for Queue Mode now.

After each batch of tests fetched from Queue API we executed the tests with ::RSpec::Core::Runner. After that we clean up some stuff with the rspec_clear_examples method.
It cleans up a few things:

You could use after_subset_queue to run a custom code that could do more cleanup as a next step. Maybe we could put there some code from the PR.

KnapsackPro::Hooks::Queue.after_subset_queue do |queue_id, subset_queue_id|
  puts 'after_subset_queue - run after the previous subset of tests'
end

The after_subset_queue hook is called after the rspec_clear_examples.

KnapsackPro::Hooks::Queue.call_after_subset_queue

from knapsack_pro-ruby.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.