Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build: update to latest pylintgood-meta | Ned Batchelder | 2021-05-02 | 1 | -1/+0 |
| | |||||
* | refactor: remove a few more version checks | Ned Batchelder | 2021-05-02 | 1 | -3/+1 |
| | |||||
* | refactor: pyupgrade --py36-plus coverage/*.py | Ned Batchelder | 2021-05-02 | 1 | -4/+3 |
| | |||||
* | refactor: remove unneeded backward.py shims | Ned Batchelder | 2021-05-01 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | Removed were: - StringIO - configparser - string_class - unicode_class - range - zip_longest - get_thread_id - path_types - shlex_quote - reprlib | ||||
* | Simplify the testing of the toml extra, fixing #1084 | Ned Batchelder | 2021-01-18 | 1 | -2/+6 |
| | |||||
* | Consolidate the type checking of toml values | Ned Batchelder | 2019-11-04 | 1 | -22/+12 |
| | |||||
* | Refactor the toml logic | Ned Batchelder | 2019-11-04 | 1 | -77/+82 |
| | | | | | | | | | - Section names can be dotted. - We only ever read one file, so we don't need to loop over files. - Error messages should show the actual section names where problems happened. | ||||
* | Give warnings about not being able to parse TOML files if toml isn't installed | Ned Batchelder | 2019-11-03 | 1 | -19/+28 |
| | |||||
* | A better way to import optional modules | Ned Batchelder | 2019-11-03 | 1 | -1/+2 |
| | |||||
* | Expand environment variables in any part of a TOML config | Ned Batchelder | 2019-11-03 | 1 | -7/+4 |
| | |||||
* | Cleanups for TOML code | Ned Batchelder | 2019-11-03 | 1 | -4/+20 |
| | |||||
* | TOML support for pyproject.toml and other config files | Frazer McLean | 2019-11-03 | 1 | -0/+146 |
Squashed and rebased from https://github.com/nedbat/coveragepy/pull/699 Missing getfloat TOMLConfigParser -> TomlConfigParser fix getfloat for int Move TomlConfigParser Add name to contributors Import toml in backward.py fix indentation Don't ignore TomlDecodeError Raise if TomlConfigParser is used without toml installed Add tests for TOML config Fix test on Python 2 Mention toml support in documentation. |