Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | test(benchmark): more refactoring | Ned Batchelder | 2022-06-05 | 1 | -78/+102 | |
| | ||||||
* | test(benchmark): results are presented in markdown table, with ratios | Ned Batchelder | 2022-06-04 | 2 | -13/+74 | |
| | ||||||
* | test: more benchmarking | Ned Batchelder | 2022-06-03 | 1 | -15/+37 | |
| | | | | | | | | | | | | | | | | | ``` Median for bug1339.py, python3.10, cov=none: 0.180s Median for bug1339.py, python3.10, cov=6.4.1: 0.421s Median for bug1339.py, python3.11, cov=none: 0.141s Median for bug1339.py, python3.11, cov=6.4.1: 0.835s Median for bm_sudoku.py, python3.10, cov=none: 10.946s Median for bm_sudoku.py, python3.10, cov=6.4.1: 28.293s Median for bm_sudoku.py, python3.11, cov=none: 10.215s Median for bm_sudoku.py, python3.11, cov=6.4.1: 60.590s Median for bm_spectral_norm.py, python3.10, cov=none: 14.882s Median for bm_spectral_norm.py, python3.10, cov=6.4.1: 37.359s Median for bm_spectral_norm.py, python3.11, cov=none: 10.415s Median for bm_spectral_norm.py, python3.11, cov=6.4.1: 76.129s ``` | |||||
* | build: clean up ci helpers, use them more uniformly | Ned Batchelder | 2022-06-02 | 4 | -17/+24 | |
| | ||||||
* | build: automate triggering kit builds on github actions | Ned Batchelder | 2022-06-02 | 3 | -3/+34 | |
| | ||||||
* | build: kits should be triggerable programmatically | Ned Batchelder | 2022-06-02 | 1 | -0/+3 | |
| | ||||||
* | style: pylint changed to 2.14, adapt. | Ned Batchelder | 2022-06-02 | 2 | -20/+1 | |
| | ||||||
* | chore: make upgrade | Ned Batchelder | 2022-06-02 | 5 | -8/+10 | |
| | ||||||
* | build: move sample html steps into Makefile | Ned Batchelder | 2022-06-02 | 2 | -13/+25 | |
| | ||||||
* | build: comment_on_fixes comments on pull requests too | Ned Batchelder | 2022-06-02 | 1 | -7/+19 | |
| | ||||||
* | build: bump version | Ned Batchelder | 2022-06-02 | 2 | -1/+7 | |
| | ||||||
* | docs: latest sample HTML report6.4.1 | Ned Batchelder | 2022-06-02 | 11 | -41/+41 | |
| | ||||||
* | build: prep for 6.4.1 | Ned Batchelder | 2022-06-02 | 5 | -12/+15 | |
| | ||||||
* | build: more low-tech release automation | Ned Batchelder | 2022-06-02 | 1 | -6/+18 | |
| | ||||||
* | build: use 3.11.0b3 in ci | Ned Batchelder | 2022-06-02 | 3 | -3/+3 | |
| | ||||||
* | docs: performance improvements closed #1339 | Ned Batchelder | 2022-06-02 | 1 | -1/+2 | |
| | ||||||
* | test: 3.11.0b3 is out, so remove the workaround | Ned Batchelder | 2022-06-01 | 1 | -3/+1 | |
| | ||||||
* | fix: use tomli for [toml] under more precise conditions. #1390 | Ned Batchelder | 2022-06-01 | 3 | -2/+7 | |
| | ||||||
* | test: avoid a 3.11.0b2 bug | Ned Batchelder | 2022-05-31 | 1 | -1/+3 | |
| | ||||||
* | chore: make upgrade | Ned Batchelder | 2022-05-31 | 8 | -33/+33 | |
| | ||||||
* | test: benchmark for small local files: bug1339.py | Ned Batchelder | 2022-05-30 | 1 | -41/+107 | |
| | ||||||
* | test: leave lab/benchmark.py in a state people can run | Ned Batchelder | 2022-05-30 | 1 | -3/+3 | |
| | ||||||
* | docs: mentioned pull #1388 | Ned Batchelder | 2022-05-30 | 2 | -7/+7 | |
| | ||||||
* | perf: PyTracer improvements (#1388) | Carl Friedrich Bolz-Tereick | 2022-05-30 | 1 | -24/+41 | |
| | | | | | | | | | | | | | | | | | * cache the bound method of _trace on self this speeds up pure python tracing because we don't have to re-create a bound method object all the time * optimize checking whether a file should be traced the optimization works based on the following heuristic: in a majority of cases, functions call other functions in the same file. In that situation we don't have to re-check whether we should trace the file * fix optimization in the presence of contexts * fix too long line | |||||
* | build: always use three-component version numbers | Ned Batchelder | 2022-05-30 | 4 | -12/+7 | |
| | | | | | Someone thought we didn't use semantic versioning because we said "6.4" instead of "6.4.0". Don't trim .0. | |||||
* | test(benchmark): more projects, and results collected at end. | Ned Batchelder | 2022-05-28 | 1 | -7/+34 | |
| | ||||||
* | docs: also mention the improved C tracer performance | Ned Batchelder | 2022-05-28 | 1 | -3/+4 | |
| | ||||||
* | perf: set frame->f_trace_lines=0 when not tracing. ~3% faster | Ned Batchelder | 2022-05-28 | 3 | -30/+26 | |
| | ||||||
* | docs: thanks, Carl Friedrich Bolz-Tereick | Ned Batchelder | 2022-05-28 | 2 | -1/+7 | |
| | ||||||
* | perf: speed up python tracer with frame.f_trace_lines = False (#1381) | Carl Friedrich Bolz-Tereick | 2022-05-28 | 1 | -0/+2 | |
| | | | | | | | | | use the python >= 3.7 feature of being able to disable line tracing by setting the frame attribute f_trace_lines to False. This can be used for the frames of functions that we aren't collecting coverage information for (eg those functions in the stdlib). This speeds up the pure python tracer in CPython by ~9x and in PyPy by 80% on a coverage run of one realistic project that I tried. | |||||
* | test: new benchmark.py for comparing performance | Ned Batchelder | 2022-05-28 | 4 | -488/+300 | |
| | | | | Also, delete the old perf/ directory which isn't useful. | |||||
* | fix(docs): GitHub releases had 404's for :ref: links. | Ned Batchelder | 2022-05-23 | 1 | -0/+9 | |
| | ||||||
* | docs: use a better phrase for a reference | Ned Batchelder | 2022-05-23 | 1 | -2/+2 | |
| | ||||||
* | test: add a test for some uncovered lines in cmdline.py | Ned Batchelder | 2022-05-23 | 1 | -0/+6 | |
| | ||||||
* | build: fix a typo in the Makefile | Ned Batchelder | 2022-05-22 | 2 | -1/+3 | |
| | ||||||
* | build: bump version | Ned Batchelder | 2022-05-22 | 2 | -1/+7 | |
| | ||||||
* | build: use an api token for test.pypi.org | Ned Batchelder | 2022-05-22 | 1 | -1/+1 | |
| | ||||||
* | fix: don't create a data file when just trying to read one. #13286.4 | Ned Batchelder | 2022-05-22 | 5 | -2/+17 | |
| | ||||||
* | docs: latest sample HTML report | Ned Batchelder | 2022-05-22 | 13 | -173/+469 | |
| | ||||||
* | build: prep for 6.4 | Ned Batchelder | 2022-05-22 | 4 | -7/+9 | |
| | ||||||
* | docs: spell check | Ned Batchelder | 2022-05-22 | 2 | -1/+30 | |
| | ||||||
* | docs: mention in the man page | Ned Batchelder | 2022-05-22 | 1 | -1/+2 | |
| | ||||||
* | build: more make targets for release steps | Ned Batchelder | 2022-05-22 | 3 | -12/+16 | |
| | ||||||
* | docs: add a note about using --debug=trace to debug No Data. #1379 | Ned Batchelder | 2022-05-22 | 1 | -0/+3 | |
| | ||||||
* | style(docs): use definition list for warnings | Ned Batchelder | 2022-05-22 | 1 | -12/+10 | |
| | ||||||
* | feat: a new debug option `sqldata` shows all the data being written to the db. | Ned Batchelder | 2022-05-22 | 4 | -15/+41 | |
| | ||||||
* | refactor: SqliteDb uses its debug object more like other code | Ned Batchelder | 2022-05-22 | 1 | -7/+7 | |
| | ||||||
* | test: xfail decorator tests that fail on PyPy 3.8 (7.3.10alpha) | Ned Batchelder | 2022-05-21 | 4 | -6/+23 | |
| | | | | https://foss.heptapod.net/pypy/pypy/-/issues/3749 | |||||
* | style: make sqldata.py code more uniform | Ned Batchelder | 2022-05-21 | 1 | -20/+20 | |
| | ||||||
* | fix: CoverageData(no_disk=True).update() now works. #1323 | Ned Batchelder | 2022-05-21 | 3 | -5/+26 | |
| |