a | b/.travis.yml | ||
---|---|---|---|
1 | dist: xenial # required for Python >= 3.7 |
||
2 | language: python |
||
3 | python: |
||
4 | - "3.7" |
||
5 | - "3.8" |
||
6 | |||
7 | # command to install dependencies |
||
8 | install: |
||
9 | - pip install . |
||
10 | # command to run tests |
||
11 | script: pytest |