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 '''