summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* mypy: control.py is checkedNed Batchelder2022-12-3111-124/+151
|
* test: a sorted_lines helperNed Batchelder2022-12-316-19/+26
|
* mypy: check tests/goldtest.py, tests/test_html.pyNed Batchelder2022-12-317-126/+178
|
* mypy: check tests/helpers.pyNed Batchelder2022-12-312-35/+63
|
* test: we haven't used pep8 in a while, remove the settingsNed Batchelder2022-12-311-9/+0
|
* mypy: add data.py and test_api.pyNed Batchelder2022-12-316-156/+197
|
* test: add a test of unknown dynamic-contextNed Batchelder2022-12-311-0/+6
|
* test: greenlet isn't on all versions we test onNed Batchelder2022-12-311-1/+5
|
* refactor: removed mentions of Jython and IronPythonNed Batchelder2022-12-3020-155/+21
|
* test: include all the pypy versions when measuring coverageNed Batchelder2022-12-301-0/+10
|
* test: seven tests that fail because of pypy 3882Ned Batchelder2022-12-302-3/+20
| | | | https://foss.heptapod.net/pypy/pypy/-/issues/3882
* style: correct some lint errorsNed Batchelder2022-12-304-5/+4
|
* mypy: inorout.py, disposition.py, and part of control.pyNed Batchelder2022-12-3011-156/+189
|
* refactor: @contract is completely goneNed Batchelder2022-12-293-12/+2
|
* mypy: check multiproc.pyNed Batchelder2022-12-292-11/+12
|
* mypy: check python.pyNed Batchelder2022-12-296-44/+63
|
* build: keep docs from failingNed Batchelder2022-12-291-1/+1
|
* build: only publish coverage reports on master branchNed Batchelder2022-12-291-16/+20
|
* refactor: remove some unused codeNed Batchelder2022-12-291-16/+2
|
* mypy: code just for type checking won't be coveredNed Batchelder2022-12-291-0/+4
|
* mypy: check sqldata.pyNed Batchelder2022-12-295-92/+153
|
* mypy: check results.pyNed Batchelder2022-12-293-44/+64
|
* mypy: use specialized type name for ints that are line numbersNed Batchelder2022-12-294-50/+59
|
* mypy: check tomlconfig.pyNed Batchelder2022-12-293-23/+40
|
* mypy: mypy checks plugin.pyNed Batchelder2022-12-296-48/+114
|
* mypy: add parser.py to mypyNed Batchelder2022-12-292-215/+278
|
* mypy: a separate tox env for mypyNed Batchelder2022-12-2912-141/+180
|
* fix: [tools.coverage] is valid for settings in a toml file. #1516Ned Batchelder2022-12-273-1/+23
|
* refactor: no longer need a strange typing importNed Batchelder2022-12-271-5/+0
|
* test: run mypy on config.pyNed Batchelder2022-12-274-64/+100
|
* test: add phystokens.py to the mypy trainNed Batchelder2022-12-272-40/+46
|
* test: add type annotations for files.pyNed Batchelder2022-12-273-53/+66
|
* test: add mypy just for one file at firstNed Batchelder2022-12-273-14/+39
|
* chore: make upgradeNed Batchelder2022-12-272-2/+82
|
* test: add mypy as a dev dependencyNed Batchelder2022-12-271-1/+2
|
* refactor: don't need _to_blob anymore, leftover from 2 vs 3Ned Batchelder2022-12-271-8/+4
|
* refactor: remove more of contractsNed Batchelder2022-12-273-14/+2
|
* refactor: remove more of the PyContracts stuffNed Batchelder2022-12-274-62/+7
|
* fix: adjust some PyPy behaviors. #1515Ned Batchelder2022-12-276-20/+17
|
* make upgrade, but not ready for tox 4 yetNed Batchelder2022-12-256-115/+19
|
* test: remove pycontractsNed Batchelder2022-12-254-59/+9
|
* test: 'assert any(' has to be partialNed Batchelder2022-12-241-0/+2
|
* test: remove obsolete skipsNed Batchelder2022-12-242-28/+0
|
* docs: bump versionNed Batchelder2022-12-232-2/+8
|
* docs: releases take a little bit longer now7.0.1Ned Batchelder2022-12-231-2/+5
|
* docs: latest sample HTML reportNed Batchelder2022-12-2311-41/+41
|
* docs: prep for 7.0.1Ned Batchelder2022-12-233-7/+9
|
* fix: also look into .whl files for sourceNed Batchelder2022-12-233-2/+9
|
* fix: more information when mapping rules aren't working right.Ned Batchelder2022-12-231-0/+4
|
* fix: certain strange characters caused reporting to fail. #1512Ned Batchelder2022-12-233-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.