usse/scrape/funda-scraper/.travis.yml
2023-12-22 15:26:01 +01:00

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