Espn API Integration Test #1652
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Espn API Integration Test | |
on: | |
schedule: | |
# run once a day | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: python setup.py install | |
- name: Test integration | |
run: | | |
python3 setup.py nosetests --tests tests/football/integration/ | |
python3 setup.py nosetests --tests tests/basketball/integration/ | |
python3 setup.py nosetests --tests tests/hockey/integration/ | |
python3 setup.py nosetests --tests tests/baseball/integration/ |