From e442f1dc2ca856dbbca467f37776188be0545ffb Mon Sep 17 00:00:00 2001 From: Lasse Schuirmann Date: Tue, 4 Aug 2015 13:02:30 +0200 Subject: [PATCH] Makefile: Use platform independent pytest invocation --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f038b1da..b9d061a8 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ test: import-cldr - @PYTHONWARNINGS=default py.test + @PYTHONWARNINGS=default python -m pytest test-cov: import-cldr - @PYTHONWARNINGS=default py.test --cov=babel + @PYTHONWARNINGS=default python -m pytest --cov=babel test-env: @virtualenv test-env -- 2.47.3