From 7d93c98e34aed77dd973e321a7ed394ae938936c Mon Sep 17 00:00:00 2001 From: Phuoc CAO Date: Wed, 2 Aug 2017 18:27:08 +0200 Subject: [PATCH] =?UTF-8?q?eliminer=20r=C3=A9f=C3=A9rence=20=C3=A0=20td=5F?= =?UTF-8?q?members?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- caotek_mesavoirs.egg-info/requires.txt | 2 ++ caotek_mesavoirs/tests.py | 2 +- pytest.ini | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/caotek_mesavoirs.egg-info/requires.txt b/caotek_mesavoirs.egg-info/requires.txt index 8fd488d..8575edf 100644 --- a/caotek_mesavoirs.egg-info/requires.txt +++ b/caotek_mesavoirs.egg-info/requires.txt @@ -9,6 +9,8 @@ transaction zope.sqlalchemy waitress MySQL-python +docutils +yahoo_finance [testing] WebTest >= 1.3.1 diff --git a/caotek_mesavoirs/tests.py b/caotek_mesavoirs/tests.py index fb507fe..848077f 100644 --- a/caotek_mesavoirs/tests.py +++ b/caotek_mesavoirs/tests.py @@ -54,7 +54,7 @@ class TestMyViewSuccessCondition(BaseTest): from .views.default import my_view info = my_view(dummy_request(self.session)) self.assertEqual(info['one'].name, 'one') - self.assertEqual(info['project'], 'td_members') + self.assertEqual(info['project'], 'caotek_mesavoirs') class TestMyViewFailureCondition(BaseTest): diff --git a/pytest.ini b/pytest.ini index f7da09d..46777bd 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,3 +1,3 @@ [pytest] -testpaths = td_members +testpaths = caotek_mesavoirs python_files = *.py diff --git a/setup.py b/setup.py index 3527f9f..80107f8 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ requires = [ 'zope.sqlalchemy', 'waitress', 'MySQL-python', - 'docutils' + 'docutils', 'yahoo_finance', ]