forked from joke2k/faker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
#!/bin/bash | ||
|
||
if [[ -z "${TEST_32BIT}" ]]; then | ||
echo "Not on Travis" | ||
echo "Not on CI" | ||
exit 0 | ||
fi | ||
|
||
docker run -v ${PWD}:/code -e INSTALL_REQUIREMENTS=${INSTALL_REQUIREMENTS} i386/ubuntu bash -c " | ||
apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq python3.7 locales python3-pip debianutils \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq python3.8 locales python3-pip debianutils \ | ||
&& python3.7 -m pip install tox coveralls \ | ||
&& locale-gen en_US.UTF-8 \ | ||
&& export LANG='en_US.UTF-8' \ | ||
&& cd /code \ | ||
&& python3.7 -m tox -e py \ | ||
&& python3.8 -m tox -e py \ | ||
&& coverage report" |