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 pytest commandline flags being parsed by Beeref #117

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

Commits on Jun 9, 2024

  1. Fix pytest commandline flags being parsed by Beeref

    For example, running "pytest -l" will error out as Beeref would try to
    parse "-l" as a log level flag. Now we no longer try to blindly parse
    flags when including the Beeref commandline parser.
    DarkDefender committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    60d79d4 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Fix command line args object not being the correct one

    In beeref/selection.py and beeref/view.py the commandline arg parse
    object would be created on import.
    
    Previously this would lead to the arg parse object being out of date
    when checking it.
    
    Now we don't recreate the arg parse helper object and instead make sure
    that it is static.
    DarkDefender committed Sep 26, 2024
    Configuration menu
    Copy the full SHA
    3ba69d1 View commit details
    Browse the repository at this point in the history