diff --git a/test/suite.py b/test/suite.py index 9352253..889a043 100644 --- a/test/suite.py +++ b/test/suite.py @@ -10,6 +10,7 @@ from test.wc import test_project from test.wc import test_package from test.wc import test_convert +from test.util import test_xpath def additional_tests(): @@ -23,6 +24,7 @@ def additional_tests(): suite.addTests(test_project.suite()) suite.addTests(test_package.suite()) suite.addTests(test_convert.suite()) + suite.addTests(test_xpath.suite()) return suite if __name__ == '__main__':