Skip to content

Bump pylint from 3.0.3 to 3.2.7 #90

Bump pylint from 3.0.3 to 3.2.7

Bump pylint from 3.0.3 to 3.2.7 #90

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