diff --git a/Makefile b/Makefile index 0c1dabb..3c885b6 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,11 @@ install: build python setup.py install test: - python $(shell which pytest) -v test +ifdef T + python $(shell which pytest) -v test -l -k $(T) +else + python $(shell which pytest) -v test -l +endif test-verbose: python $(shell which pytest) -v test -s