File: .travis.yml

package info (click to toggle)
q-text-as-data 1.7.4%2B2018.12.21%2Bgit%2B28f776ed46-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 476 kB
  • sloc: python: 3,124; sh: 96; makefile: 23
file content (14 lines) | stat: -rw-r--r-- 364 bytes parent folder | download | duplicates (2)
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