Skip to content

Commit

Permalink
Merge pull request #651 from burningmantech/dependabot/pip/hypothesis…
Browse files Browse the repository at this point in the history
…-6.92.0

Bump hypothesis from 6.79.3 to 6.92.0
  • Loading branch information
wsanchez authored Oct 2, 2024
2 parents 4966f1a + 6d99475 commit b4ddd53
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 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 Down
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 b4ddd53

Please sign in to comment.