-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (24 loc) · 815 Bytes
/
Copy pathpython_tests.yml
File metadata and controls
30 lines (24 loc) · 815 Bytes
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
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Testing JSON-Schema Changes
runs-on: windows-latest
steps:
- name: Github Checkout
uses: actions/checkout@v3
- name: Installing Python Version 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Installing Chrome Browser to test Validations.
uses: browser-actions/setup-chrome@v1
- name: Installing Chromedriver to run webdrivers in Selenium.
uses: nanasess/setup-chromedriver@v2
- name: Installing required Python dependencies.
run: pip install pytest selenium matplotlib
- name: Running Python Tests with pytest
run: pytest -v tests/final_tests.py