Skip to content

Commit

Permalink
chore(deps): update pygitguardian
Browse files Browse the repository at this point in the history
  • Loading branch information
Jguer committed Oct 28, 2021
1 parent 69f4fea commit 787aa88
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 92 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ verify_ssl = true
[packages]
click = "*"
ggshield = { editable = true, path = "." }
pygitguardian = "==1.2.2"
pygitguardian = "==1.3.1"
python-dotenv = "*"
pyyaml = "*"
yaspin = "~=2.1.0"
Expand Down
165 changes: 77 additions & 88 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_version() -> str:
entry_points={"console_scripts": ["ggshield=ggshield.cmd:cli_wrapper"]},
install_requires=[
"click",
"pygitguardian==1.2.2",
"pygitguardian==1.3.1",
"pyyaml",
"python-dotenv",
"yaspin",
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ignore.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def test_do_not_duplicate_last_found_secrets(client):
THEN only one element should be added
"""
policy_break = PolicyBreak(
"a", "Secrets detection", [Match("apikey", "apikey", 0, 0, 0, 0)]
"a", "Secrets detection", None, [Match("apikey", "apikey", 0, 0, 0, 0)]
)
cache = Cache()

Expand All @@ -194,7 +194,7 @@ def test_do_not_add_policy_breaks_to_last_found(client):
THEN only one element should be added
"""
policy_break = PolicyBreak(
"a", "gitignore", [Match("apikey", "apikey", 0, 0, 0, 0)]
"a", "gitignore", None, [Match("apikey", "apikey", 0, 0, 0, 0)]
)
cache = Cache()

Expand Down

0 comments on commit 787aa88

Please sign in to comment.