12345678910111213141516171819202122232425 |
- language: python
- python:
- - 3.4
- - 3.5
- - 3.6
- dist: xenial
- install:
- - pip install
- - pipenv sync
- - if python3 -c 'import sys; sys.exit(sys.version_info < (3, 8))'; then
- pipenv install 'astroid>=2.3.0';
- fi
- - pipenv graph
- script:
- - pipenv run pylint free_disk
- - pipenv run pylint
- - pipenv run pytest
|