• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: python
2python:
3  - "2.6"
4  - "2.7"
5  - "3.2"
6  - "3.3"
7  - "3.4"
8  - "pypy"
9
10env:
11  - USE_OPTIONAL=true
12  - USE_OPTIONAL=false
13
14matrix:
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
26before_install:
27  - git submodule update --init --recursive
28
29install:
30  - bash requirements-install.sh
31
32script:
33  - nosetests
34  - bash flake8-run.sh
35
36after_script:
37  - python debug-info.py
38