Skip to content

Commit

Permalink
ci: Test on PyPy (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Dec 13, 2023
1 parent 5d698cd commit 3c7a67d
Show file tree
Hide file tree
Showing 4 changed files with 163 additions and 167 deletions.
72 changes: 29 additions & 43 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,51 +1,37 @@
name: Publish to PyPI
name: Build

on:
release:
types: [published]
push:

permissions:
contents: write
id-token: write
contents: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- name: Build
run: |
hatch build
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hynek/build-and-inspect-python-package@v1

upload:
runs-on: ubuntu-latest
needs: build
environment: publish
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: dist
path: dist
- name: Upload wheel to release
uses: svenstaro/upload-release-action@v2
with:
file: dist/*.whl
tag: ${{ github.ref }}
overwrite: true
file_glob: true
publish:
runs-on: ubuntu-latest
needs: build
environment: publish
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: Packages
path: dist
- name: Upload wheel to release
uses: svenstaro/upload-release-action@v2
with:
file: dist/*.whl
tag: ${{ github.ref }}
overwrite: true
file_glob: true

- name: Publish
uses: pypa/gh-action-pypi-publish@v1.8.11
- name: Publish
uses: pypa/gh-action-pypi-publish@v1.8.11
253 changes: 131 additions & 122 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,134 +1,143 @@
name: Test

on:
push:
branches: [ main ]
paths:
- src/**
- tests/**
- pyproject.toml
- .github/workflows/test.yml
- .github/workflows/constraints.txt
pull_request:
branches: [ main ]
paths:
- src/**
- tests/**
- pyproject.toml
- .github/workflows/test.yml
- .github/workflows/constraints.txt
workflow_dispatch: {}
schedule:
- cron: "40 12 * * 1-5"
push:
branches: [main]
paths:
- src/**
- tests/**
- pyproject.toml
- .github/workflows/test.yaml
- .github/workflows/constraints.txt
pull_request:
branches: [main]
paths:
- src/**
- tests/**
- pyproject.toml
- .github/workflows/test.yaml
- .github/workflows/constraints.txt
workflow_dispatch: {}
schedule:
- cron: "40 12 * * 1-5"

concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

env:
FORCE_COLOR: "1"

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
cache: pip
python-version: "3.12"
- name: Install dependencies
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- name: Run lint
env:
HATCH_ENV: lint
run: |
hatch run style
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: pip
python-version: "3.12"
- name: Install dependencies
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- name: Run lint
env:
HATCH_ENV: lint
run: |
hatch run style
typing:
name: Typing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
cache: pip
python-version: "3.12"
- name: Install dependencies
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- name: Run typing
env:
HATCH_ENV: lint
run: |
hatch run typing
typing:
name: Typing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: pip
python-version: "3.12"
- name: Install dependencies
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- name: Run typing
env:
HATCH_ENV: lint
run: |
hatch run typing
test:
name: Pytest (Python ${{ matrix.python-version }}, ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- python-version: "3.12"
os: "windows-latest"
test:
name: Pytest (Python ${{ matrix.python-version }}, ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- python-version: "3.13"
os: "ubuntu-latest"

- python-version: "3.12"
os: "macos-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
cache: pip
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- name: Run tests
env:
HATCH_ENV: "test.py${{ matrix.python-version }}"
run: |
hatch run cov
- uses: actions/upload-artifact@v3
with:
name: coverage-data
path: ".coverage.*"
- python-version: "pypy3.10"
os: "ubuntu-latest"

- python-version: "3.12"
os: "windows-latest"

- python-version: "3.12"
os: "macos-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: pip
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- name: Run tests
env:
HATCH_ENV: "test"
run: |
hatch run +py=${{ matrix.python-version }} cov
- uses: actions/upload-artifact@v3
with:
name: coverage-data
path: ".coverage.*"

coverage:
name: Coverage
runs-on: ubuntu-latest
needs: test
coverage:
name: Coverage
runs-on: ubuntu-latest
needs: test
env:
PYTHON: "3.12"
HATCH_ENV: coverage
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON }}
- name: Install dependencies
env:
PYTHON: "3.12"
HATCH_ENV: coverage
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON }}
- name: Install dependencies
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- uses: actions/download-artifact@v3
with:
name: coverage-data
- name: Combine coverage data
run: |
hatch run report
- name: Create coverage XML report
run: |
hatch run xml
- uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
PIP_CONSTRAINT: .github/workflows/constraints.txt
run: |
pipx install hatch
- uses: actions/download-artifact@v3
with:
name: coverage-data
- name: Combine coverage data
run: |
hatch run report
- name: Create coverage XML report
run: |
hatch run xml
- uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ test = "pytest {args:tests}"
cov = "coverage run -m pytest {args:tests}"

[[tool.hatch.envs.test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]

[tool.hatch.envs.coverage]
dependencies = [
Expand Down
3 changes: 2 additions & 1 deletion tests/test_generic.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from importlib.metadata import PathDistribution

import pytest
from hypothesis import given
from hypothesis import HealthCheck, given, settings
from hypothesis_jsonschema import from_schema

from pep610 import read_from_distribution, write_to_distribution


@settings(suppress_health_check=[HealthCheck.too_slow])
@given(
from_schema(
{
Expand Down

0 comments on commit 3c7a67d

Please sign in to comment.