Skip to content

updated readme and pypi #12

updated readme and pypi

updated readme and pypi #12

Workflow file for this run

# name: tests
# on:
# - push
# - pull_request
# jobs:
# build:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest]
# python-version: ['3.9', '3.10', '3.11', '3.12']
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: Setup Chrome dependencies
# run: |
# cd .github
# cd scripts
# ./run.sh
# - name: Run Tests
# run: |
# echo "${{ secrets.ENV_FILE }}" > .env
# pip install -r requirements-test.txt
# mkdir logs
# pytest tests