archey4/.travis.yml
Samuel FORESTIER 64c75d7c96
Improves code styles, development flows & test cases (#33)
* Improves README & GitHub templates
* Fixes one test case failing due to local user configuration changes
* Makes the Archey sources (almost) compliant to PyLint
* Travis : Adds PyLint checks & Python 3.7 job
2018-07-15 22:26:49 +02:00

15 lines
430 B
YAML

language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
install:
- pip3 install .
- pip3 install pylint
script:
- python3 setup.py test
- python3 archey/archey.py
- pylint archey/ --jobs=2 --disable=missing-docstring,too-few-public-methods,too-many-lines,bad-continuation
- pylint test/ --jobs=2 --disable=missing-docstring,too-few-public-methods,unused-argument,protected-access,no-value-for-parameter