-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #767 from Amsterdam/filter_fuzy_street
Query address fuzzy on case filter
- Loading branch information
Showing
10 changed files
with
68 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,11 +24,24 @@ def get_case_mock( | |
description_citizenreport=None, | ||
identification=None, | ||
): | ||
return { | ||
case_data = { | ||
"theme_id": theme_id, | ||
"reason_id": reason, | ||
"bag_id": bag_id, | ||
"subject_ids": subjects, | ||
"description_citizenreport": description_citizenreport, | ||
"identification": identification, | ||
} | ||
|
||
if identification: | ||
case_data["citizen_reports"] = [ | ||
{ | ||
"identification": identification, | ||
"reporter_name": "Arie", | ||
"reporter_phone": "0612345678", | ||
"reporter_email": "[email protected]", | ||
"advertisement_linklist": [], | ||
"description_citizenreport": description_citizenreport, | ||
"nuisance": False, | ||
} | ||
] | ||
|
||
return case_data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ plugins = nose2.plugins.mp | |
|
||
[multiprocess] | ||
always-on = True | ||
processes = 3 | ||
processes = 12 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.