Skip to content

Merge pull request #128 from vkoves/117-add-data-visualization-for-re… #111

Merge pull request #128 from vkoves/117-add-data-visualization-for-re…

Merge pull request #128 from vkoves/117-add-data-visualization-for-re… #111

Workflow file for this run

# A GitHub action to run our data tests
name: Pytest Data Tests
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
jobs:
pytest:
name: 'Pytest'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
cd src/data
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest