mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-03-04 01:53:59 +01:00
17 lines
219 B
YAML
17 lines
219 B
YAML
|
language: python
|
||
|
|
||
|
python:
|
||
|
- "3.6"
|
||
|
- "3.7"
|
||
|
- "3.8"
|
||
|
|
||
|
install:
|
||
|
- pip install -r requirements.txt
|
||
|
- pip install pytest pytest-cov codecov
|
||
|
|
||
|
script:
|
||
|
- pytest --cov=lnbits
|
||
|
|
||
|
after_success:
|
||
|
- codecov
|