Add a generic tox env for sdist generation et al
authorJeremy Stanley <fungi@yuggoth.org>
Mon, 17 Apr 2017 16:03:57 +0000 (16:03 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Mon, 17 Apr 2017 16:30:07 +0000 (16:30 +0000)
Add a testenv:venv environment to the tox.ini as a convenience for
things like sdist/wheel building or generating documentation. Also
add the autogenerated files from running setup.py sdist and
bdist_wheel commands to the .gitignore file.

.gitignore
tox.ini

index 28e167f..15d618f 100644 (file)
@@ -5,8 +5,12 @@
 *.egg-info/
 .eggs/
 .tox/
+AUTHORS
+ChangeLog
+build/
 capture_*.log
 data/
+dist/
 mudpy/__pycache__/
 mudpy/tests/__pycache__/
 var/
diff --git a/tox.ini b/tox.ini
index 90fa750..27668ed 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,4 +1,4 @@
-# Copyright (c) 2016 Jeremy Stanley <fungi@yuggoth.org>. Permission
+# Copyright (c) 2016-2017 Jeremy Stanley <fungi@yuggoth.org>. Permission
 # to use, copy, modify, and distribute this software is granted under
 # terms provided in the LICENSE file distributed with this software.
 
@@ -20,6 +20,9 @@ commands = python setup.py test --slowest --testr-args='{posargs}'
 basepython=python3
 commands = flake8 {posargs}
 
+[testenv:venv]
+commands = {posargs}
+
 [flake8]
 show-source = True
 exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build