Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/oauthlib/oauthlib
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHuot committed Aug 26, 2023
2 parents 3776064 + 7fb099a commit 56dd984
Show file tree
Hide file tree
Showing 6 changed files with 95 additions and 75 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/lint_python.yml
Expand Up @@ -8,15 +8,20 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.x
check-latest: true
- run: pip install --upgrade pip setuptools wheel
- run: pip install black codespell mypy pytest ruff safety
- run: ruff --format=github .
- run: pip install bandit black codespell flake8 flake8-2020 flake8-bugbear
flake8-comprehensions isort mypy pytest pyupgrade safety
- run: bandit --recursive --skip B101,B105,B106,B107,B324 .
- run: black --check . || true
- run: codespell # --ignore-words-list="" --skip="*.css,*.js,*.lock"
- run: pip install -r requirements-test.txt
- run: pip install --editable .
- run: codespell || true # --ignore-words-list="" --skip="*.css,*.js,*.lock"
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- run: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88
--show-source --statistics
- run: isort --check-only --profile black . || true
- run: pip install -r requirements.txt || pip install --editable . || true
- run: mkdir --parents --verbose .mypy_cache
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
- run: pytest
- run: pytest . || true
- run: pytest --doctest-modules . || true
- run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true
- run: safety check
41 changes: 41 additions & 0 deletions .github/workflows/python-build.yml
@@ -0,0 +1,41 @@
name: Python Tests
run-name: Run Tests by ${{ github.actor }}
on: [push]
jobs:
tests:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Check out repository code
uses: actions/checkout@v3
- name: Install prereq
run: pip install tox coveralls
- name: Run python tests
run: tox -e ${{ matrix.python }}
- name: Coveralls
run: coveralls
docs:
strategy:
matrix:
toxenv: ["docs", "readme"]
runs-on: ubuntu-latest
steps:
- run: sudo apt install -y graphviz
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Check out repository code
uses: actions/checkout@v3
- name: Install prereq
run: pip install tox
- name: Run python tests
run: tox -e ${{ matrix.toxenv }}
32 changes: 32 additions & 0 deletions .github/workflows/python-publish.yml
@@ -0,0 +1,32 @@
name: Production deploy
on:
workflow_run:
workflows: ["Python Tests"]
types:
- completed
jobs:
pypi-publish:
if: |
${{ github.event.workflow_run.conclusion == 'success' }} &&
${{ github.ref_type == 'tag' }}
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/oauthlib
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Check out repository code
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install prereq
run: pip install wheel
- name: Build python package
run: python setup.py build
- name: Package python package
run: python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
58 changes: 0 additions & 58 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -81,4 +81,4 @@ dance:

.DEFAULT_GOAL := all
.PHONY: clean test bottle dance django flask requests
all: clean test bottle dance django flask requests
all: test bottle dance django flask requests
18 changes: 9 additions & 9 deletions tox.ini
@@ -1,39 +1,39 @@
# require tox>=4
[tox]
envlist = py36,py37,py38,py39,py310,py311,pypy3,docs,readme,bandit,isort
envlist = py38,py39,py310,py311,pypy3,docs,readme,bandit,isort

[testenv]
deps=
-rrequirements-test.txt
commands=
pytest --cov=oauthlib tests/


# tox -e docs to mimic readthedocs build.
# as of today, RTD is using python3.7 and doesn't run "setup.py install"
[testenv:docs]
basepython=python3.7
basepython=python3.11
skipsdist=True
deps=
sphinx
sphinx_rtd_theme
changedir=docs
whitelist_externals=make
allowlist_externals=make
commands=make clean html

# tox -e readme to mimic PyPI long_description check
[testenv:readme]
basepython=python3.8
basepython=python3.11
deps=twine>=1.12.0
whitelist_externals=echo
allowlist_externals=echo
commands=
twine check .tox/dist/*
twine check .tox/.pkg/dist/*

[testenv:bandit]
basepython=python3.8
basepython=python3.11
skipsdist=True
deps=bandit
commands=bandit -b bandit.json -r oauthlib/
whitelist_externals=bandit
allowlist_externals=bandit

[testenv:isort]
basepython = python3.8
Expand Down

0 comments on commit 56dd984

Please sign in to comment.