We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3ff186 commit 55ad2adCopy full SHA for 55ad2ad
.github/workflows/quality_check_pydanticv2.yml
@@ -65,7 +65,7 @@ jobs:
65
- name: Install dependencies
66
run: make dev
67
- name: Test with pytest
68
- run: make test
+ run: make test-pydanticv2
69
- name: Security baseline
70
run: make security-baseline
71
- name: Complexity baseline
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