1aba5f4cfSVladimir Kotal#!/bin/bash 2aba5f4cfSVladimir Kotal 3aba5f4cfSVladimir Kotalif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 4aba5f4cfSVladimir Kotal sudo apt-get update -qq 5*193b2204SVladimir Kotal sudo apt-get install -qq cvs git mercurial cssc bzr subversion monotone rcs rcs-blame python3 python3-pip pep8 nodejs; 68182cfb4SVladimir 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 11*193b2204SVladimir Kotal brew install ctags cvs node 12aba5f4cfSVladimir Kotal brew upgrade python 13aba5f4cfSVladimir Kotal pip3 install pep8 flake8 14aba5f4cfSVladimir Kotalfi 152a63f72dSVladimir Kotal 162a63f72dSVladimir Kotalsudo ./dev/install-universal_ctags.sh 17*193b2204SVladimir Kotal 18*193b2204SVladimir Kotal# for API blueprint verification 19*193b2204SVladimir Kotalnpm install drafter 20