File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
DynamoDbEncryption/runtimes/python Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -55,19 +55,24 @@ commands =
55
55
[testenv:ruff]
56
56
commands_pre =
57
57
poetry install --with linting
58
- commands = poetry run ruff check \
59
- src/aws_dbesdk_dynamodb/ \
60
- ../../../Examples/runtimes/python/DynamoDBEncryption/ \
61
- test/ \
62
- {posargs}
58
+ deps =
59
+ ruff
60
+ commands =
61
+ ruff check \
62
+ src/aws_dbesdk_dynamodb/ \
63
+ ../../../Examples/runtimes/python/DynamoDBEncryption/ \
64
+ test/ \
65
+ {posargs}
63
66
64
67
# Linters
65
68
[testenv:blacken]
66
69
commands_pre =
67
70
poetry install --with linting
71
+ deps =
72
+ black
68
73
basepython = python3
69
74
commands =
70
- poetry run black --line-length 120 \
75
+ black --line-length 120 \
71
76
src/aws_dbesdk_dynamodb/ \
72
77
../../../Examples/runtimes/python/DynamoDBEncryption/ \
73
78
test/ \
You can’t perform that action at this time.
0 commit comments