From 0ddfed1493f6094a70a24e752396c10f97509c06 Mon Sep 17 00:00:00 2001 From: Theodoros Georgomanolis Date: Sun, 23 Oct 2022 11:13:47 +0300 Subject: [PATCH] Update tox.ini Remove unused testenv commands in tox.ini, change find with bash executable --- tox.ini | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 1cf8069..31c9d29 100644 --- a/tox.ini +++ b/tox.ini @@ -26,12 +26,11 @@ passenv = DEBUG sitepackages = False whitelist_externals = - find + bash deps = -r requirements.d/testenv.txt parallel_show_output = true commands = - - find . -type f -name "*.pyc" -delete - - find . -type d -name "__pycache__" -delete + - bash -c 'find {toxinidir} -type d -name "__pycache__" | xargs rm -rf' {envpython} -m pip check