-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (37 loc) · 1.11 KB
/
ci-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
- name: Run your tests
run: |
python -m pytest tests/automation_tests.py