mirror of
https://github.com/HorlogeSkynet/archey4
synced 2025-04-16 16:00:13 +02:00

* 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
15 lines
430 B
YAML
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
|