From 6831f87be8ba4fefdd86648246ed50839517115d Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 31 May 2013 11:57:45 -0700 Subject: [PATCH] re-enable all filter tests when run from command line --- tests/python_tests/filter_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python_tests/filter_test.py b/tests/python_tests/filter_test.py index 76239a3e3..aa29422f9 100644 --- a/tests/python_tests/filter_test.py +++ b/tests/python_tests/filter_test.py @@ -2,6 +2,7 @@ # -*- coding: utf-8 -*- from nose.tools import * +from utilities import run_all import mapnik if hasattr(mapnik,'Expression'): @@ -373,5 +374,4 @@ def test_filtering_nulls_and_empty_strings(): if __name__ == "__main__": - test_filtering_nulls_and_empty_strings() - #[eval(run)() for run in dir() if 'test_' in run] + run_all(eval(x) for x in dir() if x.startswith("test_"))