.travis.yml 611 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. sudo: false
  3. cache:
  4. - pip
  5. before_cache:
  6. - rm ~/.cache/pip/log/debug.log
  7. language: python
  8. python:
  9. - "2.7"
  10. - "3.5"
  11. install:
  12. - pip install --upgrade pip
  13. - pip install tox-travis
  14. script:
  15. - tox
  16. after_failure:
  17. - echo "Here's a list of installed Python packages:"
  18. - pip list --format=columns
  19. - echo Dumping logs, because tests failed to succeed
  20. - |
  21. for log in `ls .tox/*/log/*.log`
  22. do
  23. echo Outputting $log
  24. cat $log
  25. done
  26. - pip_debug_log=/home/travis/.cache/pip/log/debug.log
  27. - echo Outputting pip debug log from $pip_debug_log
  28. - cat $pip_debug_log