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