aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2019-08-03 14:41:24 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2019-08-03 14:42:30 +0200
commitcb241e0db3d0cc552298fea4f8d49c85fdb5e1bc (patch)
tree54a63f57b5481a7b147850bdd0c3b1011329d9b2 /tox.ini
parent4f7536dfb0f4d639d76de54e360e6ba47f51888a (diff)
Run perm in functest-kubernetes
Change-Id: If2d786c50addbd17948afdcd3c803293d03318f8 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit 7092ae97a37936ff0584e0845d9a87f4e5f86696)
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini13
1 files changed, 12 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index eba93e44..63a8d225 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = pep8,pylint,yamllint,ansiblelint,bashate,py27,py36,bandit
+envlist = pep8,pylint,yamllint,ansiblelint,bashate,py27,py36,bandit,perm
[testenv]
usedevelop = True
@@ -49,3 +49,14 @@ basepython = python2.7
files =
build.sh
commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}
+
+[testenv:perm]
+basepython = python3.7
+whitelist_externals = bash
+path=. -not -path './.tox/*' -not -path './.git/*' -not -path './doc/pres/reveal.js/*'
+commands =
+ bash -c "\
+ find {[testenv:perm]path} \( -type f -not -perm 644 -o -type d -not -perm 755 \) \
+ -exec ls -l \{\} + | grep '.' && exit 1 || exit 0"
+ bash -c "\
+ find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0"