Browse Source

Travis should skip only the full compilation

pull/138/head
Oliverpool 9 years ago
parent
commit
e91a52604c
  1. 4
      test/test_compilation/test_compilation.py

4
test/test_compilation/test_compilation.py

@ -48,8 +48,6 @@ class FileTest(unittest.TestCase, metaclass=dynamic.DynamicTest):
def _create_test(cls, base):
"""Return a function testing that `base` compiles."""
@unittest.skipIf('TRAVIS' in os.environ,
"Travis does not support lualatex compilation yet")
def test_compile(self):
"""Test that `base` is correctly compiled."""
if base is None:
@ -86,6 +84,8 @@ class FileTest(unittest.TestCase, metaclass=dynamic.DynamicTest):
)
# Check compilation
if not 'TRAVIS' in os.environ:
# Travis does not support lualatex compilation yet
self.assertEqual(0, self.compile_songbook(songbook))
test_compile.__doc__ = (

Loading…
Cancel
Save