beets/setup.cfg
Thomas Scholtes bee80c4c49 Use tox to test on travis and add docs and flake8
Travis CI now also confirm that the docs build correctly and the flake8 runs
succesfully. Tox also has the advantage that it tests that beets installs
correctly.

Currently flake8 does not run succesfully so it is configured to not fail the
build on Travis.
2014-04-02 22:48:53 +02:00

8 lines
173 B
INI

[nosetests]
verbosity=1
logging-clear-handlers=1
[flake8]
# F401 module imported but unused
# E231 missing whitespace after ',' (used to align visually)
ignore=F401,E241