Don't run python unitests on docs changes

Leave them in place for pep8, as people do doc linting in their
pep8 jobs.

Change-Id: Ib43935f4df046893b268f7ec8b1a942814669be5
This commit is contained in:
Monty Taylor 2017-09-13 14:17:53 -06:00
parent 2ac3c73a9a
commit 50f47c8cb5
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594

View File

@ -89,6 +89,10 @@
Run unit tests for an OpenStack Python project under cPython version 2.7.
Uses tox with the ``py27`` environment.
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
vars:
tox_envlist: py27
@ -99,6 +103,10 @@
Run unit tests for an OpenStack project under cPython version 3.4.
Uses tox with the ``py34`` environment.
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
vars:
tox_envlist: py34
@ -109,6 +117,10 @@
Run unit tests for an OpenStack project under cPython version 3.5.
Uses tox with the ``py35`` environment.
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
vars:
tox_envlist: py35
@ -139,6 +151,10 @@
Run code coverage tests.
Uses tox with the ``cover`` environment.
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
vars:
tox_envlist: cover