Skip to content

Bump openpyxl from 3.1.2 to 3.1.4 #110

Bump openpyxl from 3.1.2 to 3.1.4

Bump openpyxl from 3.1.2 to 3.1.4 #110

Workflow file for this run

name: Regression Test With Pytest
on:
pull_request:
branches:
- main
types:
- review_requested
workflow_call:
jobs:
regression-test:
name: Run pytest regression test
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Download test data
run: gh release download --pattern '*.zip' -R platomo/OpenTrafficCam-testdata -D tests/data
env:
GH_TOKEN: ${{ secrets.PLATOMO_OTC_TESTDATA_ACCESS }}
- name: Unzip test data
run: |
cd tests/data
unzip \*.zip
rm *.zip
cd ..
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run regression tests
run: pytest ./tests/regression_otanalytics.py