From 9c7c30a9ef748b873026249e41f962d35ec1f060 Mon Sep 17 00:00:00 2001 From: Ric Harvey Date: Wed, 4 Jan 2017 14:56:45 +0000 Subject: [PATCH] More streamlining of tests --- .travis.yml | 3 --- requirements.txt | 1 + tests/functional/test_content.py | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index d09249a..b7a0095 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,6 @@ install: before_script: - pip install -r requirements.txt - - pip install mock - - pip install requests - - pip install feedparser script: - docker ps diff --git a/requirements.txt b/requirements.txt index e69de29..f229360 100644 --- a/requirements.txt +++ b/requirements.txt @@ -0,0 +1 @@ +requests diff --git a/tests/functional/test_content.py b/tests/functional/test_content.py index bf54a88..769f491 100644 --- a/tests/functional/test_content.py +++ b/tests/functional/test_content.py @@ -9,7 +9,7 @@ class ContentTest(unittest.TestCase): def setUp(self): ''' Create some starter data to be used in tests ''' self.domain = "http://127.0.0.1" - self.search_string = "flibble" + self.search_string = "Version" def tearDown(self): ''' Destroy starter data '''