blob: 41a8eb958e50f23c802250a8da9a639bb2623eaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
language: python
dist: xenial
python:
- "3.7"
- "3.8"
install:
- pip install codecov
- pip install -e ".[test, typecheck]"
script:
- make -i typecheck
- make test
after_success:
- codecov
|