Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | test: remove obsolete skips | Ned Batchelder | 2022-12-24 | 2 | -28/+0 | |
| | ||||||
* | docs: bump version | Ned Batchelder | 2022-12-23 | 2 | -2/+8 | |
| | ||||||
* | docs: releases take a little bit longer now7.0.1 | Ned Batchelder | 2022-12-23 | 1 | -2/+5 | |
| | ||||||
* | docs: latest sample HTML report | Ned Batchelder | 2022-12-23 | 11 | -41/+41 | |
| | ||||||
* | docs: prep for 7.0.1 | Ned Batchelder | 2022-12-23 | 3 | -7/+9 | |
| | ||||||
* | fix: also look into .whl files for source | Ned Batchelder | 2022-12-23 | 3 | -2/+9 | |
| | ||||||
* | fix: more information when mapping rules aren't working right. | Ned Batchelder | 2022-12-23 | 1 | -0/+4 | |
| | ||||||
* | fix: certain strange characters caused reporting to fail. #1512 | Ned Batchelder | 2022-12-23 | 3 | -1/+38 | |
| | | | | | | 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. | |||||
* | fix: don't forbid plus signs in file names. #1513 | Ned Batchelder | 2022-12-23 | 3 | -3/+13 | |
| | ||||||
* | chore: make upgrade | Ned Batchelder | 2022-12-21 | 9 | -98/+90 | |
| | ||||||
* | test: don't run tests on Windows PyPy-3.9 | Ned Batchelder | 2022-12-21 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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()) ``` | |||||
* | build: PyPy wheel now installs on 3.7, 3.8, and 3.9. #1510 | Ned Batchelder | 2022-12-20 | 4 | -7/+9 | |
| | ||||||
* | test: tox-gh-actions says to do it like this | Ned Batchelder | 2022-12-18 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | ``` 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 ``` | |||||
* | docs: bump version | Ned Batchelder | 2022-12-18 | 2 | -3/+9 | |
| | ||||||
* | docs: latest sample HTML report7.0.0 | Ned Batchelder | 2022-12-18 | 11 | -41/+41 | |
| | ||||||
* | docs: prep for 7.0.0 | Ned Batchelder | 2022-12-18 | 6 | -8/+11 | |
| | ||||||
* | chore: make upgrade | Ned Batchelder | 2022-12-18 | 7 | -51/+51 | |
| | ||||||
* | docs: #1024 was also fixed | Ned Batchelder | 2022-12-11 | 1 | -1/+2 | |
| | ||||||
* | chore: make upgrade | Ned Batchelder | 2022-12-07 | 7 | -63/+100 | |
| | ||||||
* | build: use tox.pip to ensure all tox pins are the same | Ned Batchelder | 2022-12-07 | 1 | -1/+1 | |
| | ||||||
* | test: this was wrong? | Ned Batchelder | 2022-12-07 | 1 | -1/+1 | |
| | ||||||
* | chore: make upgrade | Ned Batchelder | 2022-12-07 | 6 | -69/+69 | |
| | | | | | | | | | | | | | | | | | | | -check-manifest==0.48 \ +check-manifest==0.49 \ -cibuildwheel==2.11.2 \ +cibuildwheel==2.11.3 \ -filelock==3.8.0 \ +filelock==3.8.2 \ -hypothesis==6.59.0 \ +hypothesis==6.60.0 \ -importlib-resources==5.10.0 \ +importlib-resources==5.10.1 \ -platformdirs==2.5.4 \ +platformdirs==2.6.0 \ -pylint==2.15.7 \ +pylint==2.15.8 \ -virtualenv==20.17.0 \ +virtualenv==20.17.1 \ | |||||
* | build: a target to summarize `make upgrade` | Ned Batchelder | 2022-12-07 | 1 | -0/+2 | |
| | ||||||
* | build: this link could be useful in the future | Ned Batchelder | 2022-12-06 | 1 | -0/+1 | |
| | ||||||
* | test: use an ubuntu that has all the deadsnakes nightlies. | Ned Batchelder | 2022-12-06 | 1 | -1/+5 | |
| | ||||||
* | test: use deadsnakes v3.0.0 | Ned Batchelder | 2022-12-05 | 1 | -2/+1 | |
| | ||||||
* | fix(docs): pre-release urls were wrong in the package description | Ned Batchelder | 2022-12-03 | 1 | -1/+10 | |
| | ||||||
* | docs: opvars / unopvars | Ned Batchelder | 2022-12-03 | 1 | -1/+3 | |
| | ||||||
* | chore: bump version | Ned Batchelder | 2022-12-03 | 2 | -2/+8 | |
| | ||||||
* | build: more-correct version bumping | Ned Batchelder | 2022-12-03 | 1 | -5/+8 | |
| | ||||||
* | docs: prep for 7.0.0b17.0.0b1 | Ned Batchelder | 2022-12-03 | 2 | -3/+7 | |
| | ||||||
* | docs: update man page for `report --format` | Ned Batchelder | 2022-12-03 | 1 | -1/+4 | |
| | ||||||
* | test: setting COLUMNS=80 broadly makes pytest too narrow | Ned Batchelder | 2022-12-03 | 2 | -3/+6 | |
| | | | | | Better to set it precisely where it is needed. This also ensures that running cog from the Makefile will get the right results. | |||||
* | test: deadsnakes dropped 3.9, so don't test it nightly | Ned Batchelder | 2022-12-03 | 1 | -1/+0 | |
| | ||||||
* | docs: mastodon links | Ned Batchelder | 2022-12-03 | 2 | -1/+5 | |
| | ||||||
* | chore: make upgrade | Ned Batchelder | 2022-12-03 | 3 | -18/+9 | |
| | ||||||
* | build: do we still need this pin? | Ned Batchelder | 2022-12-03 | 1 | -6/+0 | |
| | ||||||
* | docs: prep for 7.0.0b1 | Ned Batchelder | 2022-12-03 | 3 | -7/+10 | |
| | ||||||
* | docs: edit the changelog for 7.0.0 | Ned Batchelder | 2022-12-03 | 1 | -18/+61 | |
| | ||||||
* | test: ensure columns=80 for cogging | Ned Batchelder | 2022-12-03 | 1 | -1/+5 | |
| | ||||||
* | test: only rerun the failed tests in CI | Sviatoslav Sydorenko | 2022-12-02 | 1 | -12/+3 | |
| | | | | | | | | This patch simplifies attempting to execute the tests again on failures in CI. It also limits the scope of the tests being rerun to include only those that failed on the first try. Additionally, it enables the maximum verbosity so that the retry is more useful for troubleshooting. | |||||
* | chore: make upgrade | Ned Batchelder | 2022-12-02 | 9 | -28/+31 | |
| | ||||||
* | build: use --resolver=backtracking as advised | Ned Batchelder | 2022-12-02 | 1 | -1/+1 | |
| | ||||||
* | fix: when checking source existence for remapping, zipfiles are ok | Ned Batchelder | 2022-12-01 | 3 | -16/+73 | |
| | ||||||
* | fix: prevent infinite recursion | Ned Batchelder | 2022-12-01 | 2 | -3/+9 | |
| | | | | | If using relative file paths, and a file remapping failed, we'd get an infinite recursion. | |||||
* | test: don't add tests conditionally, skip them instead | Ned Batchelder | 2022-12-01 | 1 | -6/+5 | |
| | | | | This keeps the total number of tests the same in all situations. | |||||
* | chore: make upgrade | Ned Batchelder | 2022-12-01 | 6 | -42/+42 | |
| | ||||||
* | feat: file paths are only remapped if the result exists | Ned Batchelder | 2022-11-29 | 7 | -16/+44 | |
| | ||||||
* | test: colored pytest output in GitHub Actions | Ned Batchelder | 2022-11-29 | 2 | -0/+2 | |
| | ||||||
* | style: fix spelling | Ned Batchelder | 2022-11-28 | 18 | -57/+53 | |
| | | | | un-executed, white space, time stamp. |