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

Add custom env struct to store env at init #1025

Merged
merged 1 commit into from
Mar 31, 2022

Commits on Mar 28, 2022

  1. Add custom env struct to store env at init

    This allow to no longer ignore some tests (marked previously as FIXME)
    by storing the env at the start of the program (Or creating a custom env
    for test purpose)
    This centralize almost alls calls to std::env inside one wrapper
    
    Add a test profile to increase speed for testing (5min -> 20sec on my
    machine)
    
    clean a few code style like this:
    ```
    if Some(value) = ...
        if value
    ```
    to
    ```
    if Some(true) = ...
    ```
    wescande committed Mar 28, 2022
    Configuration menu
    Copy the full SHA
    3515d55 View commit details
    Browse the repository at this point in the history