1 language: python 2 python: 3 - "2.6" 4 - "2.7" 5 - "3.2" 6 - "3.3" 7 - "3.4" 8 - "pypy" 9 10 env: 11 - USE_OPTIONAL=true 12 - USE_OPTIONAL=false 13 14 matrix: 15 exclude: 16 - python: "2.7" 17 env: USE_OPTIONAL=false 18 - python: "3.4" 19 env: USE_OPTIONAL=false 20 include: 21 - python: "2.7" 22 env: USE_OPTIONAL=false FLAKE=true 23 - python: "3.4" 24 env: USE_OPTIONAL=false FLAKE=true 25 26 before_install: 27 - git submodule update --init --recursive 28 29 install: 30 - bash requirements-install.sh 31 32 script: 33 - nosetests 34 - bash flake8-run.sh 35 36 after_script: 37 - python debug-info.py 38