From: SINGAL, KAPIL (ks220y) Date: Mon, 21 Oct 2019 16:47:42 +0000 (+0000) Subject: Changing delete command X-Git-Tag: 1.6.3~5 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ea9bf6a31b205ea0681f70b74e0b79d03d09ff3f;p=logging-analytics.git 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 --- 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]