ci: Explicitly install poetry-plugin-export
in CI environments that…
#167
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: Test | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- "cookiecutter/**" | |
- "samples/**" | |
- "singer_sdk/**" | |
- "tests/**" | |
- "noxfile.py" | |
- "poetry.lock" | |
- "pyproject.toml" | |
- ".github/workflows/test.yml" | |
- ".github/workflows/constraints.txt" | |
push: | |
branches: [main] | |
paths: | |
- "cookiecutter/**" | |
- "samples/**" | |
- "singer_sdk/**" | |
- "tests/**" | |
- "noxfile.py" | |
- "poetry.lock" | |
- "pyproject.toml" | |
- ".github/workflows/test.yml" | |
- ".github/workflows/constraints.txt" | |
workflow_dispatch: | |
inputs: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: "1" | |
jobs: | |
tests: | |
name: "Test on ${{ matrix.python-version }} (${{ matrix.session }}) / ${{ matrix.os }} / SQLAlchemy: ${{ matrix.sqlalchemy }}" | |
runs-on: ${{ matrix.os }} | |
env: | |
NOXSESSION: ${{ matrix.session }} | |
strategy: | |
fail-fast: false | |
matrix: | |
session: [tests] | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
sqlalchemy: ["2.*"] | |
include: | |
- { session: tests, python-version: "3.11", os: "ubuntu-latest", sqlalchemy: "1.*" } | |
- { session: doctest, python-version: "3.10", os: "ubuntu-latest", sqlalchemy: "2.*" } | |
- { session: mypy, python-version: "3.8", os: "ubuntu-latest", sqlalchemy: "2.*" } | |
steps: | |
- name: Check out the repository | |
uses: actions/[email protected] | |
- name: Install Poetry | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
run: | | |
pipx install poetry | |
pipx inject poetry poetry-plugin-export | |
poetry --version | |
poetry self show plugins | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
cache: 'pip' | |
cache-dependency-path: 'poetry.lock' | |
- name: Upgrade pip | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
run: | | |
pip install pip | |
pip --version | |
- name: Install Nox | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
run: | | |
pipx install nox | |
pipx inject nox nox-poetry | |
nox --version | |
- name: Run Nox | |
env: | |
SQLALCHEMY_VERSION: ${{ matrix.sqlalchemy }} | |
run: | | |
nox --python=${{ matrix.python-version }} | |
- name: Upload coverage data | |
if: always() && (matrix.session == 'tests') | |
uses: actions/[email protected] | |
with: | |
name: coverage-data | |
path: ".coverage.*" | |
tests-external: | |
name: External Tests | |
runs-on: ubuntu-latest | |
if: ${{ !github.event.pull_request.head.repo.fork }} | |
env: | |
SAMPLE_TAP_GITLAB_AUTH_TOKEN: ${{ secrets.SAMPLE_TAP_GITLAB_AUTH_TOKEN }} | |
SAMPLE_TAP_GITLAB_GROUP_IDS: ${{ secrets.SAMPLE_TAP_GITLAB_GROUP_IDS }} | |
SAMPLE_TAP_GITLAB_PROJECT_IDS: ${{ secrets.SAMPLE_TAP_GITLAB_PROJECT_IDS }} | |
SAMPLE_TAP_GITLAB_START_DATE: "2022-01-01T00:00:00Z" | |
SAMPLE_TAP_GOOGLE_ANALYTICS_CLIENT_EMAIL: ${{ secrets.SAMPLE_TAP_GOOGLE_ANALYTICS_CLIENT_EMAIL }} | |
SAMPLE_TAP_GOOGLE_ANALYTICS_PRIVATE_KEY: ${{ secrets.SAMPLE_TAP_GOOGLE_ANALYTICS_PRIVATE_KEY }} | |
SAMPLE_TAP_GOOGLE_ANALYTICS_VIEW_ID: ${{ secrets.SAMPLE_TAP_GOOGLE_ANALYTICS_VIEW_ID }} | |
steps: | |
- name: Check out the repository | |
uses: actions/[email protected] | |
- name: Install Poetry | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
run: | | |
pipx install poetry | |
pipx inject poetry poetry-plugin-export | |
poetry --version | |
poetry self show plugins | |
- name: Setup Python 3.10 | |
uses: actions/[email protected] | |
with: | |
python-version: '3.10' | |
architecture: x64 | |
cache: 'pip' | |
cache-dependency-path: 'poetry.lock' | |
- name: Upgrade pip | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
run: | | |
pip install pip | |
pip --version | |
- name: Install Nox | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
run: | | |
pipx install nox | |
pipx inject nox nox-poetry | |
nox --version | |
- name: Run Nox | |
run: | | |
nox -s tests -p 3.10 -- -m "external" | |
coverage: | |
name: Coverage | |
runs-on: ubuntu-latest | |
needs: tests | |
steps: | |
- name: Check out the repository | |
uses: actions/[email protected] | |
- name: Install Poetry | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
run: | | |
pipx install poetry | |
pipx inject poetry poetry-plugin-export | |
poetry --version | |
poetry self show plugins | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
cache-dependency-path: 'poetry.lock' | |
- name: Upgrade pip | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt pip | |
pip --version | |
- name: Download coverage data | |
uses: actions/[email protected] | |
with: | |
name: coverage-data | |
- name: Install Nox | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
run: | | |
pipx install nox | |
pipx inject nox nox-poetry | |
nox --version | |
- name: Combine coverage data and display human readable report | |
run: | | |
nox --session=coverage | |
- name: Create coverage report | |
run: | | |
nox --session=coverage -- xml | |
- name: Upload coverage report | |
uses: codecov/[email protected] | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |