summaryrefslogtreecommitdiff
path: root/tests/utils/configobj_test.py
Commit message (Collapse)AuthorAge
* Remove old __future__ importsLucas Hoffmann2018-06-19
| | | | They are not needed for python >= 3.0.
* tests: Instruct pylint to ignore a large swath of warningsDylan Baker2017-02-08
| | | | | | | | | There are a number of things pylint warns on that absolutely make sense to fix in production code, but for unittests they either don't matter (like naming variables "foo"), can't be fixed (TestCase methods that don't use self because they use a mock assert), or the descriptive names violate PEP8. These are annoying and create noise, so tell pylint to ignore them.
* move alot/settings/checks to alot/utils/configobjDylan Baker2017-01-25
This is just more reorganization.