From 459f2e070583de7b81be60afad7168e9edddaba1 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Tue, 29 Sep 2015 19:45:58 -0400 Subject: [PATCH] Disable some tests for comprehensive theming Depends on functionality that has been temporarily reverted --- lms/djangoapps/courseware/tests/test_comp_theming.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lms/djangoapps/courseware/tests/test_comp_theming.py b/lms/djangoapps/courseware/tests/test_comp_theming.py index d2bc701238..56ebca08f8 100644 --- a/lms/djangoapps/courseware/tests/test_comp_theming.py +++ b/lms/djangoapps/courseware/tests/test_comp_theming.py @@ -1,5 +1,6 @@ """Tests of comprehensive theming.""" +import unittest from django.conf import settings from django.test import TestCase @@ -20,6 +21,7 @@ class TestComprehensiveTheming(TestCase): staticfiles.finders._finders.clear() # pylint: disable=protected-access @with_comp_theme(settings.REPO_ROOT / 'themes/red-theme') + @unittest.skip("Disabled until we can release theming to production") def test_red_footer(self): resp = self.client.get('/') self.assertEqual(resp.status_code, 200) @@ -63,6 +65,7 @@ class TestComprehensiveTheming(TestCase): do_the_test(self) + @unittest.skip("Disabled until we can release theming to production") def test_default_logo_image(self): result = staticfiles.finders.find('images/logo.png') self.assertEqual(result, settings.REPO_ROOT / 'lms/static/images/logo.png')