Skip to content

try with latest chrome version #72

try with latest chrome version

try with latest chrome version #72

Workflow file for this run

name: CI
on:
- push
- pull_request
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Chrome and chromedriver
uses: browser-actions/setup-chrome@v1
with:
chrome-version: "132.0.6821.2"
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest dash[testing]
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest tests
#--cov htm_dashboard --cov-report xml --cov-report term
# - name: Upload to codecov
# run: |
# curl -Os https://uploader.codecov.io/latest/linux/codecov
# chmod +x codecov
# ./codecov