usse/scrape/funda-scraper/.travis.yml

13 lines
295 B
YAML
Raw Normal View History

2023-12-22 14:26:01 +00:00
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