diff options
| author | Tres Seaver <tseaver@palladion.com> | 2014-11-17 08:36:59 -0500 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2014-11-17 08:36:59 -0500 |
| commit | 0760606f7b6af51a4431e336f46541485387efd5 (patch) | |
| tree | b602d4a537840983c334fb440109381d50e9074d | |
| parent | c0f1fc8d31df45371d5ae6689d3e0a39c058c3ac (diff) | |
| download | pyramid-0760606f7b6af51a4431e336f46541485387efd5.tar.gz pyramid-0760606f7b6af51a4431e336f46541485387efd5.tar.bz2 pyramid-0760606f7b6af51a4431e336f46541485387efd5.zip | |
Don't fail coverage check on systems w/ locale set.
See: http://jenkins.pylonsproject.org/job/pyramid/1617/console.
| -rw-r--r-- | pyramid/tests/test_integration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/tests/test_integration.py b/pyramid/tests/test_integration.py index 35648ed38..c2786c391 100644 --- a/pyramid/tests/test_integration.py +++ b/pyramid/tests/test_integration.py @@ -81,7 +81,7 @@ class StaticAppBase(IntegrationBase): res = self.testapp.get('/static/.hiddenfile', status=200) _assertBody(res.body, os.path.join(here, 'fixtures/static/.hiddenfile')) - if defaultlocale is not None: + if defaultlocale is not None: # pragma: no cover # 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 |
