17 lines
375 B
YAML
17 lines
375 B
YAML
dist: xenial
|
|
language: python
|
|
os: linux
|
|
install:
|
|
- sudo apt-get update
|
|
- sudo apt-get install portaudio19-dev
|
|
- pip install -r requirements.txt
|
|
- pip install -r requirements.dev
|
|
- pip install pyqt5 pyqtwebengine
|
|
|
|
jobs:
|
|
include:
|
|
- python: 3.6
|
|
script: make -j 4 test lint mypy
|
|
- python: 3.7
|
|
script: ./tools/typecheck-setup.sh && make -j 4 check
|