Skip to content

Commit

Permalink
Merge branch 'master' of github.com:demisto/content into NetQuest_OMX…
Browse files Browse the repository at this point in the history
…_Integration
  • Loading branch information
rshunim committed Jan 9, 2025
2 parents 0a6e605 + db8f9db commit 9847ba3
Show file tree
Hide file tree
Showing 1,800 changed files with 50,157 additions and 8,188 deletions.
6 changes: 3 additions & 3 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
validation_config.toml @YuvHayun

# XDR Related
/Packs/CortexXDR/Integrations/ @maimorag
/Packs/Core/Integrations/ @maimorag
/Packs/ApiModules/Scripts/CoreIRApiModule/* @maimorag
/Packs/CortexXDR/Integrations/ @tcarmeli1
/Packs/Core/Integrations/ @tcarmeli1
/Packs/ApiModules/Scripts/CoreIRApiModule/* @tcarmeli1

# Demisto Class
Packs/ApiModules/Scripts/DemistoClassApiModule/DemistoClassApiModule.py @dantavori
Expand Down
11 changes: 5 additions & 6 deletions .github/content_roles.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
"TIM_REVIEWER": "The GitHub username for TIM reviews owner"
},
"CONTRIBUTION_REVIEWERS": [
"YairGlik",
"amshamah419",
"MLainer1"
"mayyagoldman",
"talzich"
],
"CONTRIBUTION_TL": "samuelFain",
"CONTRIBUTION_TL": "JudahSchwartz",
"CONTRIBUTION_SECURITY_REVIEWER": ["karinafishman"],
"ON_CALL_DEVS": [
"sshuker",
"sberman"
"mwienfeld",
"okarkkatz"
],
"DOC_REVIEWER": "ShirleyDenkberg",
"TIM_REVIEWER": "MLainer1"
Expand Down
4 changes: 2 additions & 2 deletions .github/github_workflow_scripts/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def test_exit_get_content_reviewers(

with pytest.raises(SystemExit) as e:
get_content_reviewers(content_roles)
assert e.type == SystemExit
assert e.type is SystemExit
assert e.value.code == 1


Expand Down Expand Up @@ -337,7 +337,7 @@ def test_exit_get_doc_reviewer(

with pytest.raises(ValueError) as e:
get_doc_reviewer(content_roles)
assert e.type == ValueError
assert e.type is ValueError


class TestGetContentRoles:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repos:
- --lock
files: ^pyproject.toml$
- repo: https://github.com/hadialqattan/pycln
rev: v2.1.2
rev: v2.5.0
hooks:
- id: pycln
min_py_version: '3.7'
Expand Down
6 changes: 4 additions & 2 deletions Config/core_packs_mpv2_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"Unit42Intel",
"VirusTotal",
"Whois",
"rasterize"
"rasterize",
"CortexResponseAndRemediation"
],
"update_core_packs_list": [
"AutoFocus",
Expand All @@ -47,6 +48,7 @@
"Unit42Intel",
"VirusTotal",
"Whois",
"rasterize"
"rasterize",
"CortexResponseAndRemediation"
]
}
2 changes: 1 addition & 1 deletion Packs/AHA/Integrations/AHA/AHA_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_notImplementedCommand(mocker):
mocker.patch.object(demisto, 'results')
with pytest.raises(SystemExit) as pytest_wrapped_e:
main()
assert pytest_wrapped_e.type == SystemExit
assert pytest_wrapped_e.type is SystemExit
assert pytest_wrapped_e.value.code == 0


Expand Down
Loading

0 comments on commit 9847ba3

Please sign in to comment.