.travis.yml 445 B

123456789101112131415161718192021222324252627
  1. language: python
  2. python:
  3. - 3.4
  4. - 3.5
  5. - 3.6
  6. - 3.6-dev
  7. - 3.7
  8. - 3.7-dev
  9. - 3.8
  10. - 3.8-dev
  11. # required for python >= 3.7
  12. dist: xenial
  13. install:
  14. - pip install --upgrade pipenv>=2018.10.9
  15. - pipenv sync --dev
  16. - if python3 -c 'import sys; sys.exit(sys.version_info < (3, 8))'; then
  17. pipenv install 'astroid>=2.3.0';
  18. fi
  19. - pipenv graph
  20. script:
  21. - pipenv run pylint free_disk
  22. - pipenv run pylint --disable=missing-requirement tests/*
  23. - pipenv run pytest