123456789101112131415161718192021 |
- language: python
- python:
- - 3.4
- - 3.5
- - 3.6
- - 3.6-dev
- - 3.7
- - 3.7-dev
- # required for python >= 3.7
- dist: xenial
- install:
- - pip install --upgrade pipenv>=2018.10.9
- - pipenv sync --dev
- - pipenv graph
- script:
- - pipenv run pylint free_disk
- - pipenv run pytest
|