Skip to content

Update pytest requirement from <=8.0.1 to <=8.3.3 #91

Update pytest requirement from <=8.0.1 to <=8.3.3

Update pytest requirement from <=8.0.1 to <=8.3.3 #91

Workflow file for this run

name: TestUI CI integration tests workflow
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
integration_test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: setup python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: install requirements
run: python -m pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
- uses: browser-actions/setup-chrome@latest
- run: chrome --version
- name: Integration browser test with Pytest
run: python -m pytest tests/selenium_tests.py -s