From 22784b7f069d59e3fa7df03cfea84df9e147af13 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Fri, 28 Oct 2016 18:24:51 +0200 Subject: [PATCH] run_specific_test: take the test as parameter (#1469) Instead of hardcoding it, e.g.: ./run_specific_test.sh tests.core_tests:CoreTests.test_templated_sql_json --- run_specific_test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run_specific_test.sh b/run_specific_test.sh index 7f32d5af5..e68de04e3 100755 --- a/run_specific_test.sh +++ b/run_specific_test.sh @@ -5,4 +5,5 @@ export CARAVEL_CONFIG=tests.caravel_test_config set -e caravel/bin/caravel version -v export SOLO_TEST=1 -nosetests tests.core_tests:CoreTests.test_templated_sql_json +# e.g. tests.core_tests:CoreTests.test_templated_sql_json +nosetests $1