From ea9bf6a31b205ea0681f70b74e0b79d03d09ff3f Mon Sep 17 00:00:00 2001 From: "SINGAL, KAPIL (ks220y)" Date: Mon, 21 Oct 2019 16:47:42 +0000 Subject: Changing delete command -delete is causing exit 1 with error "No such file or directory." As it trying to delete files from ./.tox/* path. Adding -not -path "./.tox" to exclude path. Issue-ID: LOG-1173 Signed-off-by: SINGAL, KAPIL (ks220y) Change-Id: Ic04d5c660e5c2ba81f3d2a2f6646bf65782a8a7a --- pylog/tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pylog/tox.ini') diff --git a/pylog/tox.ini b/pylog/tox.ini index bf6b784..14ebfd0 100644 --- a/pylog/tox.ini +++ b/pylog/tox.ini @@ -14,7 +14,7 @@ deps = -r{toxinidir}/requirements.txt setenv = PYTHONPATH={toxinidir}/ commands = - /usr/bin/find . -type f -name "*.py[c|o]" -delete + /usr/bin/find . -type f -name "*.py[c|o]" -not -path "./.tox" -delete py.test [testenv:pep8] -- cgit 1.2.3-korg