Skip to content

Commit

Permalink
Add output check
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Dec 26, 2024
1 parent 2f297d7 commit ee57978
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 144 deletions.
69 changes: 0 additions & 69 deletions .github/workflows/aio_integration.yml

This file was deleted.

67 changes: 0 additions & 67 deletions .github/workflows/integration.yml

This file was deleted.

19 changes: 11 additions & 8 deletions .github/workflows/integration_full.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Integration"
name: "e2e"

on:
schedule:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
integration:
name: "Integration"
name: "e2e"
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -25,19 +25,22 @@ jobs:
- "types-aiobotocore-full"
- "types-aiobotocore-custom"
python_version:
- "3.8"
- "3.10"
- "3.13"
- "3.8" # oldest supported
- "3.10" # most popular
- "3.13" # latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: types-boto3-full integration tests
- name: Integration tests
run: |
uv run scripts/integration.py \
--product ${{ matrix.product }} \
--python ${{ matrix.python_version }} \
--wheel \
-d
--output-path=mypy_boto3_output \
-d
- name: Lint output
run: |
uv run scripts/check_output.py -p ./mypy_boto3_output

0 comments on commit ee57978

Please sign in to comment.