diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4e9383b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - 3.5 +install: + - pip install -r requirements.txt python-coveralls flake8 +script: + - coverage run manage.py test + - flake8 . +after_success: + - coveralls diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..6f3335c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,7 @@ +[coverage:run] +source = accounts, ponyconf, proposals +omit = */migrations/* + +[flake8] +max-line-length = 119 +exclude = */migrations/*