archey4/.travis.yml
Samuel FORESTIER 2c4cdc349b Revert "Let's try Python 3.8 development branch and Python 3.7 latest release"
This reverts commit 8508f3f281dd383b91381bc618bfca554f16a70f.
2018-08-25 14:47:11 +02:00

15 lines
413 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
- pylint test/ --jobs=2 --disable=missing-docstring,too-few-public-methods,unused-argument,protected-access,no-value-for-parameter