Skip to content

Commit

Permalink
Merge branch 'master' into pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeburg authored Oct 3, 2024
2 parents b99aeb8 + b4ddd53 commit d265bea
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions requirements/requirements-indirect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ charset-normalizer==3.2.0
constantly==15.1.0
exceptiongroup==1.1.2
gitdb==4.0.10
hypothesis==6.79.3
hypothesis==6.92.0
idna==3.4
incremental==22.10.0
jmespath==1.0.1
Expand All @@ -17,5 +17,6 @@ six==1.16.0
smmap==5.0.0
sortedcontainers==2.4.0
typing_extensions==4.7.1
urllib3==1.26.15
urllib3==1.26.15; python_version < "3.10"
urllib3==2.1.0; python_version >= "3.10"
websocket-client==1.7.0
2 changes: 1 addition & 1 deletion requirements/requirements-tests.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
hypothesis==6.79.3
hypothesis==6.92.0
4 changes: 2 additions & 2 deletions src/deploy/aws/test/test_ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1531,8 +1531,8 @@ def test_environment_get(self, cluster: str, service: str) -> None:
tuples(
text( # updates/keys
alphabet=characters(
blacklist_categories=("Cs",),
blacklist_characters="=",
exclude_categories=("Cs",), # type:ignore[arg-type]
exclude_characters="=",
),
),
text(), # updates/values
Expand Down
12 changes: 6 additions & 6 deletions src/deploy/ext/test/test_click.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
)


configBlacklistCategories = (
configExcludeCategories = (
"Cc", # Control
"Cf", # Format
"Cn", # Not assigned
Expand All @@ -57,22 +57,22 @@ class ReadConfigTests(TestCase):
text( # profile
min_size=1,
alphabet=characters(
blacklist_categories=configBlacklistCategories
exclude_categories=configExcludeCategories # type:ignore[arg-type]
+ ("Zs",), # Spaces
blacklist_characters="]",
exclude_characters="]",
),
),
dictionaries( # config keys
text(
min_size=1,
alphabet=characters(
blacklist_categories=configBlacklistCategories,
blacklist_characters="=",
exclude_categories=configExcludeCategories, # type:ignore[arg-type]
exclude_characters="=",
),
),
text( # config values
alphabet=characters(
blacklist_categories=configBlacklistCategories
exclude_categories=configExcludeCategories # type:ignore[arg-type]
),
),
),
Expand Down

0 comments on commit d265bea

Please sign in to comment.