Skip to content
Snippets Groups Projects
Commit 7cd9db12 authored by David Baumgold's avatar David Baumgold
Browse files

Disable some tests for comprehensive theming

Depends on functionality that has been temporarily reverted
parent 116ca291
No related merge requests found
"""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')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment