Browse Source

Remove NOKOGIRI_USE_SYSTEM_LIBRARIES from Travis. #236.

Nokogiri linked to the version of libxml2 shipped in Travis' Trusty
image exhibits incorrect behavior when parsing strings resembling

    <p>I <3 oats</p>

In particular, Html2Text.convert (which uses nokogiri) will return "I"
for the above string when it ought to return "I <3 oats".

The version of libxml2 shipped with nokogiri 1.8.1+ exhibits correct
parse behavior for this string, as does the libxml2 present in Ubuntu
Xenial.
closed-social-glitch-2
David Yip 6 years ago
parent
commit
380989def8
No known key found for this signature in database GPG Key ID: 7DA0036508FCC0CC
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      .travis.yml

+ 0
- 1
.travis.yml View File

@ -18,7 +18,6 @@ env:
- LOCAL_DOMAIN=cb6e6126.ngrok.io
- LOCAL_HTTPS=true
- RAILS_ENV=test
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- PARALLEL_TEST_PROCESSORS=2
- "PATH=$HOME:$PATH"

Loading…
Cancel
Save