We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d4df8 commit 364b8b4Copy full SHA for 364b8b4
.github/workflows/quality_check_pydanticv2.yml
@@ -64,13 +64,5 @@ jobs:
64
run: poetry add "pydantic=^2.0.3"
65
- name: Install dependencies
66
run: make dev
67
- - name: Formatting and Linting
68
- run: make lint
69
- - name: Static type checking
70
- run: make mypy
71
- 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
+ run: make test-pydanticv2
Makefile
@@ -33,6 +33,9 @@ test:
33
poetry run pytest -m "not perf" --ignore tests/e2e --cov=aws_lambda_powertools --cov-report=xml
34
poetry run pytest --cache-clear tests/performance
35
36
+test-pydanticv2:
37
+ poetry run pytest -m "not perf" --ignore tests/e2e
38
+
39
unit-test:
40
poetry run pytest tests/unit
41
0 commit comments