behave-framework/.gitea/workflows/chrome-tests.yml

48 lines
1.4 KiB
YAML
Raw Normal View History

2024-07-23 19:33:29 +00:00
name: ChromeTests
on: [ push ]
jobs:
build:
runs-on: ubuntu-gitea
strategy:
matrix:
python-version: [ "3.12" ]
env:
2024-07-23 20:04:51 +00:00
CHROMEDRIVER_VERSION: 114.0.5735.90
2024-07-23 19:33:29 +00:00
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
mkdir drivers
2024-07-23 20:08:35 +00:00
- name: Prep the Debian repositories
run: |
apt update -y
apt upgrade -y
2024-07-23 19:37:33 +00:00
- name: Install Chrome and Chromedriver for Linux
2024-07-23 19:33:29 +00:00
if: runner.os == 'Linux'
run: |
2024-07-23 20:04:51 +00:00
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
2024-07-23 20:08:35 +00:00
# dpkg -i google-chrome-stable_current_amd64.deb
2024-07-23 20:19:37 +00:00
dpkg -i --force-all google-chrome-stable_current_amd64.deb
2024-07-23 20:04:51 +00:00
google-chrome --version
wget https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip
2024-07-23 20:08:35 +00:00
unzip chromedriver_linux64.zip
2024-07-23 20:04:51 +00:00
mv chromedriver drivers
2024-07-23 19:33:29 +00:00
- name: Run the pytests
run: pytest -c pytest.ini -m chrome
- name: Run the behave tests
run: behave --tags=mark.chrome