.travis.yml 275 B

1234567891011121314151617181920212223
  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. - pipenv graph
  17. script:
  18. - pipenv run pylint free_disk
  19. - pipenv run pytest