summaryrefslogtreecommitdiff
path: root/coverage/tomlconfig.py
Commit message (Collapse)AuthorAgeFilesLines
* build: update to latest pylintgood-metaNed Batchelder2021-05-021-1/+0
|
* refactor: remove a few more version checksNed Batchelder2021-05-021-3/+1
|
* refactor: pyupgrade --py36-plus coverage/*.pyNed Batchelder2021-05-021-4/+3
|
* refactor: remove unneeded backward.py shimsNed Batchelder2021-05-011-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 #1084Ned Batchelder2021-01-181-2/+6
|
* Consolidate the type checking of toml valuesNed Batchelder2019-11-041-22/+12
|
* Refactor the toml logicNed Batchelder2019-11-041-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 installedNed Batchelder2019-11-031-19/+28
|
* A better way to import optional modulesNed Batchelder2019-11-031-1/+2
|
* Expand environment variables in any part of a TOML configNed Batchelder2019-11-031-7/+4
|
* Cleanups for TOML codeNed Batchelder2019-11-031-4/+20
|
* TOML support for pyproject.toml and other config filesFrazer McLean2019-11-031-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.