language: cpp install: # compilers - sudo apt-get install g++ cmake gfortran # math libraries - sudo apt-get install libblas-dev liblapack-dev # MPI - sudo apt-get install openmpi-bin libopenmpi-dev # PEP8 and py.test - sudo pip install pytest pep8 script: - pep8 --ignore=E501 update.py - pep8 --ignore=E501 test/test.py - pep8 --ignore=E501 lib/config.py - py.test -vv update.py - py.test -vv test/test.py - py.test -vv lib/config.py