Skip to content

Commit 364b8b4

Browse files
chore(ci): lint and type checking removal in Pydantic v2 quality check (#3360)
1 parent 85d4df8 commit 364b8b4

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/quality_check_pydanticv2.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,5 @@ jobs:
6464
run: poetry add "pydantic=^2.0.3"
6565
- name: Install dependencies
6666
run: make dev
67-
- name: Formatting and Linting
68-
run: make lint
69-
- name: Static type checking
70-
run: make mypy
7167
- name: Test with pytest
72-
run: make test
73-
- name: Security baseline
74-
run: make security-baseline
75-
- name: Complexity baseline
76-
run: make complexity-baseline
68+
run: make test-pydanticv2

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ test:
3333
poetry run pytest -m "not perf" --ignore tests/e2e --cov=aws_lambda_powertools --cov-report=xml
3434
poetry run pytest --cache-clear tests/performance
3535

36+
test-pydanticv2:
37+
poetry run pytest -m "not perf" --ignore tests/e2e
38+
3639
unit-test:
3740
poetry run pytest tests/unit
3841

0 commit comments

Comments
 (0)