From 35366699a255f2711833577702c396eda09378c5 Mon Sep 17 00:00:00 2001 From: zane Date: Sat, 9 Jun 2018 23:45:55 -0700 Subject: [PATCH] update makefile back" --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e7aafba70..f224d7091 100644 --- a/Makefile +++ b/Makefile @@ -9,8 +9,8 @@ else endif init: - @python3 setup.py develop - @pip3 install -r requirements.txt + @python setup.py develop + @pip install -r requirements.txt lint: flake8 moto @@ -18,7 +18,7 @@ lint: test: lint rm -f .coverage rm -rf cover - nosetests -sv --with-coverage --cover-html ./tests/ $(TEST_EXCLUDE) + @nosetests -sv --with-coverage --cover-html ./tests/ $(TEST_EXCLUDE) test_server: @TEST_SERVER_MODE=true nosetests -sv --with-coverage --cover-html ./tests/