diff mbox series

[3/4] tox: Add 'docs' to default environments

Message ID 20180411163619.3798-3-stephen@that.guru
State Accepted
Headers show
Series [1/4] docs: Read version from 'patchwork.VERSION' | expand

Commit Message

Stephen Finucane April 11, 2018, 4:36 p.m. UTC
I'd simply run 'tox' (via docker) to validate some previous patches.
Sadly that didn't catch a release note issue. Make sure this doesn't
happen again by always running 'docs'.

Signed-off-by: Stephen Finucane <stephen@that.guru>
---
 tox.ini | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tox.ini b/tox.ini
index 09505f78..a7c6dfc6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@ 
 [tox]
 minversion = 2.0
-envlist = pep8,py{27,34,35}-django{18,19,110,111},py36-django111
+envlist = pep8,docs,py{27,34,35}-django{18,19,110,111},py36-django111
 skipsdist = True
 
 [testenv]