Skip to content

deps: bump requests-oauthlib to <3 to allow v2.0.0 #1587

deps: bump requests-oauthlib to <3 to allow v2.0.0

deps: bump requests-oauthlib to <3 to allow v2.0.0 #1587

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[async,dev,test]
- name: Run tests
run: |
coverage run -m unittest discover tests
- name: Send coverage to Coveralls
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: python-${{ matrix.python-version }}
COVERALLS_PARALLEL: true
COVERALLS_SERVICE_NAME: github
if: ${{ github.event_name == 'push' }}
run: |
coveralls
coveralls:
needs: test
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finish sending coverage to Coveralls
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install coveralls
coveralls --finish