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

Drop # type: ignore comments for @hookimpl #95

Merged

Commits on Sep 25, 2023

  1. Drop # type: ignore comments for @hookimpl

    These no longer trigger a warning with the current versions of mypy,
    pytest, and pluggy. It looks as though these calls have been typed since
    pluggy 1.2.0, which was released 3 months ago.
    
    Signed-off-by: Matt Wozniski <[email protected]>
    godlygeek committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    47ed255 View commit details
    Browse the repository at this point in the history
  2. Ensure linting is run on a schedule

    Previously only builds and tests were run on a schedule, not linting and
    docs tests, which let the main branch begin failing to lint without us
    noticing.
    
    Signed-off-by: Matt Wozniski <[email protected]>
    godlygeek committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    1771b9e View commit details
    Browse the repository at this point in the history
  3. tests: Ignore non-valloc stacks in --stacks test

    This fixes test flakiness caused by allocations made by the
    interpreter's eval loop itself.
    
    Signed-off-by: Matt Wozniski <[email protected]>
    godlygeek committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    e137fa2 View commit details
    Browse the repository at this point in the history
  4. tests: Fix another flaky test

    The allocation sizes performed by this test are too low, and so
    allocations performed by the interpreter itself could wind up being
    larger and skewing the test output. Allocate more memory to drown out
    the noise.
    
    Signed-off-by: Matt Wozniski <[email protected]>
    godlygeek committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    511e176 View commit details
    Browse the repository at this point in the history