diff options
author | David Yip <yipdw@member.fsf.org> | 2018-02-10 11:01:49 -0600 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2018-02-10 19:29:17 -0600 |
commit | 380989def863fb8eafbd7f6b53f8bfbf9f813528 (patch) | |
tree | 6ed37e20febbac1cf4b38d3d569da0ce78e3775c | |
parent | f1f67c46c5b369476090429a46dbc646d772ae25 (diff) |
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.
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c9a442aed..505d8683e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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" |