9 lines
150 B
YAML
9 lines
150 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
install:
|
|
- pip install pytest mypy flake8
|
|
script:
|
|
# - flake8
|
|
- mypy --ignore-missing-imports .
|
|
# - pytest -v
|