fix: (DeclarativeOAuthFlow) - allow DeclarativeOauth2Authenticator
to use access_token
directly when no token_refresh_endpoint
or refresh_token
values are provided.
#665
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pytest (Fast) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-build: | |
name: Build and Inspect Python Package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Poetry | |
uses: Gr1N/setup-poetry@v9 | |
with: | |
poetry-version: "1.8.4" | |
- name: Check Poetry lock file is current | |
run: poetry check | |
- uses: hynek/build-and-inspect-python-package@v2 | |
env: | |
# Pass in dummy version '0.0.0dev0' version to appease dynamic versioning | |
POETRY_DYNAMIC_VERSIONING_BYPASS: 0.0.0dev0 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Packages-${{ github.run_id }} | |
path: | | |
/tmp/baipp/dist/*.whl | |
/tmp/baipp/dist/*.tar.gz | |
pytest-fast: | |
name: Pytest (Fast) | |
runs-on: ubuntu-latest | |
steps: | |
# Common steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Poetry | |
uses: Gr1N/setup-poetry@v9 | |
with: | |
poetry-version: "1.8.4" | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "poetry" | |
- name: Install dependencies | |
run: poetry install --all-extras | |
- name: Run Pytest with Coverage (Fast Tests Only) | |
timeout-minutes: 20 | |
run: > | |
poetry run coverage run -m pytest | |
--durations=5 --exitfirst | |
-m "not slow" | |
- name: Print Coverage Report | |
if: always() | |
run: poetry run coverage report | |
- name: Create Coverage Artifacts | |
if: always() | |
run: | | |
poetry run coverage html -d htmlcov | |
poetry run coverage xml -o htmlcov/coverage.xml | |
- name: Upload coverage to GitHub Artifacts | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fasttest-coverage | |
path: htmlcov/ |