tox.ini 861 B

1234567891011121314151617181920212223242526272829303132
  1. # tox.ini
  2. # Part of ‘manpage’, a Python library for making Unix manual documents.
  3. #
  4. # Copyright © 2016 Ben Finney <ben+python@benfinney.id.au>
  5. #
  6. # This is free software: see the grant of license at end of this file.
  7. # Tox automated test configuration for this code base.
  8. [tox]
  9. envlist = py33, py34, py35
  10. [testenv]
  11. commands =
  12. {envpython} ./setup.py test --quiet
  13. deps =
  14. # This is free software: you may copy, modify, and/or distribute this work
  15. # under the terms of the GNU General Public License as published by the
  16. # Free Software Foundation; version 3 of that license or any later version.
  17. #
  18. # No warranty expressed or implied. See the file ‘LICENSE.GPL-3’ for details,
  19. # or view it online at <URL:https://www.gnu.org/licenses/gpl-3.0.html>.
  20. # Local variables:
  21. # coding: utf-8
  22. # mode: conf
  23. # End:
  24. # vim: fileencoding=utf-8 filetype=ini :