diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4e44768 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: 3.5 + +env: + - TOX_ENV=flake8 + - TOX_ENV=py35 + - TOX_ENV=isort + - TOX_ENV=bashate + +install: + - pip install tox + +script: + - tox -e $TOX_ENV diff --git a/README.md b/README.md index 8bc893e..c7f39da 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ inteGraality ============ - +[![Build Status](https://travis-ci.org/JeanFred/inteGraality.svg?branch=master)](https://travis-ci.org/JeanFred/inteGraality) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) Generate dashboards of property coverage for a given part of Wikidata. Lives on [Toolforge]. Authors ------- Based on an original idea by Maarten Dammers. [Toolforge]: http://tools.wmflabs.org/integraality/ diff --git a/setup.cfg b/setup.cfg index 65f7526..c77e8b3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,9 @@ [flake8] max-line-length = 120 +ignore = F841 [isort] known_third_party = ww,flask known_pywikibot = pywikibot multi_line_output = 3 sections = FUTURE,STDLIB,THIRDPARTY,PYWIKIBOT,FIRSTPARTY,LOCALFOLDER