Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: coveragepy/coveragepy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: df3f2bf
Choose a base ref
...
head repository: coveragepy/coveragepy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c5cda3a
Choose a head ref
  • 12 commits
  • 33 files changed
  • 1 contributor

Commits on Dec 18, 2022

  1. docs: bump version

    nedbat committed Dec 18, 2022
    Configuration menu
    Copy the full SHA
    c0119d9 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2022

  1. test: tox-gh-actions says to do it like this

    ```
    Warning: WARNING: PendingDeprecationWarning
    Support of old-style PyPy config keys will be removed in tox-gh-actions v3.
    Please use "pypy-2" and "pypy-3" instead of "pypy2" and "pypy3".
    
    Example of tox.ini:
    [gh-actions]
    python =
        pypy-2: pypy2
        pypy-3: pypy3
        # The followings won't work with tox-gh-actions v3
        # pypy2: pypy2
        # pypy3: pypy3
    ```
    nedbat committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    6e04e4f View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2022

  1. Configuration menu
    Copy the full SHA
    5c5caa2 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2022

  1. test: don't run tests on Windows PyPy-3.9

    It's always failing with:
    
    ```
    ---------------------------- Captured stdout setup ----------------------------
      Processing c:\users\runneradmin\appdata\local\temp\pytest-of-runneradmin\pytest-0\popen-gw1\venv_world0\third_pkg
        Preparing metadata (setup.py): started
        Preparing metadata (setup.py): finished with status 'done'
      Processing d:\a\coveragepy\coveragepy
        Installing build dependencies: started
        Installing build dependencies: finished with status 'done'
        Getting requirements to build wheel: started
        Getting requirements to build wheel: finished with status 'error'
        error: subprocess-exited-with-error
    
        × Getting requirements to build wheel did not run successfully.
        │ exit code: 3221226505
        ╰─> [10 lines of output]
            running egg_info
            writing coverage.egg-info\PKG-INFO
            writing dependency_links to coverage.egg-info\dependency_links.txt
            writing entry points to coverage.egg-info\entry_points.txt
            writing requirements to coverage.egg-info\requires.txt
            writing top-level names to coverage.egg-info\top_level.txt
            reading manifest file 'coverage.egg-info\SOURCES.txt'
            reading manifest template 'MANIFEST.in'
            no previously-included directories found matching 'doc\_build'
            no previously-included directories found matching 'doc\_spell'
            [end of output]
    
        note: This error originates from a subprocess, and is likely not a problem with pip.
      error: subprocess-exited-with-error
    ```
    
    3221226505 is:
    
    ```
    <Yhg1s> nedbat: it was killed with SIGKILL. (exit code 3221226505 is -1073740791, which is 'killed with signal 9')
    <Yhg1s> (according to os.WIFSIGNALED() and os.WTERMSIG())
    ```
    nedbat committed Dec 21, 2022
    Configuration menu
    Copy the full SHA
    873b059 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2022

  1. chore: make upgrade

    nedbat committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    31513b4 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2022

  1. Configuration menu
    Copy the full SHA
    152cdc7 View commit details
    Browse the repository at this point in the history
  2. fix: certain strange characters caused reporting to fail. #1512

    It turns out that str.splitlines() will break text on some characters
    that file.readline() does not!  Use readline() to read source files the
    same way that Python does.
    nedbat committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    35e249f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d327a70 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    da1b282 View commit details
    Browse the repository at this point in the history
  5. docs: prep for 7.0.1

    nedbat committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    8c77758 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9d4226e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c5cda3a View commit details
    Browse the repository at this point in the history
Loading