Skip to content

Update super props #604

Update super props

Update super props #604

Workflow file for this run

name: Test
on:
push:
pull_request:
types: [ opened, synchronize ]
jobs:
pytest:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up CPython 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install -e .[test]
- name: Run tests
shell: bash
run: |
PYTHONPATH="$(pwd)" pytest -vs --cov=discord --cov-report term-missing:skip-covered