diff --git a/Makefile b/Makefile index 6735854b4e..7541282865 100644 --- a/Makefile +++ b/Makefile @@ -62,15 +62,16 @@ clean-pyc: find . -name '*.pyc' -exec rm -f {} + find . -name '*.pyo' -exec rm -f {} + find . -name '*~' -exec rm -f {} + + find . -name '__pycache__' -exec rm -R -f {} + # Testing test: - ./manage.py test $(MODULE) --settings=mayan.settings.testing.development --nomigrations + ./manage.py test $(MODULE) --settings=mayan.settings.testing.development --nomigrations $(ARGUMENTS) test-all: - ./manage.py test --mayan-apps --settings=mayan.settings.testing.development --nomigrations + ./manage.py test --mayan-apps --settings=mayan.settings.testing.development --nomigrations $(ARGUMENTS) test-launch-postgres: @docker rm -f test-postgres || true