1aba5f4cfSVladimir Kotal#!/bin/bash 2aba5f4cfSVladimir Kotal 3aba5f4cfSVladimir Kotalif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 4aba5f4cfSVladimir Kotal sudo apt-get update -qq 53bd78204SVladimir Kotal sudo apt-get install -qq exuberant-ctags cvs git mercurial cssc bzr subversion monotone rcs rcs-blame python3 python3-pip pep8; 6*8182cfb4SVladimir Kotal sudo ./dev/install-bitkeeper.sh 7aba5f4cfSVladimir Kotal sudo pip3 install --upgrade pip 8aba5f4cfSVladimir Kotal sudo pip3 install flake8 9aba5f4cfSVladimir Kotalelif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then 10aba5f4cfSVladimir Kotal brew update 11aba5f4cfSVladimir Kotal brew install ctags cvs 12aba5f4cfSVladimir Kotal brew upgrade python 13aba5f4cfSVladimir Kotal pip3 install pep8 flake8 14aba5f4cfSVladimir Kotalfi 15