13 lines
295 B
YAML
13 lines
295 B
YAML
language: python
|
|
python:
|
|
- "3.8"
|
|
install:
|
|
- pip install -e .
|
|
- pip install pytest pytest-cov codecov
|
|
script:
|
|
- pytest --cov funda_scraper tests
|
|
- curl -Os https://uploader.codecov.io/latest/linux/codecov
|
|
- chmod +x codecov
|
|
- ./codecov -t ${CODECOV_TOKEN}
|
|
after_success:
|
|
- codecov |