.travis.yml 238 B

123456789101112131415161718192021
  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. # required for python >= 3.7
  10. dist: xenial
  11. install:
  12. - pip install pipenv
  13. - pipenv sync --dev
  14. - pipenv graph
  15. script:
  16. - pipenv run pylint free_disk
  17. - pipenv run pytest