As became apparent in #49, "something" changed in the Travis-CI environment that caused the build to break because tests suddenly started failing.
This seemed to have something to do with the locales. Listing all of the locales installed on the Travis machine corroborated this:
$ locale -a
C
C.UTF-8
en_US.utf8
POSIX
pt_BR.utf8
pt_PT.utf8
The most simple solution seemed to be: making sure all of the needed locales were available by explicitly installing them. This can easily be achieved by adding the install commands to the Travis configuration file, in a before_script step.
This pull request does that.
@Ocramius Are we good to merge, or did I miss anything?
As became apparent in #49, "something" changed in the Travis-CI environment that caused the build to break because tests suddenly started failing.
This seemed to have something to do with the locales. Listing all of the locales installed on the Travis machine corroborated this:
The most simple solution seemed to be: making sure all of the needed locales were available by explicitly installing them. This can easily be achieved by adding the install commands to the Travis configuration file, in a
before_script
step.This pull request does that.
@Ocramius Are we good to merge, or did I miss anything?