diff --git a/.gitignore b/.gitignore index dba7bdd..3f40859 100755 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,4 @@ examples/tortoise/media/ examples/django/media/ examples/dataclasses/media/ examples/sqlalchemy/media/ +examples/hypothesis/.hypothesis/ diff --git a/Makefile b/Makefile index 80c0e18..5bcd82d 100644 --- a/Makefile +++ b/Makefile @@ -50,10 +50,10 @@ django-test: source $(VENV) && cd examples/django/ && ./manage.py test hypothesis-test: - source $(VENV) && cd examples/hypothesis/ && ./manage.py test + source $(VENV) && cd examples/hypothesis/ && python manage.py test lazyfuzzy-test: - source $(VENV) && cd examples/lazyfuzzy/ && ./manage.py test + source $(VENV) && cd examples/lazyfuzzy/ && python manage.py test pydantic-test: source $(VENV) && cd examples/pydantic/ && python manage.py test