Skip to content

Commit

Permalink
ui.yml added (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
e-b-e-d-a authored Dec 6, 2024
1 parent 6822583 commit 184bdb4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "UI Website tests"
run-name: UI tests

on:
schedule:
- cron: "0 3 * * 0,1,2,3,4"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest

env:

steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Install Chrome
run: sudo apt-get install google-chrome-stable

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install --upgrade pytest pytest-html
- name: Run tests
run:
python -m pytest ui/tests

0 comments on commit 184bdb4

Please sign in to comment.