Skip to content

Commit

Permalink
Removed used of semicolons in build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Jul 7, 2018
1 parent c5fe10d commit 42d1a61
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ matrix:
- gnustep-devel
# Linux for flake8 only
- os: linux
dist: xenial
sudo: required
env:
- FLAKE8_ONLY=1
language: generic
Expand Down Expand Up @@ -82,9 +84,11 @@ install:
- python3.6 -m pip install tox
script:
- |
if [[ "${FLAKE8_ONLY}" == "1" ]]; then
if [[ "${FLAKE8_ONLY}" == "1" ]]
then
python3.6 -m tox -e "flake8"
else if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
else if [[ "${TRAVIS_OS_NAME}" == "osx" ]]
then
make -f Makefile
DYLD_LIBRARY_PATH="$(pwd)/tests/objc" python3.6 -m tox -e "py{34,35,36,37}-default"
else
Expand Down

0 comments on commit 42d1a61

Please sign in to comment.