- language: python
- python:
- - 3.7
- addons:
- mariadb: 10.5.6
- before_install:
- - python --version
- - pip install -U pip
- - pip install -U pytest
- - pip install codecov
- install:
- - pip install -r requirements.txt
- script: python -m pytest tests # run tests
- after_success:
- - codecov # submit coverage
|