summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 07f1415e4c023cd9dda663026e1b031c258e3718 (plain)
1
2
3
4
5
6
7
8
9
10
11
language: python
python:
  - "2.7"
  - "3.6"
matrix:
  include:
    - python: "3.7"
      dist: xenial  # Need for 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: PYTHONIOENCODING=UTF-8 test/test-all