Skip to content

Commit

Permalink
Add environmental vars in docker run command
Browse files Browse the repository at this point in the history
  • Loading branch information
canyon289 committed Dec 29, 2018
1 parent db48853 commit b5d3855
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ script:

# - if [[ $NAME == SPHINX ]]; then travis-sphinx build --nowarn --source=doc ; fi

- if [[ $NAME == SPHINX ]]; then docker run --name arviz_sphinx arviz:latest /bin/bash -c \
- if [[ $NAME == SPHINX ]]; then docker run --name arviz_sphinx -e "LC_ALL=C.UTF-8" \
-e "LANG=C.UTF-8"
arviz:latest bin/bash -c \
"source /root/.bashrc && \
export LC_ALL=C.UTF-8 && \
export LANG=C.UTF-8 && \
Expand Down

0 comments on commit b5d3855

Please sign in to comment.