Skip to content

Table now shows Isotope and Notes #66

Table now shows Isotope and Notes

Table now shows Isotope and Notes #66

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
# Pinned Chrome version because chromedriver v120 recognized as chrome-headless-shell instead of chrome
# https://github.com/plotly/dash/issues/2712
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=4665
# https://github.com/mckinsey/vizro/pull/215/
# If these are fixed then this whole step can be removed.
- name: Install Chrome and chromedriver
uses: browser-actions/setup-chrome@v1
with:
chrome-version: "119.0.6045.105"
chromedriver-version: "119.0.6045.105"
- 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