Test Data #294
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: Test Data | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '59 23 * * 1,5' | |
jobs: | |
test_data: | |
runs-on: ${{ matrix.os }} | |
if: github.ref == 'refs/heads/main' | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.8'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install packages | |
run: | |
python -m pip install --upgrade pip | |
pip install -e .[dev] | |
- name: Run data tests | |
run: | |
pytest test/test_data.py -m "(longruns or not longruns) and not highmemory" -s -v |