Skip to content

Commit a922747

Browse files
author
Lucas McDonald
committed
m
1 parent 8f025c0 commit a922747

File tree

1 file changed

+11
-6
lines changed
  • DynamoDbEncryption/runtimes/python

1 file changed

+11
-6
lines changed

DynamoDbEncryption/runtimes/python/tox.ini

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,24 @@ commands =
5555
[testenv:ruff]
5656
commands_pre =
5757
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}
6366

6467
# Linters
6568
[testenv:blacken]
6669
commands_pre =
6770
poetry install --with linting
71+
deps =
72+
black
6873
basepython = python3
6974
commands =
70-
poetry run black --line-length 120 \
75+
black --line-length 120 \
7176
src/aws_dbesdk_dynamodb/ \
7277
../../../Examples/runtimes/python/DynamoDBEncryption/ \
7378
test/ \

0 commit comments

Comments
 (0)