Skip to content

chore(deps): bump dash from 2.15.0 to 2.16.0 #233

chore(deps): bump dash from 2.15.0 to 2.16.0

chore(deps): bump dash from 2.15.0 to 2.16.0 #233

Workflow file for this run

name: Test app
on:
pull_request:
branches: [ "main" ]
jobs:
deploy-test-container:
name: Test app in container
runs-on: ubuntu-latest
permissions:
contents: 'read'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build docker image
run: |
make docker
- name: Test image
run: |
docker run --rm -d --name test_container -p 8080:8080 noplp-stats:dev
docker run --link test_container:test_container waisbrot/wait
curl --fail -v -o /dev/null http://localhost:8080/global
dash-testing:
name: Run end-to-end Dash tests
runs-on: ubuntu-latest
permissions:
contents: 'read'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python
echo "$HOME/.local/bin" >> $GITHUB_PATH
- uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
- name: setup-chromedriver
uses: nanasess/setup-chromedriver@v2.2.0
- name: Install dependencies
run: |
poetry install
- name: Launch tests
run: |
poetry run pytest