Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SimpleCov integration #933

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Fix SimpleCov integration #933

wants to merge 4 commits into from

Commits on Jun 2, 2024

  1. Fix simplecov setup for cucumber features

    The way Aruba's environment manipulation currently works, when running
    code or child processes in a nested environment, the priority of how the
    environment variables are set is like this:
    
      1. Variables set with Aruba's environment manipulation methods
      2. Variables set in ENV when Aruba's environment manipulation object
         (aruba.environment) was initialized
      3. Variables set in ENV after aruba.environment was initialized
    
    I'm not convinced the order of 2. and 3. is the right order, but due to
    this order, setting RUBYOPT directly on ENV had no effect because there
    was already a variable RUBYOPT set at the point of initializion of
    aruba.environment.
    
    By using the environment manipulation methods, the values set here will
    take first priority regardless of whether the variables were set
    earlier.
    mvz committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    20caa5b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2cc908 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9c98d9e View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2024

  1. WIP: Note slowdown

    mvz committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    fc31091 View commit details
    Browse the repository at this point in the history