From 15d98790b5b7d6bfb8825461987fede30de32cbf Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Thu, 8 Nov 2018 21:08:11 -0600 Subject: [PATCH] Clean up and fix cleaning of pytest generate files --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f2a78fb..25c3a60 100644 --- a/Makefile +++ b/Makefile @@ -26,10 +26,9 @@ VIRTUALENV=virtualenv -p ${PYTHON_EXE} TARGETS = EXTRA_TARGETS = README.html SETUPTOOLS_STUFF = build dist src/pgwui_upload.egg-info -PYTEST_STUFF = .cache .pytest_cache src/pgwui_upload/views/__pycache__ \ - tests/__pycache__ tests/.pytest_cache \ - tests/test_views/__pycache__ tests/test_views/.pytest_cache \ - tests/test_views/__init__.pyc +PYTEST_STUFF = .cache \ + src/pgwui_upload/__pycache__ src/pgwui_upload/views/__pycache__ \ + tests/__pycache__ tests/test_views/__pycache__ COVERAGE_STUFF = .coverage TOX_STUFF = .tox -- 2.34.1