summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 402d9e123f47b81da92cb3dc777694e916499a33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: python
python:
  - "2.7"
  - "3.6"
matrix:
  include:
    - python: "3.7"
      dist: xenial  # Need for python 3.7
  allow_failures:
    - python: "3.6"
    - python: "3.7"
install: pip install -r requirements.txt
before_script: flake8 ./bin/q ./test/test-suite --count --select=E901,E999,F821,F822,F823 --show-source --statistics
script: test/test-all