Skip to content

✏ Minor visual update + add tests for subscribe screen #26

✏ Minor visual update + add tests for subscribe screen

✏ Minor visual update + add tests for subscribe screen #26

Workflow file for this run

name: 🍑 page load test
on:
push:
branches:
- '*'
- '!main'
- '!production'
pull_request:
branches:
- main
jobs:
load-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- name: πŸ“ Checkout Repo
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: πŸ›  Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: πŸ›’ Install dependencies
run: |
python -m pip install --upgrade pip
pip install colorama
pip install selenium
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: 🧭 Setting Up Chrome Driver
uses: nanasess/setup-chromedriver@v2
- name: πŸ“œ Run Test
run: python tests/load.py