Skip to content
This repository has been archived by the owner on Sep 22, 2020. It is now read-only.

Commit

Permalink
Move isort, flake8 and pytest settings to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
relekang committed Apr 7, 2015
1 parent 069a586 commit ae38602
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
5 changes: 0 additions & 5 deletions .isort.cfg

This file was deleted.

13 changes: 13 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
[wheel]
universal = 1

[flake8]
max_line_length = 100
exclude = .tox,venv

[pytest]
python_files = tests/test_*.py

[isort]
line_length = 100
skip = .tox,venv
default_section = THIRDPARTY
known_first_party = thumbnails,tests
Binary file added tests/test_image.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 0 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@ envlist =
py34-docs
skipsdist = True

[flake8]
max_line_length=100
exclude=.tox, venv

[pytest]
python_files = tests/test_*.py

[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}
Expand Down

0 comments on commit ae38602

Please sign in to comment.