From 31920c6700a8b2f22c55d435d666eed7f8b065d8 Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Wed, 20 Apr 2016 11:48:09 -0400 Subject: [PATCH] Removed awx/api/tests dir from Makefile since it no longer exists --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ea7513837d..c215a31224 100644 --- a/Makefile +++ b/Makefile @@ -427,16 +427,17 @@ pylint: reports check: flake8 pep8 # pyflakes pylint +TEST_DIRS=awx/main/tests # Run all API unit tests. test: - py.test awx/main/tests awx/api/tests + py.test $(TEST_DIRS) test_unit: py.test awx/main/tests/unit # Run all API unit tests with coverage enabled. test_coverage: - py.test --create-db --cov=awx --cov-report=xml --junitxml=./reports/junit.xml awx/main/tests awx/api/tests + py.test --create-db --cov=awx --cov-report=xml --junitxml=./reports/junit.xml $(TEST_DIRS) # Output test coverage as HTML (into htmlcov directory). coverage_html: