language: python
python:
    - "2.7"
    - "3.2"
    - "3.3"
    - "3.4"
    - "3.5"
# command to install dependencies
install: bash Tests/install.sh
# script to run before running tests
#before_script:
    # 
# command to run tests
script:
   bash Tests/run.sh

# notification settings
#notifications:
    #email:
        #recipients:
        #    - username@gmail.com
        #on_success: change
        #on_failure: always
# whitelist
branches:
    only:
        - master

