feat(misc): added the automation code for testing of docs #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.10.4 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.10.4 | |
- name: Installing package list | |
run: apt list --installed | |
- name: Removing previous chrome instances on runner | |
run: sudo apt purge google-chrome-stable | |
- name: Install xvfb | |
run: sudo apt-get install xvfb | |
- name: Install copy paste mechanism | |
run: sudo apt-get install xsel | |
- name: Create virtual environment | |
run: python -m venv venv | |
- name: Activate virtual environment | |
run: source venv/bin/activate | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install selenium uagents pyperclip pytest psutil undetected-chromedriver chromedriver-autoinstaller PyVirtualDisplay pytest-cov | |
- name: Run your tests | |
run: | | |
python -m pytest tests/automation_test.py |