diff --git a/ddportfolioservice/tests/functional/test_ddportfolio.py b/ddportfolioservice/tests/functional/test_ddportfolio.py index 7c422f4..7693f2f 100644 --- a/ddportfolioservice/tests/functional/test_ddportfolio.py +++ b/ddportfolioservice/tests/functional/test_ddportfolio.py @@ -25,5 +25,5 @@ from ddportfolioservice.tests import * class TestDdportfolioController(TestController): def test_index(self): - response = self.app.get(url_for(controller='ddportfolio')) + response = self.app.get(url_for(controller='ddportfolio', action='index')) # Test response... diff --git a/ddportfolioservice/tests/functional/test_showformscripts.py b/ddportfolioservice/tests/functional/test_showformscripts.py index 43ea16b..4ce6279 100644 --- a/ddportfolioservice/tests/functional/test_showformscripts.py +++ b/ddportfolioservice/tests/functional/test_showformscripts.py @@ -3,5 +3,5 @@ from ddportfolioservice.tests import * class TestShowformscriptsController(TestController): def test_index(self): - response = self.app.get(url_for(controller='showformscripts')) + response = self.app.get(url_for(controller='showformscripts', action='index')) # Test response... diff --git a/setup.cfg b/setup.cfg index 390771c..8b8db3d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,6 +14,7 @@ make-dirs=1 [nosetests] with-pylons = test.ini +cover-package = ddportfolioservice # Babel configuration [compile_catalog]