Skip to content

Update README.rst

Update README.rst #15

Workflow file for this run

name: Build and test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- 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 pytest-cov tox
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
export PYTHONPATH=exception_with_retry
- name: Test
run: |
tox |grep TOTAL.* |grep -P -oh '[\d]+%' > cvg.txt
- name: Artifacts
uses: actions/upload-artifact@v2
with:
name: code-coverage-report
path: cvg.txt