summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* setup.cfg: Add pytest discovery argsDylan Baker2020-10-301-0/+3
| | | | | | | | | We have a single giant file for our tests, but a number of files that match pytest's default discovery globs. To fix that, let's tell pytest what to do. This means you can just `pytest` and get the right results. It also helps IDE's like vscode correctly identify tests.
* setup.cfg: Mark setuptools as requiredDylan Baker2020-04-211-0/+2
| | | | It's required, lets just document it as such.
* pytest: Fix test warningsDaniel Mensinger2019-12-051-1/+4
|
* Ensure setuptools via PEP508/518 pyproject.tomlMichael Hirsch, Ph.D2019-11-021-0/+4
|
* Remove unnecessary setup.cfg lines that confound offline useMichael Hirsch, Ph.D2019-07-111-3/+0
|
* minimum python 3.5.2Michael Hirsch, Ph.D2019-07-111-1/+1
|
* ENH: metadata PEP390 setup.cfgMichael Hirsch, Ph.D2019-07-111-33/+35
| | | | | | https for Meson docs url Co-Authored-By: Elliott Sales de Andrade <quantum.analyst@gmail.com>
* Fix builtin variable namesDaniel Mensinger2019-04-291-0/+2
|
* flake8: ignore W504: line break after binary operatorXavier Claessens2018-12-021-0/+2
| | | | It wasn't an error before, and plenty of files does that.
* setup.cfg: Don't warn about commented codeNirbheek Chauhan2018-07-021-0/+2
|
* Fix issues found by flake8Xavier Claessens2018-06-061-0/+4
|
* flake8: disable E731: do not assign a lambda expression, use a defLuke Shumaker2017-09-211-3/+5
| | | | | | | | | | | | It has too many false positives. It was complaining about things like if this: fn = some_func else: fn = lambda x: ... Where obviously, "fn" can't be a def, and it would be silly to introduce some other name to use as the def, just to assign it to fn.
* vs: Use CompilerArgs() for compile and link argsNirbheek Chauhan2017-01-281-1/+3
| | | | | At the same time also fix the order in which they are added. They now match the order used in the Ninja backend.
* Disable E266 in flake8Nirbheek Chauhan2017-01-281-1/+3
| | | | Don't tell me how to format my comments!
* style: disable flake8 warnings E241, E251, E305, E401Mike Sinkovsky2017-01-111-1/+9
|
* setup.cfg: fix syntaxIgor Gnatenko2016-12-291-2/+2
|
* Just say no.Jussi Pakkanen2016-12-281-0/+2
|
* setup.cfg: ignore couple of PEP8 errorsIgor Gnatenko2016-12-231-1/+6
| | | | | | We don't care about E261 and temporarily ignore E501. Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
* Shut down the noise.Jussi Pakkanen2016-12-211-1/+1
|
* add flake8 configurationIgor Gnatenko2016-12-211-0/+2
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>