Chris McDonough
2012-02-29 54105d4f39cb411641ffca91cc021e69e634b928
prevent highorder tests from running on non-Linux platforms (these seem to have issues)
1 files modified
7 ■■■■ changed files
pyramid/tests/test_integration.py 7 ●●●● patch | view | raw | blame | history
pyramid/tests/test_integration.py
@@ -3,6 +3,7 @@
import datetime
import locale
import os
import platform
import unittest
from pyramid.wsgi import wsgiapp
@@ -81,8 +82,10 @@
        res = self.testapp.get('/static/.hiddenfile', status=200)
        _assertBody(res.body, os.path.join(here, 'fixtures/static/.hiddenfile'))
    if defaultlocale is not None:
        # These tests are expected to fail on LANG=C systems
    if defaultlocale is not None and platform.system() == 'Linux':
        # These tests are expected to fail on LANG=C systems due to decode
        # errors and on non-Linux systems due to git highchar handling
        # vagaries
        def test_highchars_in_pathelement(self):
            url = url_quote('/static/héhé/index.html')
            res = self.testapp.get(url, status=200)