* Add __main__ type hints * Fix most errors of __main__ * Add ignore for script.run() * Add type annotations for from_config_dict and from_config_file * Fix errors * Fix requirement error * Add mypy type check to tests * Enable travis typing check * Messed up the tox deps * Laxer type checker
24 lines
476 B
YAML
24 lines
476 B
YAML
sudo: false
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- python: "3.4"
|
|
env: TOXENV=py34
|
|
- python: "3.4"
|
|
env: TOXENV=requirements
|
|
- python: "3.5"
|
|
env: TOXENV=lint
|
|
- python: "3.5"
|
|
env: TOXENV=typing
|
|
- python: "3.5"
|
|
env: TOXENV=py35
|
|
allow_failures:
|
|
- python: "3.5"
|
|
env: TOXENV=typing
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
install: pip install -U tox coveralls
|
|
language: python
|
|
script: tox
|
|
after_success: coveralls
|