diff --git a/.github/actions/setup_environment/action.yml b/.github/actions/setup_environment/action.yml new file mode 100644 index 0000000000..e06e193947 --- /dev/null +++ b/.github/actions/setup_environment/action.yml @@ -0,0 +1,42 @@ +name: 'Setup environment for demisto-sdk' +description: 'Setup environment for every demisto-sdk workflow job' +author: 'Demisto-SDK' + +inputs: + python-version: + required: true + type: string + description: "The python version" + node-version: + required: false + type: string + default: "16" + description: "The node version to install" + + +runs: + using: 'composite' + steps: + - name: Set up Python ${{ inputs.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ inputs.python-version }} + + - name: Setup Poetry + run: | + sudo curl -sSL https://install.python-poetry.org | python3 - + poetry --version + poetry check --lock + poetry install -E generate-unit-tests + shell: bash + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ inputs.node-version }} + + - name: Install npm + run: | + npm install + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json + shell: bash diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml new file mode 100644 index 0000000000..4e2fc1e4a3 --- /dev/null +++ b/.github/actions/test_summary_upload/action.yml @@ -0,0 +1,55 @@ +name: 'Test Summary Upload' +description: 'Prints out a summary for all the tests of the demisto-sdk' +author: 'Demisto-SDK' + +inputs: + python-version: + required: true + type: string + description: "The python version" + artifacts_folder_name: + required: false + type: string + description: "The folder name to save artifacts" + group: + required: false + type: string + default: "All-Tests" + description: "The group of the pytest-split" + summary-display-options: + required: false + type: string + description: "The test-summary display options" + default: fsEX # show all failed and skipped tests + + +runs: + using: 'composite' + steps: + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v3 + with: + name: ${{ inputs.artifacts_folder_name }}-artifacts-python(${{ inputs.python-version }})-group(${{ inputs.group }}) + path: | + ${{ inputs.artifacts_folder_name }} + node_versions_info.json + .coverage + - name: Print Summary of pytest results in workflow summary + if: always() + uses: pmeier/pytest-results-action@main + with: + path: ${{ inputs.artifacts_folder_name }}/junit.xml + summary: true + display-options: ${{ inputs.summary-display-options }} + fail-on-empty: true + - name: Check if ${{ inputs.artifacts_folder_name }} have passed + shell: bash + if: always() + run: | + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then + echo "There are ${{ inputs.artifacts_folder_name }} that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the ${{ inputs.artifacts_folder_name }} summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + else + echo "All ${{ inputs.artifacts_folder_name }} have passed, congratulations!" + fi + exit $PYTEST_EXIT_CODE diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml new file mode 100644 index 0000000000..47b569cba0 --- /dev/null +++ b/.github/workflows/on-push.yml @@ -0,0 +1,149 @@ +name: CI - On Push + +on: + push: + branches: + - master + pull_request: + branches: + - "**" + +concurrency: + group: tests-${{ github.head_ref || github.ref }} + cancel-in-progress: ${{ github.event_name == 'pull_request' }} + + +jobs: + unit-tests: + name: Unit Tests / Python ${{ matrix.python-version }} (${{ matrix.group }}) + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ "3.8", "3.9", "3.10" ] + group: [ 1, 2, 3, 4, 5 ] + fail-fast: false + defaults: + run: + shell: bash + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Python ${{ matrix.python-version }} (${{ matrix.group }}) - Setup Environment + uses: ./.github/actions/setup_environment + with: + python-version: ${{ matrix.python-version }} + + - name: Run Unit Tests + run: | + source "$(poetry env info --path)/bin/activate" + + # Due to race conditions in the tests bringing up and down the node server, have the server available + # For all the tests. + node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & + node_pid=$! + + mkdir unit-tests + poetry run pytest -v . --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph,tests_end_to_end} --cov=demisto_sdk --cov-report=html:unit-tests/coverage --junitxml=unit-tests/junit.xml || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + kill $node_pid + + - name: Python ${{ matrix.python-version }} (${{ matrix.group }}) - Test Summary Upload + uses: ./.github/actions/test_summary_upload + with: + python-version: ${{ matrix.python-version }} + artifacts_folder_name: unit-tests + group: ${{ matrix.group }} + + + integration-tests: + name: Integration Tests / Python ${{ matrix.python-version }} (All-Tests) + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ "3.8", "3.9", "3.10" ] + fail-fast: false + defaults: + run: + shell: bash + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Python ${{ matrix.python-version }} - Setup Environment + uses: ./.github/actions/setup_environment + with: + python-version: ${{ matrix.python-version }} + + - name: Run Integration Tests + run: | + source "$(poetry env info --path)/bin/activate" + + mkdir integration-tests + poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html:integration-tests/coverage --junitxml=integration-tests/junit.xml || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + exit $pytest_exit_code + + - name: Python ${{ matrix.python-version }} - Test Summary Upload + uses: ./.github/actions/test_summary_upload + with: + python-version: ${{ matrix.python-version }} + artifacts_folder_name: integration-tests + + graph-tests: + name: Graph Tests / Python ${{ matrix.python-version }} (All-Tests) + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ "3.8", "3.9", "3.10" ] + fail-fast: false + defaults: + run: + shell: bash + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Python ${{ matrix.python-version }} - Setup Environment + uses: ./.github/actions/setup_environment + with: + python-version: ${{ matrix.python-version }} + + - name: Run Graph Tests + run: | + source "$(poetry env info --path)/bin/activate" + + mkdir graph-tests + poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html:graph-tests/coverage --junitxml=graph-tests/junit.xml || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + - name: Python ${{ matrix.python-version }} - Test Summary Upload + uses: ./.github/actions/test_summary_upload + with: + python-version: ${{ matrix.python-version }} + artifacts_folder_name: graph-tests + + coverage: + needs: [unit-tests, integration-tests, graph-tests] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: "3.10" + - name: Download all artifacts + uses: actions/download-artifact@v3 + - name: Run coverage + run: | + pip install coverage + coverage combine **/.coverage + coverage report + coverage xml + - name: Coveralls + uses: coverallsapp/github-action@v2 diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml new file mode 100644 index 0000000000..8254aeff54 --- /dev/null +++ b/.github/workflows/update-test-durations.yml @@ -0,0 +1,64 @@ +name: Update .test-durations file + +on: + # schedule: + # - cron: "0 8 * * 0" # Run every two weeks on Sunday at 8 AM UTC + push: + branches: + - master + pull_request: + branches: + - "**" + + +jobs: + update-test-durations: + name: Update .test-durations file + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ "3.10" ] + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Python ${{ matrix.python-version }} (${{ matrix.group }}) - Setup Environment + uses: ./.github/actions/setup_environment + with: + python-version: ${{ matrix.python-version }} + + - name: Run Unit Tests + run: | + source "$(poetry env info --path)/bin/activate" + + # Due to race conditions in the tests bringing up and down the node server, have the server available + # For all the tests. + node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & + node_pid=$! + + mkdir unit-tests + poetry run pytest . --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph,tests_end_to_end} --store-durations --junitxml=unit-tests/junit.xml || pytest_exit_code=$ + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + kill $node_pid + + - name: Update .test-durations + run: | + git status + git add .test_durations + git status + git commit -m "Update .test-durations" || true + git push origin HEAD:refs/heads/update-test-durations + + - name: Create Draft PR + run: | + gh pr create --base master --head update-test-durations --title "Update .test-durations" --body "This PR updates the .test-durations file." --draft --reviewer GuyAfik + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Python ${{ matrix.python-version }} (${{ matrix.group }}) - Test Summary Upload + uses: ./.github/actions/test_summary_upload + with: + python-version: ${{ matrix.python-version }} + artifacts_folder_name: unit-tests \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a432f6f9f8..a050ebc557 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -37,6 +37,7 @@ repos: - cachetools==5.3.0 ; python_version >= "3.8" and python_version < "3.11" - certifi==2022.12.7 ; python_version >= "3.8" and python_version < "3.11" - cffi==1.15.1 ; python_version >= "3.8" and python_version < "3.11" + - cfgv==3.3.1 ; python_version >= "3.8" and python_version < "3.11" - chardet==5.1.0 ; python_version >= "3.8" and python_version < "3.11" - charset-normalizer==3.1.0 ; python_version >= "3.8" and python_version < "3.11" - click==8.1.3 ; python_version >= "3.8" and python_version < "3.11" @@ -51,9 +52,11 @@ repos: - demisto-py==3.2.10 ; python_version >= "3.8" and python_version < "3.11" - dictdiffer==0.9.0 ; python_version >= "3.8" and python_version < "3.11" - dictor==0.1.11 ; python_version >= "3.8" and python_version < "3.11" + - distlib==0.3.6 ; python_version >= "3.8" and python_version < "3.11" - docker==5.0.3 ; python_version >= "3.8" and python_version < "3.11" - docopt==0.6.2 ; python_version >= "3.8" and python_version < "3.11" - exceptiongroup==1.1.1 ; python_version >= "3.8" and python_version < "3.11" + - filelock==3.12.0 ; python_version >= "3.8" and python_version < "3.11" - flatten-dict==0.4.2 ; python_version >= "3.8" and python_version < "3.11" - freezegun==1.2.2 ; python_version >= "3.8" and python_version < "3.11" - future==0.18.3 ; python_version >= "3.8" and python_version < "3.11" @@ -74,6 +77,7 @@ repos: - grpcio-status==1.48.2 ; python_version >= "3.8" and python_version < "3.11" - grpcio==1.59.2 ; python_version >= "3.8" and python_version < "3.11" - humanfriendly==10.0 ; python_version >= "3.8" and python_version < "3.11" + - identify==2.5.24 ; python_version >= "3.8" and python_version < "3.11" - idna==3.4 ; python_version >= "3.8" and python_version < "3.11" - imagesize==1.4.1 ; python_version >= "3.8" and python_version < "3.11" - importlib-resources==5.12.0 ; python_version >= "3.8" and python_version < "3.11" @@ -93,6 +97,7 @@ repos: - neo4j==5.14.1 ; python_version >= "3.8" and python_version < "3.11" - networkx==2.8.8 ; python_version >= "3.8" and python_version < "3.11" - nltk==3.8.1 ; python_version >= "3.8" and python_version < "3.11" + - nodeenv==1.7.0 ; python_version >= "3.8" and python_version < "3.11" - ordered-set==4.1.0 ; python_version >= "3.8" and python_version < "3.11" - orjson==3.8.11 ; python_version >= "3.8" and python_version < "3.11" - packaging==23.1 ; python_version >= "3.8" and python_version < "3.11" @@ -102,6 +107,7 @@ repos: - pkgutil-resolve-name==1.3.10 ; python_version >= "3.8" and python_version < "3.9" - platformdirs==3.5.0 ; python_version >= "3.8" and python_version < "3.11" - pluggy==1.0.0 ; python_version >= "3.8" and python_version < "3.11" + - pre-commit==3.5.0 ; python_version >= "3.8" and python_version < "3.11" - prettytable==3.7.0 ; python_version >= "3.8" and python_version < "3.11" - proto-plus==1.22.3 ; python_version >= "3.8" and python_version < "3.11" - protobuf==3.19.6 ; python_version >= "3.8" and python_version < "3.11" @@ -176,6 +182,7 @@ repos: - tzlocal==4.3 ; python_version >= "3.8" and python_version < "3.11" - ujson==5.7.0 ; python_version >= "3.8" and python_version < "3.11" - urllib3==1.26.15 ; python_version >= "3.8" and python_version < "3.11" + - virtualenv==20.23.0 ; python_version >= "3.8" and python_version < "3.11" - vulture==2.7 ; python_version >= "3.8" and python_version < "3.11" - wcmatch==8.4.1 ; python_version >= "3.8" and python_version < "3.11" - wcwidth==0.2.6 ; python_version >= "3.8" and python_version < "3.11" diff --git a/.test_durations b/.test_durations new file mode 100644 index 0000000000..e64133459f --- /dev/null +++ b/.test_durations @@ -0,0 +1,4595 @@ +{ + "TestSuite/test_tools_test.py::test_str_in_call_args_list": 0.16780688499989083, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes: https://jira-hq.paloaltonetworks.local/browse/CIAC-3473 something\\nsomething else to say-False-expected_ids0-expected_actions0]": 0.0024471550000271236, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes: https://jira-hq.paloaltonetworks.local/browse/CIAC-3473 something\\nsomething else to say-True-expected_ids4-expected_actions4]": 0.0009672350001892482, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes: https://jira-hq.paloaltonetworks.local/browse/CIAC-3473-False-expected_ids2-expected_actions2]": 0.0009702400002424838, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes: https://jira-hq.paloaltonetworks.local/browse/CIAC-3473-True-expected_ids6-expected_actions6]": 0.0009811419997731718, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes: https://jira-hq.paloaltonetworks.local/browse/CIAC-3473\\nrelates: https://jira-dc.paloaltonetworks.com/browse/CIAC-3475\\n\\nsomething else to say-False-expected_ids11-expected_actions11]": 0.0011040800000046147, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes: https://jira-hq.paloaltonetworks.local/browse/CIAC-3473\\nrelates: https://jira-dc.paloaltonetworks.com/browse/CIAC-3475\\n\\nsomething else to say-True-expected_ids15-expected_actions15]": 0.0008653039999444445, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes: https://jira-hq.paloaltonetworks.local/browse/CIAC-3473\\nsomething else to say-False-expected_ids1-expected_actions1]": 0.0009761520000211021, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes: https://jira-hq.paloaltonetworks.local/browse/CIAC-3473\\nsomething else to say-True-expected_ids5-expected_actions5]": 0.0008961620001173287, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes:https://jira-hq.paloaltonetworks.local/browse/CIAC-3473\\nfixes: https://jira-dc.paloaltonetworks.com/browse/CIAC-3475\\n\\nsomething else to say-False-expected_ids3-expected_actions3]": 0.000995299000351224, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nfixes:https://jira-hq.paloaltonetworks.local/browse/CIAC-3473\\nfixes: https://jira-dc.paloaltonetworks.com/browse/CIAC-3475\\n\\nsomething else to say-True-expected_ids7-expected_actions7]": 0.0008807019999039767, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nrelates: https://jira-hq.paloaltonetworks.local/browse/CIAC-3472 something\\nsomething else to say-False-expected_ids8-expected_actions8]": 0.000992551999843272, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nrelates: https://jira-hq.paloaltonetworks.local/browse/CIAC-3472 something\\nsomething else to say-True-expected_ids12-expected_actions12]": 0.000868992000050639, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nrelates: https://jira-hq.paloaltonetworks.local/browse/CIAC-3472\\nsomething else to say-False-expected_ids9-expected_actions9]": 0.0009601720000773639, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nrelates: https://jira-hq.paloaltonetworks.local/browse/CIAC-3472\\nsomething else to say-True-expected_ids13-expected_actions13]": 0.0008493750001434819, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nrelates:https://jira-hq.paloaltonetworks.local/browse/CIAC-3472-False-expected_ids10-expected_actions10]": 0.0009681269998509379, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_find_fixed_issue_in_body[This pr is dummy\\nrelates:https://jira-hq.paloaltonetworks.local/browse/CIAC-3472-True-expected_ids14-expected_actions14]": 0.0008855529999891587, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_trigger_generic_webhook[False-expected1]": 0.0025947509998331952, + "Utils/github_workflow_scripts_tests/link_pr_to_jira_issue_test.py::test_trigger_generic_webhook[True-expected0]": 0.002627322000080312, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsiam_client_config_with_api_key_and_auth_id": 0.0005511799999737832, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsiam_client_config_with_api_key_and_auth_id_and_token": 0.0005188819999943917, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsiam_client_config_with_api_key_and_token_without_auth_id": 0.000557772000007617, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_no_api_key_and_user_and_password": 0.0006396059999929093, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_no_values": 0.000577128000003313, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_username_password": 0.0005915460000096573, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_with_api_key": 0.0018112580000035905, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_with_invalid_url_with_api_key": 0.0005382570000165288, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_api_key_auth_id": 0.0005264650000071924, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_api_key_without_auth_id": 0.0005536950000077923, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_auth_id_without_api_key": 0.0005353109999646222, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config0-XsoarClient]": 0.0022710180000160562, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config1-XsoarSaasClient]": 0.0020417490000284033, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config2-XsiamClient]": 0.002336869999993496, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test1.com-xsoar-XsoarClient]": 0.0019649939999908383, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test2.com-xsoar_on_prem-XsoarClient]": 0.0020219510000174523, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test3.com-xsoar_saas-XsoarSaasClient]": 0.002076955999996244, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test4.com-marketplacev2-XsiamClient]": 0.0021389000000056058, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_server_type_base_url_is_not_api_url": 0.0012250810000296042, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_server_type_unauthorized_exception": 0.0031862799999942126, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_xsiam_client_from_server_type": 0.0022972060000086003, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_xsoar_client_from_server_type[https://tes2.com-8.4.0-XsoarSaasClient]": 0.0029238070000019434, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_xsoar_client_from_server_type[https://test.com-6.11.0-XsoarClient]": 0.0028686459999676117, + "demisto_sdk/commands/common/content/tests/content_test.py::test_detect_all_docs": 0.0007312480000223331, + "demisto_sdk/commands/common/content/tests/content_test.py::test_detection[content_descriptor-ContentDescriptor]": 0.0006569100000035633, + "demisto_sdk/commands/common/content/tests/content_test.py::test_generators_detection[documentations-content_type1-2]": 0.0014012919999970563, + "demisto_sdk/commands/common/content/tests/content_test.py::test_generators_detection[test_playbooks-content_type0-3]": 0.0030700620000061463, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestInvalidJSON::test_malformed_json_data_file_path": 0.0007017819999930452, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestInvalidJSON::test_malformed_json_path": 0.0005279069999630792, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_dump": 0.0008022710000261668, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get[]": 0.0006799129999990328, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get[test_value]": 0.0006530720000341717, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get_item": 0.0006400179999843658, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_valid_json_file_path": 0.0007690690000003997, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/text_object_test.py::test_malformed_text_path": 0.0005223059999934776, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/text_object_test.py::test_valid_text_file_path": 0.0006411789999845041, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestInvalidYAML::test_malformed_yaml_data_file_path": 0.001083184999970399, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestInvalidYAML::test_malformed_yaml_path": 0.0007139450000295255, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_dump": 0.0022416530000270996, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get[]": 0.0017668930000240834, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get[test_value]": 0.0009239989999798581, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get_item": 0.0017308580000303664, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_valid_yaml_file_path": 0.002061005999991039, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/json_content_object_test.py::TestFileWithStem::test_with_readme_change_log": 0.0012419230000091375, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/json_content_object_test.py::test_is_file_structure_list[path0--True]": 0.0008181510000042636, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/json_content_object_test.py::test_is_file_structure_list[path1--False]": 0.0007838459999902625, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/json_content_object_test.py::test_to_version_no_from_version": 0.0008579539999971075, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::TestFileWithStem::test_with_readme_change_log": 0.001338244000010036, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::TestFileWithStem::test_without_readme_changelog": 0.0012424540000210982, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::test_from_version_no_to_version": 0.0010657139999921128, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::test_to_version_no_from_version": 0.0010291449999897395, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/author_image/author_image_test.py::test_objects_factory": 0.0005514309999909983, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/author_image/author_image_test.py::test_prefix": 0.0005478150000328696, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/change_log/change_log_test.py::test_objects_factory": 0.0005435070000032738, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/change_log/change_log_test.py::test_prefix": 0.0005364329999792972, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierMapperType::test_objects_factory": 0.000933114999980944, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierMapperType::test_prefix": 0.0007269090000079359, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierType::test_objects_factory": 0.0006328620000033425, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierType::test_prefix": 0.0005256729999700838, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestOldClassifierType::test_objects_factory": 0.000833799000020008, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestOldClassifierType::test_prefix": 0.0007015120000346542, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/connection/connection_test.py::test_changelog_prefix": 0.0005646970000157125, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/connection/connection_test.py::test_objects_factory": 0.000623466000007511, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/correlation_rule/correlation_rule_test.py::test_objects_factory": 0.004076895999986618, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/correlation_rule/correlation_rule_test.py::test_prefix": 0.0047164920000000166, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/dashboard/dashboard_test.py::test_objects_factory": 0.0006474710000077266, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/dashboard/dashboard_test.py::test_prefix": 0.0005301020000274548, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/doc_file/doc_file_test.py::test_objects_factory": 0.000557030999999597, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/doc_file/doc_file_test.py::test_prefix": 0.004223679999995511, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_field/incident_field_test.py::test_objects_factory": 0.0006492149999814956, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_field/incident_field_test.py::test_prefix": 0.0005727409999849442, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_type/incident_type_test.py::test_objects_factory": 0.0006146400000091035, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_type/incident_type_test.py::test_prefix": 0.0005251030000295032, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_field/indicator_field_test.py::test_prefix": 0.0005269060000046011, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestIndicatorType::test_objects_factory": 0.0005502989999968122, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestIndicatorType::test_prefix": 0.0005398600000035003, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestOldIndicatorType::test_objects_factory[reputations.json]": 0.0008035940000183928, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestOldIndicatorType::test_prefix[reputations.json]": 0.0008026919999792881, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_files_detection": 0.002171860999993669, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_is_unify": 0.0008573540000043067, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_objects_factory": 0.0010678159999883974, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_prefix": 0.0007703710000157571, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_files_detection": 0.0016731089999950655, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_is_unify": 0.00103298200002655, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_objects_factory": 0.001024293999961401, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_prefix": 0.0007053070000040407, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/job/job_test.py::TestJob::test_objects_factory": 0.0008123880000141526, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/job/job_test.py::TestJob::test_prefix": 0.0007232830000134527, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_objects_factory[layoutscontainer-Zimperium_event.json]": 0.0010460280000188504, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_prefix[layoutscontainer-Zimperium_event.json]": 0.0008454710000194154, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_unify": 0.0034620460000098774, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/lists/lists_test.py::test_objects_factory": 0.0006461780000108774, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/lists/lists_test.py::test_prefix": 0.0005877799999893796, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_files_detection": 0.009149862999976222, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_is_unify": 0.0048474360000057, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_objects_factory": 0.004709508999980017, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_prefix": 0.00665066999997066, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_unify_schema": 0.009580626999991182, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRuleParsing::test_parse_modeling_rule_new_format": 0.005178074999975024, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRuleParsing::test_parse_modeling_rule_new_format_with_arbitrary_whitespace": 0.0089751550000301, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRuleParsing::test_parse_modeling_rule_old_format": 0.005287809999998672, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRules_XSIAM_1_3_Migration::test_dump_XSIAM_1_2_rule": 0.008076536000004353, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRules_XSIAM_1_3_Migration::test_dump_XSIAM_1_3_rule": 0.009885840999999118, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_ignore/pack_ignore_test.py::test_objects_factory": 0.000549758999994765, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_ignore/pack_ignore_test.py::test_prefix": 0.0005624210000405583, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_author_getter[someone-someone-someone-]": 0.0009090709999952651, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_author_getter[xsoar-Cortex XSOAR-Cortex XSOAR-]": 0.0008813679999946089, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_author_getter[xsoar-someone-someone-someone author doest not match Cortex XSOAR default value]": 0.0009669580000206679, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_created_setter_bad_string_data": 0.0010991249999960928, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_created_setter_datetime": 0.0005187390000003234, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_dump_with_price": 0.003036258999969732, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_legacy_setter": 0.0005254229999991367, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_advanced": 0.5427460140000164, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_bad_pack_metadata_file": 0.542146310999982, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_basic": 0.5631197559999919, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_invalid_price": 0.832966252999995, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_no_metadata_file": 0.5484054350000349, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_objects_factory": 0.0005840729999988525, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_prefix": 0.000532627000040975, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[10-100]": 0.0006467409999970641, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[10-101]": 0.000745083999987628, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[not int-0]": 0.0006614969999816367, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_support_details_getter[None-Partner-None-None-None]": 0.0008493800000337615, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_support_details_getter[None-xsoar-some email-https://www.paloaltonetworks.com/cortex-some email]": 0.0008429979999959869, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_support_details_getter[some url-xsoar-some email-some url-some email]": 0.0008515620000082436, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_updated_setter_bad_string_data": 0.0005439890000218384, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_updated_setter_datetime": 0.0005084809999686968, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[contributors-Contributors]": 0.000712411999984397, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[pack_ignore-PackIgnore]": 0.0007321589999946809, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[pack_metadata-PackMetaData]": 0.0007342939999830378, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[readme-Readme]": 0.0007083639999905245, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[secrets_ignore-SecretIgnore]": 0.0007145470000011755, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[classifiers-content_type2-1]": 0.0010970019999660963, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[connections-content_type6-3]": 0.001422350000041206, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[dashboards-content_type10-3]": 0.0014078629999971781, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[doc_files-content_type15-1]": 0.0012561890000029052, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[incident_fields-content_type4-3]": 0.0014991449999683937, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[incident_types-content_type5-3]": 0.0014160879999849385, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[indicator_fields-content_type7-1]": 0.0010990849999927832, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[indicator_types-content_type8-3]": 0.0012182079999831785, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[integrations-content_type0-3]": 0.0022438270000009197, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[layouts-content_type11-3]": 0.0014669939999691906, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[playbooks-content_type3-3]": 0.002384728999999197, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[release_notes-content_type13-1]": 0.0012726909999969394, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[reports-content_type9-3]": 0.0014093050000099083, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[scripts-content_type1-3]": 0.0013032879999741454, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[test_playbooks-content_type16-2]": 0.001789806000005001, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[tools-content_type14-1]": 0.000910623000038413, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[widgets-content_type12-3]": 0.0014028140000448275, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_error_from_subprocess": 0.006367992000008371, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_exception_thrown": 0.024406848999973363, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_success": 0.004358982999974614, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_files_detection": 0.009003500000034137, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_is_unify": 0.00468543299999169, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_objects_factory": 0.004827199000004612, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_prefix": 0.00622062399997958, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRules_XSIAM_1_3_Migration::test_dump_XSIAM_1_2_rule": 0.01002657399999407, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRules_XSIAM_1_3_Migration::test_dump_XSIAM_1_3_rule": 0.0072886310000228605, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/playbook/playbook_test.py::test_objects_factory": 0.0010057520000259501, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/playbook/playbook_test.py::test_prefix": 0.0006074070000181564, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pre_process_rule/pre_process_rule_test.py::test_objects_factory": 0.0007557640000186439, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pre_process_rule/pre_process_rule_test.py::test_prefix": 0.0006373420000045371, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_mention_contributors_in_readme": 0.005710861000011391, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_objects_factory[file0]": 0.0007426479999708135, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_objects_factory[file1]": 0.0006968840000070031, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_prefix": 0.0004734860000041863, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note/release_note_test.py::test_objects_factory": 0.000623906000015495, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note/release_note_test.py::test_prefix": 0.0005654079999715123, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note_config/release_note_config_test.py::TestReleaseNoteConfig::test_objects_factory": 0.003466543999991245, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note_config/release_note_config_test.py::TestReleaseNoteConfig::test_prefix": 0.0034338809999781006, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/report/report_test.py::test_objects_factory": 0.0007539290000408982, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/report/report_test.py::test_prefix": 0.0005902849999870341, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_files_detection": 0.006120919000011327, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_is_unify": 0.0009008949999724791, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_objects_factory": 0.0012216249999994488, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_prefix": 0.0008606390000238662, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_files_detection": 0.0019192999999972926, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_is_unify": 0.0008531450000361929, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_objects_factory": 0.0010566459999949984, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_prefix": 0.0007200660000137304, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/secret_ignore/secret_ignore_test.py::test_objects_factory": 0.0006043610000006083, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/secret_ignore/secret_ignore_test.py::test_prefix": 0.0005503189999842562, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/trigger/trigger_test.py::test_objects_factory": 0.0034914709999895877, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/trigger/trigger_test.py::test_prefix": 0.003652882000039881, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/widget/widget_test.py::test_objects_factory": 0.0007336510000186536, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/widget/widget_test.py::test_prefix": 0.0005916169999977683, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/wizard/wizard_test.py::TestWizard::test_objects_factory": 0.004658102999997027, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/wizard/wizard_test.py::TestWizard::test_prefix": 0.000860358000039696, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_files_detection": 0.013664728999998488, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_objects_factory": 0.004065384000028871, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_prefix": 0.004883063000022503, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard/xsiam_dashboard_test.py::test_objects_factory": 0.0036348680000060085, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard/xsiam_dashboard_test.py::test_prefix": 0.0037387029999820243, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard_image/xsiam_dashboard_image_test.py::test_prefix": 0.0006009649999896283, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report/xsiam_report_test.py::test_objects_factory": 0.0036447660000362703, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report/xsiam_report_test.py::test_prefix": 0.009131459000002451, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report_image/xsiam_report_image_test.py::test_prefix": 0.0006104209999762134, + "demisto_sdk/commands/common/content/tests/objects/root_objects/content_descriptor/content_descriptor_test.py::test_changelog_prefix": 0.0007772350000152528, + "demisto_sdk/commands/common/content/tests/objects/root_objects/documentation/documentation_test.py::test_prefix": 0.0007662840000079996, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_git_path": 0.042625653999976976, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_github_api": 0.03907218800000578, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_gitlab_api": 0.03902839599999197, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_http_request": 0.032677316999979666, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_local_path": 0.03287140999998428, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_local_path_from_content_root": 0.03276464399999668, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_write_file": 0.019436331999997947, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_from_path_unknown_file_error": 0.0018471550000072057, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_from_path_valid_binary_files": 0.0064332909999791354, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_from_path_valid_ini_based_files": 0.004477834999988772, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_from_path_valid_json_based_content_items": 0.0068718230000115454, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_from_path_valid_text_based_files": 0.00860142600001268, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_from_path_valid_yml_based_content_items": 0.0715869520000183, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_file_content_error": 0.0004917699999964498, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_http_request_error": 0.0004615340000100332, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_local_path_error": 0.000544286999996757, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_write_file_error": 0.0004662529999848175, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_git_path": 0.03975487399998201, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_github_api": 0.03721548599997959, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_gitlab_api": 0.036667711000006875, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_http_request": 0.029999591000006376, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_local_path": 0.03205387399998472, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_local_path_from_content_root": 0.029989088999997193, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_write_file": 0.01940486600003055, + "demisto_sdk/commands/common/files/tests/json5_file_test.py::TestJson5File::test_read_from_git_path": 0.0325617909999778, + "demisto_sdk/commands/common/files/tests/json5_file_test.py::TestJson5File::test_read_from_github_api": 0.030969583000000966, + "demisto_sdk/commands/common/files/tests/json5_file_test.py::TestJson5File::test_read_from_gitlab_api": 0.03078805599997736, + "demisto_sdk/commands/common/files/tests/json5_file_test.py::TestJson5File::test_read_from_http_request": 0.02600157000003378, + "demisto_sdk/commands/common/files/tests/json5_file_test.py::TestJson5File::test_read_from_local_path": 0.02671234199999617, + "demisto_sdk/commands/common/files/tests/json5_file_test.py::TestJson5File::test_read_from_local_path_from_content_root": 0.06113855899997134, + "demisto_sdk/commands/common/files/tests/json5_file_test.py::TestJson5File::test_write_file": 0.01946757199999638, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_git_path": 0.06770151399999236, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_github_api": 0.055585706000016444, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_gitlab_api": 0.07896595399995476, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_http_request": 0.03390412999999626, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_local_path": 0.03352074399998628, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_local_path_from_content_root": 0.034391827000007424, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_write_file": 0.019473212999997713, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_git_path": 0.08895310299999437, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_github_api": 0.059973490000004404, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_gitlab_api": 0.059896648000005825, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_http_request": 0.049921590999986165, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path": 0.036840964000020904, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path_from_content_root": 0.0382262159999982, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path_unicode_error": 0.03522869999997624, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_write_file": 0.02079649700002051, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_git_path": 0.10014623799997935, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_github_api": 0.10889100500000382, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_gitlab_api": 0.08813142599996127, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_http_request": 0.07580766600000288, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_local_path": 0.07166250500000615, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_local_path_from_content_root": 0.07184205999996607, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_write_file": 0.02127873600002772, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[0]": 0.0012434259999736241, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[1]": 0.0011881130000404028, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[2]": 0.0011794959999633647, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[3]": 0.0012527420000196798, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[0]": 0.0007377199999893946, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[1]": 0.000540521000004901, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[2]": 0.0007083749999594602, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[3]": 0.0005319440000164377, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/AuthorImageValidator/empty_author_image.png-partner-10240-False]": 0.005076724000019794, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/AuthorImageValidator/empty_author_image.png-xsoar-10240-False]": 0.005294071999998096, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/AuthorImageValidator/valid_author_image.png-partner-100-False]": 0.0051108979999980875, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/AuthorImageValidator/valid_author_image.png-partner-10240-True]": 0.004733284000025151, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/AuthorImageValidator/valid_author_image.png-xsoar-100-False]": 0.016314314999988255, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/AuthorImageValidator/valid_author_image.png-xsoar-10240-True]": 0.0049856739999825095, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[path_does_not_exist-partner-10240-False]": 0.005033865000029891, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[path_does_not_exist-xsoar-10240-True]": 0.005968542999994497, + "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output": 0.02121085200002426, + "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output_with_json_file": 0.025806477999992694, + "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output_with_unified_yml_image_error": 0.01961910399998601, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_non_deprecated_integration_no_ignored_errors": 0.006482414000004155, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_non_deprecated_integration_with_ignored_errors": 0.008721892000011167, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_playbook": 0.07189979700001459, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_where_ignored_list_does_not_exist": 0.008756288000000723, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_where_ignored_list_exists": 0.006675756999982241, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_community_file": 0.0065085329999874375, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_partner_file": 0.008309532999987823, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_xsoar_file": 0.006424095000028274, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_content_items_naming": 0.011041241000015134, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error": 0.0009495460000152889, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_file_with_path": 0.006191740999980766, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[False-None-False-]": 0.0010376810000138903, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[False-fix-False-]": 0.0010532089999912841, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[True-None-False-::error file=PATH,line=1,endLine=1,title=Validation Error SC102::Error-message\\n]": 0.0010834569999929045, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[True-None-True-]": 0.0011017709999805447, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[True-fix-False-::error file=PATH,line=1,endLine=1,title=Validation Error SC102::Error-message%0Afix\\n]": 0.0012418120000177169, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors0-SC109]": 0.0015757969999583565, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors1-PA117]": 0.0014351730000043972, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors2-PB109]": 0.001473716000020886, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors3-RM109]": 0.0013846090000129152, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors4-RM105]": 0.00168492300005596, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors5-SC102]": 0.0014314459999695828, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file0-current_file0-True]": 0.0009496369999908438, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file1-current_file1-True]": 0.0009125260000075741, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file2-current_file2-False]": 0.0006975649999958478, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_incident_field_exist[classifier_json0-id_set_json0-True-True]": 0.002195074999974622, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_incident_field_exist[classifier_json1-id_set_json1-True-False]": 0.005014608000038834, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_name_id_equal[mapper0-True]": 0.0018672410000135642, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_name_id_equal[mapper1-False]": 0.0019840110000188815, + "demisto_sdk/commands/common/tests/conf_test.py::test_conf_json_description": 0.001096130999997058, + "demisto_sdk/commands/common/tests/conf_test.py::test_conf_json_description_not_given": 0.0012317339999867727, + "demisto_sdk/commands/common/tests/conf_test.py::test_get_test_path": 0.01852946700000757, + "demisto_sdk/commands/common/tests/conf_test.py::test_has_unittests[False]": 0.023276275000000624, + "demisto_sdk/commands/common/tests/conf_test.py::test_has_unittests[True]": 0.018838657000031844, + "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict0-False]": 0.0013145890000032523, + "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict1-True]": 0.0012189190000242434, + "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict2-True]": 0.0011078730000235737, + "demisto_sdk/commands/common/tests/conf_test.py::test_is_valid_conf_json_negative_sanity_check": 0.001311662999995633, + "demisto_sdk/commands/common/tests/conf_test.py::test_is_valid_conf_json_sanity_check": 0.0010500950000107423, + "demisto_sdk/commands/common/tests/conf_test.py::test_non_testable_entity_is_vaild_in_conf": 0.0010458959999937179, + "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data0-yml_data0]": 0.0011925390000158131, + "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data1-yml_data1]": 0.0010993569999868669, + "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data2-yml_data2]": 0.001191419000008409, + "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks0-conf_dict0-False]": 0.0014533689999609578, + "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks1-conf_dict1-True]": 0.0011594590000072458, + "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks2-conf_dict2-True]": 0.0013703039999768407, + "demisto_sdk/commands/common/tests/conf_test.py::test_the_existence_of_added_test_in_conf_json": 0.001076112999982115, + "demisto_sdk/commands/common/tests/conf_test.py::test_the_missing_existence_of_added_test_in_conf_json": 0.0011146439999834001, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file0-test.json-True]": 0.001380482000001848, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file1-test.json-True]": 0.01574270299997238, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file10-test.yml-True]": 0.0011367559999939658, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file2-test.json-True]": 0.0011786829999778092, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file3-test.json-True]": 0.0012622909999890908, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file4-test.yml-False]": 0.0011871110000356566, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file5-test.yml-True]": 0.0014068999999778953, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file6-test.yml-False]": 0.00115720400000896, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file7-test.yml-False]": 0.001322172000016053, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file8-test.yml-False]": 0.0011750179999978627, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file9-test-test is not json or yml type]": 0.0012529040000401892, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_entity_valid_name_invalid": 0.2752482029999612, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_entity_valid_name_valid": 0.28367198300000496, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config0-integration1-playbook1-integration-True]": 0.0008078319999924588, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config1-integration2-playbook1-integration-False]": 0.0007625249999705375, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config2-integration1-playbook1-integration-True]": 0.0007623760000399216, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config3-integration3-playbook1-integration-False]": 0.0008330869999895185, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config4--playbook1-playbook-True]": 0.0007483789999866985, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_fromversion_update_validation_yml_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-True-From version did not changed but marked as changed.]": 0.05018087399997739, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_fromversion_update_validation_yml_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-False-Invalid from version marked as valid.]": 0.19062559899998632, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_fromversion_update_validation_yml_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-False-Valid from version marked as invalid]": 0.05748634700000821, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_get_not_registered_tests[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-playbook-conf_json_data3-Account Enrichment-expected3]": 0.03097305099996106, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_get_not_registered_tests[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-playbook-conf_json_data4-Account Enrichment-expected4]": 0.0255287580000072, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_get_not_registered_tests[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-integration-conf_json_data0-PagerDuty v2-expected0]": 0.04995780800001626, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_get_not_registered_tests[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-integration-conf_json_data1-PagerDuty v2-expected1]": 0.050139478999966514, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_get_not_registered_tests[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-integration-conf_json_data2-PagerDuty v3-expected2]": 0.0522216530000037, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_backward_compatible[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-True-From version did not changed but marked as changed.]": 0.04946496599998795, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_backward_compatible[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-False-Didn't find the id as updated in file]": 0.18664649700002656, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_backward_compatible[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-False-Invalid from version marked as valid.]": 0.18767455799999766, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_backward_compatible[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-False-Valid from version marked as invalid]": 0.33444842599999447, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_backward_compatible[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-True-Found the ID as changed although it is not]": 0.6107857970000055, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_id_not_modified[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-False-Didn't find the id as updated in file]": 0.18970697099999256, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_id_not_modified[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-True-Found the ID as changed although it is not]": 0.3404260129999841, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleModelingRules-modelingrule-rule_dict0-\\nThe rule id should end with 'ModelingRule'-False]": 0.32589386500001183, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleModelingRules-modelingrule-rule_dict1-\\nThe rule name should end with 'Modeling Rule'-False]": 0.17128531100001965, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleModelingRules-modelingrule-rule_dict2--True]": 0.29940889699997797, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleParsingRules-parsingrule-rule_dict3-\\nThe rule id should end with 'ParsingRule'-False]": 0.3087543480000079, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleParsingRules-parsingrule-rule_dict4-\\nThe rule name should end with 'Parsing Rule'-False]": 0.20945149799996443, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleParsingRules-parsingrule-rule_dict5--True]": 0.23546897899998953, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[pack had 1, content had empty, added 1 to content]": 0.0018568430000129865, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[pack had 1, content had empty, added 2 to content]": 0.0020550140000068495, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[pack&content had 1, added 2 to both]": 0.0019490270000233068, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[pack&content had 1, now content has empty]": 0.0018925990000013826, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[sanity, both match and are unchanged]": 0.00210140999999453, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_toversion_update_validation_yml_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test-marketplaces.yml-False-change toversion field is not allowed]": 0.053524599000013495, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_toversion_update_validation_yml_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-True-toversion was not changed.]": 0.053313642999995636, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_readme_exists_not_checking_on_api_modules": 0.2137524229999883, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_readme_exists_not_checking_on_test_playbook": 0.17737034200001744, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[False-community-True]": 0.27740317799998593, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[False-xsoar-False]": 0.17845389499998987, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[True-xsoar-True]": 0.19630777600002602, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_yml_has_test_key[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-integration-True]": 0.050182849000009355, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_yml_has_test_key[demisto_sdk/tests/test_files/integration-test-with-no-test-playbook.yml-integration-False]": 0.04192570500001125, + "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_no_leading_hyphen": 0.008731369999992467, + "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[REAL_TIME-None-True]": 0.00844392300001573, + "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[SCHEDULED-None-False]": 0.00843672000002016, + "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[SCHEDULED-valid_window-True]": 0.00822614599999838, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[-1-1]": 0.0006799520000129178, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[-3]": 0.0008199839999747383, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[0-1]": 0.0006560479999961899, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[10-4]": 0.0006600739999953475, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[2-2]": 0.0006939979999742718, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[None-3]": 0.0012336070000174004, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[not_a_number-3]": 0.0008043429999986529, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file0-False]": 0.000739551999942023, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file1-False]": 0.0007545210000330371, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file2-False]": 0.0008471449999660763, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file3-False]": 0.0007196749999991425, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file4-False]": 0.0007324000000039632, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file5-False]": 0.000751274999998941, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file6-True]": 0.0005999519999875247, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[aa-aa-True]": 0.0008735640000452349, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[aa-ab-False]": 0.0010126740000089285, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[my-home-dashboard-My Dashboard-False]": 0.0009679410000273947, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file0-True]": 0.0005969559999812191, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file1-False]": 0.0007663140000033763, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file2-True]": 0.0005999430000258599, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file3-False]": 0.0007565049999982421, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[-1-True]": 0.0009686719999706384, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[0-False]": 0.0009014369999817973, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[1-False]": 0.0008909780000010414, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[0]": 6.400776394000019, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[1]": 6.265951556000033, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[2]": 6.243394209000002, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[3]": 6.227283762000042, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[4]": 6.22735583299999, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies_case_1": 0.12270758500000056, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies_case_2": 0.04691487400000938, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration[integration_yml0-False-expected_commands_in_errors_ls0-expected_commands_not_in_errors_ls0]": 0.002900945999982696, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration[integration_yml1-False-expected_commands_in_errors_ls1-expected_commands_not_in_errors_ls1]": 0.001809997000009389, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration[integration_yml2-True-expected_commands_in_errors_ls2-expected_commands_not_in_errors_ls2]": 0.0015525230000150714, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration[integration_yml3-True-expected_commands_in_errors_ls3-expected_commands_not_in_errors_ls3]": 0.0014372779999973773, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration[integration_yml4-True-expected_commands_in_errors_ls4-expected_commands_not_in_errors_ls4]": 0.012899835000041548, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration[integration_yml5-False-expected_commands_in_errors_ls5-expected_commands_not_in_errors_ls5]": 0.001717802999991136, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration[integration_yml6-True-expected_commands_in_errors_ls6-expected_commands_not_in_errors_ls6]": 0.0014723140000114654, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration_error_format[integration_yml0-expected_results0]": 0.0015897629999983565, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml0-True]": 0.0007216699999901266, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml1-False]": 0.0008236600000088856, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml2-True]": 0.0006403590000445547, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml3-True]": 0.0006195080000281905, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook_error_format[playbook_yml0-[PB120] - playbook_format_case_1 playbook is deprecated and being used by the following entities:\\nplaybook_2.yml\\n]": 0.0018392990000108966, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml0-True]": 0.0007455950000121447, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml1-False]": 0.000961126999982298, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml2-False]": 0.0008930399999940164, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml3-True]": 0.0006252299999687239, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml4-True]": 0.0006387459999928069, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script_error_format[script_yml0-[SC107] - script_format_case_1 script is deprecated and being used by the following entities:\\nscript_2.yml\\nplaybook_2.yml\\n]": 0.0015976779999959945, + "demisto_sdk/commands/common/tests/description_test.py::test_demisto_in_description": 0.025169073000000708, + "demisto_sdk/commands/common/tests/description_test.py::test_demisto_not_in_description": 0.03256611699998757, + "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_given": 0.019971500999986347, + "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_unified_deprecated_integration[integration_obj0]": 0.003658853999979783, + "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_unified_deprecated_integration[integration_obj1]": 0.0028245520000211854, + "demisto_sdk/commands/common/tests/description_test.py::test_is_invalid_description_integration_name": 0.006247645999991391, + "demisto_sdk/commands/common/tests/description_test.py::test_is_invalid_description_name": 0.006227206000005481, + "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_description_name": 0.018984346000024743, + "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[### Community Contributed Integration\\n### OtherSection-False]": 0.020303242000011323, + "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[### partner Contributed Integration-False]": 0.01942667300002654, + "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[\\n### Other section\\n-True]": 0.019260111999983565, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_cache_of_get_python_version_from_image": 0.0005130000000121981, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-3-2.7.1-2.7.1]": 0.0027488499999890337, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-3.7.11-3.7.11]": 0.0085372169999971, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-310-3.10.11-3.10.11]": 0.0026253300000007584, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[demisto/pan-os-python:1.0.0.68955-3.10.12-3.10.12]": 0.0024373990000299273, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[demisto/powershell:7.1.3.22028--None]": 0.0023719469999718967, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[demisto/python3:3.9.8.24399--3.9.8]": 0.0025110659999825202, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[demisto/python:2.7.18.24398--2.7.18]": 0.0035647069999811265, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_init_global_docker_client": 0.20505423199998063, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestDeprecatedDockerImage::test_command_is_docker_image_deprecated": 0.0017973909999966509, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestDeprecatedDockerImage::test_deprecated_docker_image[demisto/aiohttp-demisto/aiohttp:1.0.2-is_deprecated_docker0-False]": 0.0011059690000081446, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestDeprecatedDockerImage::test_deprecated_docker_image[demisto/python-demisto/python:1.0.2--True]": 0.0009105410000529446, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_latest_commit": 0.019335632000007763, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_latest_commit_fails[mock_results0-200-The docker image in your integration/script does not have a tag in Iron Bank. Please use only images that are already in Iron Bank, or upload your image to it.]": 0.02864236800002118, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_latest_commit_fails[mock_results1-404-The docker image in your integration/script cannot be found in Iron Bank. Please create the image: test/test_project:1.0.2 in Iron Bank.]": 0.019638427999979058, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_manifest_from_commit": 0.018938690000027236, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_manifest_from_commit_fails[-404-Missing manifest file in the latest successful commit.]": 0.01920567000001938, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags0-output_tags0]": 0.0006070949999923414, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags1-output_tags1]": 0.0005842829999949117, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags2-output_tags2]": 0.0006197579999991376, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags3-output_tags3]": 0.0005798150000089208, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags4-output_tags4]": 0.0005835520000232464, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_dockerimage_in_yml_file[javascript]": 0.00056788299997379, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_dockerimage_in_yml_file[python]": 0.0005511710000121184, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_find_latest_tag_by_date": 0.0004932219999886911, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_from_yml": 0.0060953700000254685, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python-deb]": 0.2571508489999985, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python3-deb]": 0.6371258220000016, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python3]": 0.2745316730000127, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python]": 0.2818596459999867, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_default_image": 0.0007275409999749627, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_latest_tag": 0.0004937949999828106, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_numeric_but_not_most_updated": 0.24481145500001844, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_tag_labeled_latest": 0.0007498410000152944, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_without_tag": 0.0007361980000268886, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_native_image_in_dockerimage_field[demisto/py3-native:8.2.0.58349]": 0.012499586000018326, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_native_image_in_dockerimage_field[devdemisto/py3-native:8.2.0.58349]": 0.011498506000009456, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_lexical_find_latest_tag": 0.0007628159999626405, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_no_dockerimage_in_yml_file[javascript-True]": 0.0006540130000018962, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_no_dockerimage_in_yml_file[python-False]": 0.0008908170000268001, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_non_existing_docker": 0.023646136000024853, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[blabla/google-api-py3-1.0.0.5992-]": 0.0010420709999721112, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[feedparser-latest-]": 0.0007960990000128731, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[unknownvuser/v-alpine-at_v_commit-b17ade1257cfe086c1742c91deeb6c606037b893-]": 0.000882719999992787, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_not_latest_docker_older_than_3_days[return_value0-False-False]": 0.04504663899999173, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_not_latest_docker_older_than_3_days[return_value1-False-True]": 0.002380560999995396, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_docker_image": 0.0007898070000180724, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_docker_image_error": 0.0014874910000344244, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_www_auth[AAArealm=\"2\",service=\"3\"AAA-expected0]": 0.0006375730000058866, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_www_auth[bbb-expected1]": 0.0005842719999975543, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_allowed_ignore_errors_format": 0.0008320059999959994, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_error_code_format": 0.0006706949999966128, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_file_name_includes_spaces": 0.0005385770000430057, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_file_type_not_supported": 0.000571819000015239, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_id_should_equal": 0.0005402700000161076, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_image_path_error": 0.0005309929999839369, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_integration_is_skipped": 0.0005352419999837821, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_integration_is_skipped__comment": 0.0005040629999939483, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_invalid_context_output": 0.0005792040000187626, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_pack_metadata_empty": 0.0005047029999900587, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_wrong_display_name": 0.0005231690000186973, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_wrong_required_value": 0.0008530550000216408, + "demisto_sdk/commands/common/tests/errors_test.py::test_error_code_uniqueness": 0.0011700679999933072, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[incident_test_for_test-testfortest]": 0.0006515980000187938, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[incident_testfortest-testfortest]": 0.0006345869999790921, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_incident_test_for_test-incidenttestfortest]": 0.0006260300000064944, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_indicator_test_for_test-indicatortestfortest]": 0.0006160619999775463, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_test_for_test-testfortest]": 0.0006771159999914289, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[incident_test_for_for_test-testfortest]": 0.0007505239999829882, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[incident_testforfortest-testfortest]": 0.0008804480000037529, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[indicator_test_for_for_test-testfortest]": 0.0007541299999900275, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version0-old_from_version0-False]": 0.0009417710000150237, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version1-old_from_version1-True]": 0.0010895670000365953, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version2-old_from_version2-False]": 0.0009145100000296225, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version3-old_from_version3-False]": 0.0009299399999918023, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version4-old_from_version4-True]": 0.001049140999981546, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[number-number-False]": 0.0009240779999970528, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-longText-True]": 0.0010744600000123228, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-number-True]": 0.0010678069999698891, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-shortText-False]": 0.0009273439999617494, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[singleSelect-shortText-True]": 0.001065463000031741, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[singleSelect-singleSelect-False]": 0.0009408199999825229, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-number-True]": 0.0010984249999808071, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-shortText-True]": 0.0011665009999717313, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-timer-False]": 0.0009083580000321945, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.EVIDENCE_FIELD]": 0.0007864220000044497, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.INCIDENT_FIELD]": 0.0008214060000000245, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.INDICATOR_FIELD]": 0.00076218500001346, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.EVIDENCE_FIELD]": 0.0006271119999894381, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.INCIDENT_FIELD]": 0.0006550249999861535, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.INDICATOR_FIELD]": 0.0006366800000137118, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_inner_alias_in_aliased_field[aliases0-False]": 0.14738875699998744, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_inner_alias_in_aliased_field[aliases1-True]": 0.18450751399998921, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.EVIDENCE_FIELD]": 0.0007715129999894543, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.INCIDENT_FIELD]": 0.0007668150000199603, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.INDICATOR_FIELD]": 0.0007754200000249512, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[incident_validind-validind-GroupFieldTypes.INCIDENT_FIELD]": 0.0007081850000361101, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[indicator_validind-validind-GroupFieldTypes.INDICATOR_FIELD]": 0.0006833779999908529, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[validind-validind-GroupFieldTypes.EVIDENCE_FIELD]": 0.0006818760000157909, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file0-True]": 0.0006923460000223258, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file1-False]": 0.0007874629999662375, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file2-False]": 0.0007978120000018407, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version0-5.5.0-True]": 0.22400915300002566, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version1-6.0.0-True]": 0.2286374620000231, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version2-6.0.0-True]": 0.14481433700004231, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version3-6.1.0-True]": 0.1684168979999754, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version4-6.0.0-False]": 0.2349519130000033, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version5-6.0.0-False]": 0.22936222399999906, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version6-6.0.0-False]": 0.165474770000003, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[None-True]": 0.24783895600003802, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces0-False]": 0.1541097149999473, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces1-False]": 0.22942302800001357, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces2-True]": 0.10310630099999685, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file0-pack_metadata0-False]": 0.0014811799999847608, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file1-pack_metadata1-True]": 0.0012397590000432501, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file2-pack_metadata2-True]": 0.00789323300000433, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file3-pack_metadata3-False]": 0.0013577089999898817, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file4-pack_metadata4-False]": 0.0014559530000042287, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file5-pack_metadata5-False]": 0.0013184750000050371, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file0-False]": 0.0013310879999721692, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file1-False]": 0.0012395979999837436, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file2-True]": 0.0015304430000071534, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file3-True]": 0.001373339000025453, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file4-True]": 0.0015363939999986087, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file5-True]": 0.0014539680000211774, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_required[False-True]": 0.0008467339999924661, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_required[True-False]": 0.001033581999990929, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_system_flag_sanity[current_file0-True]": 0.0006656850000013037, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_system_flag_sanity[current_file1-False]": 0.0007808800000361771, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[-1-True]": 0.0010700720000045294, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[0-False]": 0.0009319419999940237, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[1-False]": 0.0009274939999954768, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex[agoodid]": 0.0007103399999834892, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex[anot3erg00did]": 0.0005724210000153107, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[\\u05dc\\u05d0\\u05e1\\u05dc\\u05d9\\u05d8\\u05d5\\u05d1]": 0.0006878859999801534, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid cli]": 0.0007038049999721352, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid$$cli]": 0.0006847500000048967, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid_cli]": 0.0007127119999950082, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content0-False]": 0.2192344149999883, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content1-False]": 0.15906581400000164, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content2-True]": 0.2247711210000034, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content3-True]": 0.170173922999993, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content4-True]": 0.23908912899995016, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content5-False]": 0.21536035999997694, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content6-True]": 0.23503234699998643, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content7-False]": 0.15085796700000742, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content8-True]": 0.23624149500000158, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content9-True]": 0.1546856260000311, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content0-False]": 0.15719593000000032, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content1-False]": 0.1580962799999952, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content2-True]": 0.15956115000000182, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content3-True]": 0.25884584399997834, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content4-True]": 0.18630189000003838, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content5-False]": 0.16261658499996656, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content6-True]": 0.16886397399997577, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content7-False]": 0.22014338799999678, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content8-True]": 0.15727716200001396, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content9-True]": 0.16613055499996676, + "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_no_genericModuleId": 0.019507363999991867, + "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_openended_removed": 0.019110562999998137, + "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_simple_generic_field_is_fine": 0.04243607700001917, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_custom_github_url": 0.005539348000013433, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_custom_github_url_invalid": 0.007742608000000928, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_get_repo_name_empty_case": 0.002250116999960028, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_get_repo_name_gitlab_invalid": 0.16721357799994507, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_gitlab_id_not_found": 0.0025302109999643108, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_provide_project_id": 0.005396139999987781, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_provide_repo_name": 0.0137820710000085, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_search_gitlab_id_invalid": 0.003322150999991891, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_search_gitlab_id_valid": 0.0026475519999848984, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[git@github.com:demisto/content-dist.git-demisto/content-dist]": 0.0022918249999861473, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[https://github.com/demisto/content-dist-demisto/content-dist]": 0.0022107839999989665, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[https://github.com/demisto/content-dist.git-demisto/content-dist]": 0.002217986000005112, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[ssh://git@github.com/demisto/content-dist.git-demisto/content-dist]": 0.0033598629999858076, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_gitlabs[https://code.pan.run/xsoar/content-dist-xsoar/content-dist]": 0.003041087000013931, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_gitlabs[https://code.pan.run/xsoar/content-dist.git-xsoar/content-dist]": 0.0022507479999944735, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_gitlabs[https://gitlab-ci-token:token@code.pan.run/xsoar/content-dist.git-xsoar/content-dist]": 0.00216613099999563, + "demisto_sdk/commands/common/tests/git_util_test.py::test_find_primary_branch": 0.0005705970000349225, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_integration_commands": 0.05841668899995511, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_scripts_and_subplaybooks": 0.05917489600000181, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_skip_unavailable": 0.1539127879999853, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_playbook_sub_playbook_exist": 0.003507518000020582, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_playbook_sub_playbook_not_exist": 0.003589952000027097, + "demisto_sdk/commands/common/tests/id_test.py::test_invalid_is_pack_display_name_already_exist": 0.0004936340000085693, + "demisto_sdk/commands/common/tests/id_test.py::test_invalid_playbook_is_file_valid_in_id_set": 0.0054306050000434425, + "demisto_sdk/commands/common/tests/id_test.py::test_is_classifier_incident_types_found__exists": 0.0004897949999929097, + "demisto_sdk/commands/common/tests/id_test.py::test_is_classifier_incident_types_found__missing_classifier": 0.0006581610000182536, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_negative": 0.0006236850000220784, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_no_scripts": 0.00045774600002346233, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_positive": 0.0004813399999932244, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_with_command_negative": 0.0005944409999756317, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_with_command_positive": 0.00047675199999730467, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_type_using_real_playbook__happy_flow": 0.0005496470000423415, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_type_using_real_playbook__no_matching_playbook_id": 0.0007174919999783924, + "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__classifier_not_exist": 0.0006249400000228889, + "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__exist": 0.000463897000003044, + "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__mapper_not_exist": 0.0006134580000320966, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_ignore_builtin_scripts": 0.000449610000003986, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_negative": 0.0005927090000170665, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_no_scripts": 0.0004854180000108954, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_positive": 0.0006242460000294159, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_script_validate_integration_commands_scripts": 0.00047417700005780716, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_script_validate_integration_commands_scripts_on_wrong_command": 0.0005895540000153687, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_negative": 0.0006011140000055093, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_no_scripts": 0.00046184399997173387, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_positive": 0.0004736350000200673, + "demisto_sdk/commands/common/tests/id_test.py::test_is_mapper_incident_types_found__exists": 0.00046721400002525115, + "demisto_sdk/commands/common/tests/id_test.py::test_is_mapper_incident_types_found__missing_classifier": 0.0005975469999839333, + "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__bad_command_name": 0.0005964750000089225, + "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__happy_flow": 0.0006047709999847939, + "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__no_depend_on_name": 0.000474056000030032, + "demisto_sdk/commands/common/tests/id_test.py::test_is_unique_file_valid_in_set": 0.004083324999982096, + "demisto_sdk/commands/common/tests/id_test.py::test_new_invalid_is_pack_display_name_already_exist": 0.0024470850000000155, + "demisto_sdk/commands/common/tests/id_test.py::test_new_valid_is_pack_display_name_already_exist": 0.0005278680000060376, + "demisto_sdk/commands/common/tests/id_test.py::test_valid_is_pack_display_name_already_exist": 0.000461182000037752, + "demisto_sdk/commands/common/tests/image_test.py::test_image_in_both_yml_and_directory": 0.005590032999975847, + "demisto_sdk/commands/common/tests/image_test.py::test_image_when_invalid_type": 0.005453886999958968, + "demisto_sdk/commands/common/tests/image_test.py::test_is_not_default_image": 0.013876475999978766, + "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_invalid_name[IntNameTest_image.png]": 0.01901153799997246, + "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_invalid_name[IntName_img.png]": 0.021127253000003066, + "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_valid_name": 0.0215218200000038, + "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_positive": 0.005140369999992345, + "demisto_sdk/commands/common/tests/image_test.py::test_json_outputs_where_no_image_in_integration": 0.020211612000025525, + "demisto_sdk/commands/common/tests/image_test.py::test_no_image_integration": 0.02230935399998657, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_invalid_incident_field_type": 0.26229345099994816, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[attachments]": 0.3102627840000025, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[boolean]": 0.24936535399999116, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[date]": 0.32966217200001324, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[grid]": 0.3298623509999743, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[html]": 0.34086003599998094, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[internal]": 0.2585579349999989, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[longText]": 0.35852355300002614, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[markdown]": 0.2640865259999714, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[multiSelect]": 0.37451544000001036, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[number]": 0.19506101700000045, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[role]": 0.317713040000001, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[shortText]": 0.252726043000024, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[singleSelect]": 0.2850717890000283, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[tagsSelect]": 0.25218072600000596, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[timer]": 0.24798068399996964, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[url]": 0.24226207000003797, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[user]": 0.33347709100004863, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version0-old_from_version0-False]": 0.0009553259999961483, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version1-old_from_version1-True]": 0.0010375809999629837, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version2-old_from_version2-False]": 0.0008790739999824382, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version3-old_from_version3-False]": 0.0009355499999799122, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version4-old_from_version4-True]": 0.0010614260000068043, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_id_equal_name[AWS EC2 Instance Misconfiguration-AWS EC2 Instance Misconfiguration-True]": 0.0009569279999652736, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_id_equal_name[AWS EC2 Instance Misconfiguration-AWS EC2 Instance Wrong configuration-False]": 0.00097793799997703, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file0-True]": 0.0007012410000015734, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file1-False]": 0.0007711620000350194, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file2-False]": 0.0007587889999740582, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field0-True]": 0.0008235499999784679, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field1-True]": 0.0008174589999896398, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field2-True]": 0.0008323870000310762, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field3-True]": 0.0008469840000202566, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field4-False]": 0.0009826790000033725, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field5-False]": 0.0009103020000225115, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field6-False]": 0.0009898509999857197, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field7-False]": 0.0009737509999752092, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field8-False]": 0.0009126869999818155, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[-False]": 0.0009644239999886395, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[All-True]": 0.0008437069999729374, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[None-False]": 0.0009173050000299554, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[Specific-True]": 0.0008556699999928696, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[all-False]": 0.0009229059999711353, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_no_extract_rules": 0.000694999999979018, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[-True]": 0.0008312850000038452, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[12b3a41b-04ce-4417-89b3-4efd95d28012-False]": 0.0009161339999934626, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[abbababb-aaaa-bbbb-cccc-abcdabcdabcd-False]": 0.0009584419999839611, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[valid playbook-True]": 0.0010295950000340781, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[-1-True]": 0.0014093959999570416, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[0-False]": 0.0009419309999998404, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[1-False]": 0.0009159530000033556, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_invalid_grid_from_version": 0.22747307200000932, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_invalid_incident_field_type": 0.23563748000000828, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[grid-5.0.0-False]": 0.17761022299998785, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[grid-5.5.0-True]": 0.14895417599996108, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[html-6.0.0-False]": 0.22311698699996896, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[html-6.1.0-True]": 0.22923230699998953, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[number-5.0.0-True]": 0.15784019399998783, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[boolean]": 0.3253682150000259, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[date]": 0.3179735649999884, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[grid]": 0.30427147099999274, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[html]": 0.2506531319999681, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[longText]": 0.26146706499997663, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[markdown]": 0.26279111400000943, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[multiSelect]": 0.31011967699998877, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[number]": 0.25472916600000417, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[role]": 0.33575720499999306, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[shortText]": 0.28060191200003715, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[singleSelect]": 0.3148408369999913, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[tagsSelect]": 0.33045779500000094, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[url]": 0.33879079900000875, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[user]": 0.33378413299996623, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args0-True-False]": 0.001342921999992086, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args1-False-False]": 0.0013249079999866353, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args2-True-True]": 0.0014889040000412024, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_display_name_contains_the_type": 0.13812670399997273, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_files_names_with_separators": 0.2249757099999954, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_files_names_without_separators": 0.12695827999999665, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_folder_name_with_separators": 0.14451927799998998, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_folder_name_without_separators": 0.14513759800001935, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_fromlicense_in_integration_parameters_fields[XSOAR-True]": 0.09154300199998033, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_fromlicense_in_integration_parameters_fields[community-False]": 0.20028183399998056, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_get_field_to_required_dict[input_json0-expected0]": 0.0005816769999853477, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current0-True]": 0.0006462789999943652, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current1-False]": 0.0007859090000010838, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current2-False]": 0.0007571559999917099, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current0-True]": 0.0006165030000033767, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current1-True]": 0.0006186770000340402, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current2-False]": 0.000743120000009867, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_feed[True-5.0.0]": 0.008961207999988119, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_feed[True-None]": 0.008680193000003555, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[-False]": 0.0007758910000177366, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[42-False]": 0.0007573970000009922, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[False-True0]": 0.0007272410000211948, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[False-True1]": 0.0006238469999857443, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[None-False]": 0.0007863009999766746, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[None-True]": 0.0006776469999749679, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[Tr\\xfce-False]": 0.0007796779999864611, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[True-True0]": 0.0006276739999862002, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[True-True1]": 0.0006196890000182975, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[\\U0001f972-False]": 0.0007831449999855522, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[false-True]": 0.0007157189999702496, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value10-True]": 0.0006321429999616157, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value14-False]": 0.000797821000020349, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value15-False]": 0.0007746279999878425, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value16-False]": 0.0008038229999556279, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value17-False]": 0.0007692389999647276, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value19-False]": 0.0008424750000131098, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value22-False]": 0.0008191729999680319, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value23-False]": 0.0007929420000039045, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value24-False]": 0.0007672450000200115, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value25-False]": 0.0008841739999922993, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value26-False]": 0.0008024610000063603, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value27-False]": 0.0007992049999927531, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value28-False]": 0.0008213860000410023, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value3-True]": 0.0006610369999862087, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value4-True]": 0.0006316220000144313, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value5-True]": 0.000623424999986355, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[true-True]": 0.0006213819999629777, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[xsoar-False]": 0.0007786860000180695, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_integration_parameters_display_name": 0.149519870000006, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_integration_path": 0.1507701430000168, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_py_file_names[IntNameTest.py]": 0.0857137509999859, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_py_file_names[IntNameTest_test.py]": 0.17569723800002635, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[community-4-False-True]": 0.17699267300000088, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[partner-4-False-True]": 0.16369447100001366, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-4-False-False]": 0.14500648399996408, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-4-True-True]": 0.14916298399998595, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-9-False-True]": 0.213398557999966, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_checkbox_param_configured_correctly[current0-True]": 0.0006113929999855827, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_checkbox_param_configured_correctly[current1-False]": 0.0007291039999870463, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current0-True]": 0.0006214329999636448, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current1-False]": 0.000787771999995357, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current2-False]": 0.0007977219999872887, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current3-False]": 0.0008490469999742345, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current0-not bang-True]": 0.0006856430000254932, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current1-not bang-True]": 0.000681333999978051, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current2-email-False]": 0.0010993160000225544, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current3-file-False]": 0.0010561059999645295, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current4-ip-True]": 0.0008883209999908104, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current5-endpoint-True]": 0.0007136250000030486, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_partner_collector_has_xsoar_support_level_header[partner-False]": 0.009878875999987713, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_partner_collector_has_xsoar_support_level_header[xsoar-True]": 0.010033072999988235, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current0-True]": 0.0006300180000096134, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current1-False]": 0.001483944000028714, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current2-False]": 0.0008030309999753626, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current3-False]": 0.0007953680000127861, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict0-False-False]": 0.008242315999979155, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict1-True-True]": 0.0012474329999747624, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict2-False-True]": 0.0013349460000426916, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict3-False-True]": 0.0011425970000118468, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current0-True-True]": 0.0007410659999891323, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current1-False-True]": 0.0006725989999836202, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current2-True-False]": 0.0007818519999602813, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current3-True-False]": 0.0008010190000220518, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current4-True-False]": 0.0007870620000005601, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current5-old5-False]": 0.0008130800000287763, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current0-True-valid_list_mock0]": 0.001707806000013079, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current1-True-valid_list_mock1]": 0.001707210999995823, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current2-False-valid_list_mock2]": 0.001781863000019257, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current0-True]": 0.0006245680000063203, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current1-True]": 0.0006190380000248297, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current2-False]": 0.0007880439999894406, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current3-False]": 0.0007384499999716354, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current0-False]": 0.0008061359999942397, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current1-True]": 0.0006065340000134256, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current2-True]": 0.0006244370000274557, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current3-False]": 0.0007795380000175101, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current4-False]": 0.000868193000002293, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current5-False]": 0.0008009079999737878, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current6-False]": 0.0007723539999915374, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current7-False]": 0.0008518539999897712, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current8-True]": 0.0006511279999870112, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current0-True]": 0.0006592230000137533, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current1-True]": 0.0006350759999804723, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current2-True]": 0.0006083170000295013, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current3-True]": 0.0006255010000018046, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current4-False]": 0.0007320089999893753, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current5-False]": 0.0007561139999836541, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current6-False]": 0.0007322499999986576, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current0-True]": 0.0009953800000062074, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current1-True]": 0.0006696420000196213, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current2-True]": 0.0006601950000231227, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current3-False]": 0.0007686080000439688, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current4-False]": 0.0007781860000477536, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current5-False]": 0.0007502029999670867, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current6-False]": 0.0007672050000451236, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_description_positive": 0.005348093000037579, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting0-False]": 0.0006513180000240482, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting1-False]": 0.0005987790000006044, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting2-True]": 0.0008028809999984787, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting3-True]": 0.0008183209999685914, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting4-False]": 0.0006168650000404341, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting5-True]": 0.0008167780000007951, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting6-False]": 0.0006341770000233282, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting7-False]": 0.0006307400000196139, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current0-True]": 0.0007992760000092858, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current1-False]": 0.0007413959999951203, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current2-False]": 0.0008275179999941429, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current3-False]": 0.00074741800003153, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current0-True]": 0.0006613769999717078, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current1-True]": 0.0006135679999772492, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current2-True]": 0.0006189769999878081, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current3-True]": 0.0005996220000099584, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current4-False]": 0.0007365669999614965, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current0-True]": 0.000635038000041277, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current1-True]": 0.0006620380000015302, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current2-False]": 0.0007661230000053365, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current3-False]": 0.000741687000015645, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current0-True]": 0.0006244479999963914, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current1-False]": 0.0007273100000020349, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current2-False]": 0.0007248870000182706, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_name_contains_the_type": 0.18286897300001215, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_name_does_not_contains_the_type": 0.14620893000000024, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file0-old_file0-True]": 0.000876882000028445, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file1-old_file1-False]": 0.0009378649999973732, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file2-old_file2-True]": 0.0006838480000226355, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file3-old_file3-True]": 0.0007190330000241829, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[added context path]": 0.001356798000017534, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[added new command and changed context of old command]": 0.0018175400000188802, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[added new command]": 0.0012139090000289343, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[context changes in multiple commands]": 0.0017987340000331642, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[context path change]": 0.0017300250000005235, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[deleted command outputs]": 0.001585774000005813, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[deleted outputs for two command]": 0.0017331009999850266, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[no change with no outputs]": 0.0013207599999986996, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[no change]": 0.010995492999995804, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[no changes in one command output and deleted outputs for other command]": 0.001643362000010029, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[removed context path]": 0.0015573230000143212, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current0-old0-True]": 0.000731899000015801, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current1-old1-False]": 0.0009061450000160676, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current2-old2-False]": 0.000889644000011458, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current3-old3-True]": 0.0007070819999910327, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current4-old4-False]": 0.000878494000005503, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current5-old5-False]": 0.0008836829999836482, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current6-old6-False]": 0.0008876199999861001, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current7-old7-True]": 0.0007031860000381585, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg_msg[current0-old0-[BC104] - Possible backwards compatibility break, Your updates to this file contains changes to a name or an argument of an existing command(s).\\nPlease undo you changes to the following command(s):\\ntest1\\ntest2]": 0.0015885510000543945, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file0-old_file0-True]": 0.000700178999977652, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file1-old_file1-True]": 0.0006628609999950186, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file2-old_file2-False]": 0.0008930989999953454, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file3-old_file3-False]": 0.0008754280000289327, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current0-old0-False]": 0.0008939819999795873, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current1-old1-False]": 0.0008678849999910199, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current2-old2-True]": 0.0006971740000096815, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current3-old3-True]": 0.0006649049999793988, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_duplicate_params[current0-True]": 0.0006288150000273163, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content0-True]": 0.0006697729999984858, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content1-False]": 0.0007578480000063337, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content2-False]": 0.0007738490000122056, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file0-old_file0-True]": 0.0007047179999801756, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file1-old_file1-True]": 0.0006862830000216036, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file2-old_file2-False]": 0.0008896549999803938, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file3-old_file3-False]": 0.0008651279999867256, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-4.5.0]": 0.0006587320000051022, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-5.5.0]": 0.000657901000010952, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-None]": 0.0006884869999908005, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[True-5.5.0]": 0.0007856109999977434, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_default_value[yml_data0-True]": 0.2602182009999865, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_default_value[yml_data1-False]": 0.17923894300000143, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_display_name": 0.2732007329999817, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_path": 0.5442934579999985, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands0-True-False-False]": 0.0009863450000011653, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands1-True-True-True]": 0.0007692789999680372, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands2-False-False-True]": 0.0008338379999770495, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands3-False-False-False]": 0.000903988999965577, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands4-False-True-True]": 0.0007751489999918704, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands5-False-True-True]": 0.0007500830000140013, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_with_duplicate_params": 0.000600923999996894, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_additional_info_contained": 0.0007271810000020196, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_empty_commands": 0.0006468400000017027, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_hidden_feed_reputation_field": 0.0006884969999987334, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param0]": 0.0007158999999887783, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param1]": 0.0008326779999947576, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param2]": 0.0007244250000155716, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param3]": 0.0007384209999941049, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable_negative": 0.0008592479999833813, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current0-True]": 0.0008236209999665789, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current1-True]": 0.0008719299999597752, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current10-True]": 0.0008530349999773534, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current11-False]": 0.0009401590000095439, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current2-False]": 0.0009391760000028171, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current3-False]": 0.0009284239999942656, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current4-True]": 0.000808022000001074, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current5-True]": 0.0007902579999949921, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current6-True]": 0.0008173790000114423, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current7-True]": 0.0008317549999787843, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current8-True]": 0.0008139820000394593, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current9-False]": 0.001064259000003176, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_malformed_field": 0.007432789999995748, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_missing_field": 0.0021443800000042756, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_sanity": 0.006188825000009501, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_section_field_feed": 0.0006912519999957567, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid": 0.0006892000000107146, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-4.5.0-False]": 0.0011463429999594155, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-5.5.0-True]": 0.0008858269999905133, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-5.5.1-True]": 0.0009212430000218319, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-6.0.0-True]": 0.0008763590000171462, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-None-False]": 0.001018453999989788, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[python--True]": 0.0008418459999859351, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[python-4.5.0-True]": 0.0008657479999953921, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[False-yml_data3--True]": 0.01927482799999325, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[True-yml_data0-## Commands\\n### command_name\\n somename-True]": 0.01952384300000176, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[True-yml_data1--True]": 0.019455455000013444, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[True-yml_data2--False]": 0.0198942370000168, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme_no_readme_file": 0.019594025000003512, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces0-configs0-False]": 0.002092685000008032, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces1-configs1-True]": 0.0008626829999798247, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces2-configs2-True]": 0.0008226580000325612, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces3-configs3-False]": 0.0019888309999771536, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces4-configs4-False]": 0.0025708080000015343, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces5-configs5-True]": 0.000834990000015523, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_malformed_field": 0.016942846999967287, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_missing_field": 0.00493337599999677, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_missing_max_fetch_text": 0.00670476100000883, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_not_fetch": 0.00622726500000681, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_sanity": 0.00479672100004791, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_valid": 0.0050980949999939185, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_default_value_in_max_fetch": 0.0007394630000305824, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_fetch_time": 0.0014572159999488576, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_max_fetch": 0.0012337990000332866, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_not_fetch": 0.0006184369999573391, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_valid": 0.0006519489999732286, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_context_correct_in_readme[\\n#### Base Command\\n\\n`test-command`\\n#### Input\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| arg | arg | Required |\\n\\n#### Context Output\\n\\n| **Path** | **Type** | **Description** |\\n| --- | --- | --- |\\n| Test | - | - |\\n\\n#### Command Example\\n\\n```\\n!test-command\\n```\\n\\n#### Human Readable Output\\n-current_yml1-False]": 0.0037174919999642952, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_context_correct_in_readme[\\n#### Base Command\\n\\n`test-command`\\n#### Input\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| arg | arg | Required |\\n\\n#### Context Output\\n\\n| **Path** | **Type** | **Description** |\\n| --- | --- | --- |\\n| Test.test | - | - |\\n\\n#### Command Example\\n\\n```\\n!test-command\\n```\\n\\n#### Human Readable Output\\n-current_yml0-True]": 0.015303130000006604, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_context_correct_in_readme[\\n#### Base Command\\n\\n`test-command`\\n#### Input\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| arg | arg | Required |\\n\\n#### Context Output\\n\\n| **Path** | **Type** | **Description** |\\n| --- | --- | --- |\\n| Test.test | - | - |\\n\\n#### Command Example\\n\\n```\\n!test-command\\n```\\n\\n#### Human Readable Output\\n-current_yml2-False]": 0.0031153870000082406, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content0-False-True]": 0.19567827900002044, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content1-True-False]": 0.14253127800000698, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content10-True-True]": 0.19502358499997285, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content11-True-True]": 0.23905455900003858, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content12-True-True]": 0.19595242199997642, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content13-True-True]": 0.26156947300000866, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content2-True-False]": 0.15320878400001448, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content3-True-True]": 0.16099939299999733, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content4-True-True]": 0.15814628900000116, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content5-True-True]": 0.20031221200000005, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content6-True-False]": 0.2117449140000076, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content7-True-True]": 0.21337668699999313, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content8-True-True]": 0.20350487599998246, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content9-True-True]": 0.22071135600000957, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_native_image_does_not_exist_in_yml_fail[integration_yml0-False]": 0.1773295019999921, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_native_image_does_not_exist_in_yml_fail[integration_yml1-True]": 0.1438219680000259, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs0-True]": 0.0007579070000076626, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs1-False]": 0.0010292849999871123, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs2-False]": 0.0007940149999967616, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-False-False-True]": 0.1597936480000044, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-False-True-True]": 0.14739749099999244, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-True-False-False]": 0.22894434199997704, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-True-True-True]": 0.1818099699999891, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-False-False-True]": 0.129600288000006, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-False-True-True]": 0.1658151180000118, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-True-False-False]": 0.16851985500002797, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-True-True-True]": 0.1935993819999453, + "demisto_sdk/commands/common/tests/layout_rule_test.py::test_is_not_valid_file_complicated_schema": 0.1649535800000308, + "demisto_sdk/commands/common/tests/layout_rule_test.py::test_is_valid_file": 0.22893695800001979, + "demisto_sdk/commands/common/tests/layout_rule_test.py::test_is_valid_file_complicated_schema": 0.17985617900001216, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_name_id_equal[layout_container0-True]": 0.0019904520000295634, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_name_id_equal[layout_container1-False]": 0.002094857999964006, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_layout_container": 0.009493921999990107, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_layout_container_with_incident_field[layout_json0-id_set_json0-True-True]": 0.027288073999983453, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_layout_container_with_incident_field[layout_json1-id_set_json1-True-False]": 0.009120717999991257, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_mpv2_layout[layout_json0-False]": 0.0021173589999818887, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_mpv2_layout[layout_json1-True]": 0.0020067639999865605, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_layout_container_is_incident_field_exist_in_content[layout_json0-id_set_json0-True-True]": 0.0022536740000020927, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_layout_container_is_incident_field_exist_in_content[layout_json1-id_set_json1-True-False]": 0.0023165019999566994, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_layout_is_incident_field_exist_in_content[layout_json0-id_set_json0-True-True]": 0.0024501909999798954, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_layout_is_incident_field_exist_in_content[layout_json1-id_set_json1-True-False]": 0.0023708140000451294, + "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_filter_changed_files": 0.010354143999961707, + "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_get_changed_files": 0.0010459659999924042, + "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_staged": 0.002555900000032807, + "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path0-True]": 0.0008216269999650194, + "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path1-False]": 0.0010227930000041852, + "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path2-False]": 0.0010713840000278196, + "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path3-False]": 0.0008808980000480915, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[ [red]foo[/red]- [red]]": 0.0006612969999935103, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[ foo-]": 0.0005983790000243516, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red foo-]": 0.0006260209999879862, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red][bold]foo[/bold][/red]-[red][bold]]": 0.0006038790000104655, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red]foo[/red]-[red]]": 0.0006090290000031473, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[foo [red]bar[/red]-]": 0.0006515179999553311, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[foo-]": 0.0005934600000045975, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[ [red]foo[/red]-bar_- [red]bar_foo[/red]]": 0.0006663050000099702, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[ foo-bar_-bar_ foo]": 0.0006543230000204403, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[[red]foo[/red]-bar_-[red]bar_foo[/red]]": 0.0006609250000053635, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[foo [red]bar[/red]-baz_-baz_foo [red]bar[/red]]": 0.0006839390000266121, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[foo-bar_-bar_foo]": 0.0006544750000045951, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_contains_escapes[[red]foo[/red]-True]": 0.0006826059999696099, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_contains_escapes[foo-False]": 0.000623977000003606, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[ [red]foo[/red]-True]": 0.0006014639999989413, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[ foo-False]": 0.0005915469999990819, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[[red]foo[/red]-True]": 0.0006411600000149065, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[foo [red]bar[/red]-False]": 0.0006294879999870773, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[foo-False]": 0.000618135999985725, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[ [red]foo[/red]-True]": 0.0006083469999964564, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[ foo-False]": 0.0006998800000133087, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[[red]foo[/red]-True]": 0.0005985090000137916, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[foo [red]bar[/red]-False]": 0.0005908549999560364, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[foo-False]": 0.0005775710000079926, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json0-id_set_json0-True-True]": 0.004906828000002861, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json1-id_set_json1-True-False]": 0.0023933059999876605, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json2-id_set_json2-True-True]": 0.002218027000026268, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json3-id_set_json3-True-False]": 0.0025232689999938884, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_name_id_equal[mapper0-True]": 0.0020531190000099286, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_name_id_equal[mapper1-False]": 0.0021673939999971026, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_disabled_rule": 0.0047312079999812795, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_filename_returned_in_validations": 0.005029916000012236, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_fixes[## Header\\n next line-## Header\\n\\n next line]": 0.007262101999998549, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_fixes[## Unreleased\\n\\n * Feature1\\n- feature2-## Unreleased\\n\\n* Feature1\\n* feature2]": 0.009420978999997942, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_fixes[##Hello-## Hello]": 0.008058371999993597, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[## Header\\n next line-blanks-around-headings]": 0.005764992000024449, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[##Hello-no-missing-space-atx]": 0.024945761999987326, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[

something

-no-inline-html]": 0.0064775940000174614, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[\\n## Unreleased\\n\\n * Feature1\\n* feature2-list-indent]": 0.018023376000002145, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_dataset_name_matches_in_xif_and_schema": 0.17103532299998392, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_modeling_rule": 0.1776845170000172, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[schema]": 0.17199834699999883, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[testdata]": 0.17370838799999433, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[xif]": 0.09754203100001746, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[yml]": 0.18727707400000781, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_missing_key_from_yml": 0.15841066999999498, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_not_empty_rules_key": 0.15531868100001134, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_not_empty_schema_key": 0.1655052560000172, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_schema_types_valid[schema0-False]": 0.24827156400002082, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_schema_types_valid[schema1-True]": 0.17507918399999767, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_valid_modeling_rule": 0.17087485000001834, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_valid_rule_file_name": 0.17749066499999344, + "demisto_sdk/commands/common/tests/native_image_test.py::TestScriptIntegrationSupportedNativeImages::test_get_supported_native_image_versions[Image OCR-demisto/tesseract:1.0.0.36078-expected_native_images2]": 0.0023974730000020372, + "demisto_sdk/commands/common/tests/native_image_test.py::TestScriptIntegrationSupportedNativeImages::test_get_supported_native_image_versions[Panorama-demisto/pan-os-python:1.0.0.30307-expected_native_images1]": 0.0023541920000411665, + "demisto_sdk/commands/common/tests/native_image_test.py::TestScriptIntegrationSupportedNativeImages::test_get_supported_native_image_versions[Prisma Cloud Compute-demisto/python3:3.10.1.25933-expected_native_images3]": 0.002393556999976454, + "demisto_sdk/commands/common/tests/native_image_test.py::TestScriptIntegrationSupportedNativeImages::test_get_supported_native_image_versions[SSDeepSimilarity-demisto/ssdeep:1.0.0.23743-expected_native_images4]": 0.0023765640000021904, + "demisto_sdk/commands/common/tests/native_image_test.py::TestScriptIntegrationSupportedNativeImages::test_get_supported_native_image_versions[TimeComponents-demisto/python3:3.10.1.25933-expected_native_images5]": 0.002451213999989932, + "demisto_sdk/commands/common/tests/native_image_test.py::TestScriptIntegrationSupportedNativeImages::test_get_supported_native_image_versions[UnzipFile-demisto/unzip:1.0.0.23423-expected_native_images0]": 0.002587387999966495, + "demisto_sdk/commands/common/tests/native_image_test.py::test_docker_images_to_supported_native_images": 0.0021481079999716712, + "demisto_sdk/commands/common/tests/native_image_test.py::test_get_native_image_reference[native:8.1-demisto/py3-native:8.1.0.12345]": 0.002290274000017689, + "demisto_sdk/commands/common/tests/native_image_test.py::test_get_native_image_reference[native:8.4-None]": 0.002303586999971685, + "demisto_sdk/commands/common/tests/native_image_test.py::test_load_native_image_config": 0.0023833980000063093, + "demisto_sdk/commands/common/tests/old_release_notes_test.py::test_rn_master_diff[-False]": 0.000924849999989874, + "demisto_sdk/commands/common/tests/old_release_notes_test.py::test_rn_master_diff[diff --git a/Integrations/integration-VirusTotal_CHANGELOG.md b/Integrations/integration-VirusTotal_CHANGELOG.md\\n\\nindex cbf564679..cffab9e90 100644\\n--- a/Integrations/integration-VirusTotal_CHANGELOG.md\\n+++ b/Integrations/integration-VirusTotal_CHANGELOG.md\\n@@ -1,15 +1,15 @@\\n ## [Unreleased]\\n- - Added batch support for the **ip** and **url** and **domain** commands.\\n+ - Added batch support for the **ip** and **url** and **domain** commands1.\\n - Fixed an issue where the DBotScore would create duplications in the incident context. This effects Demisto version 5.5 and higher.\\n ## [19.8.2] - 2019-08-22\\n - Added the Virus Total permanent link to the context of the following commands: \\n - url\\n - file\\n - url-scan\\n - file-scan\\n - file-rescan\\n ## [19.8.0] - 2019-08-06\\n - Updated outputs with new indicator fields.-False]": 0.0009598260000132086, + "demisto_sdk/commands/common/tests/old_release_notes_test.py::test_rn_master_diff[diff --git a/Integrations/integration-VirusTotal_CHANGELOG.md b/Integrations/integration-VirusTotal_CHANGELOG.md\\n\\nindex cbf564679..cffab9e90 100644\\n--- a/Integrations/integration-VirusTotal_CHANGELOG.md\\n+++ b/Integrations/integration-VirusTotal_CHANGELOG.md\\n@@ -1,15 +1,15 @@\\n ## [Unreleased]\\n- - Added batch support for the **ip** and **url** and **domain** commands.\\n+ - Added batch support for the **ip** and **url** and **domain** commands1.\\n+ \\n - Fixed an issue where the DBotScore would create duplications in the incident context. This effects Demisto version 5.5 and higher.\\n ## [19.8.2] - 2019-08-22\\n - Added the Virus Total permanent link to the context of the following commands: \\n - url\\n - file\\n - url-scan\\n - file-scan\\n - file-rescan\\n ## [19.8.0] - 2019-08-06\\n - Updated outputs with new indicator fields.-True]": 0.0007335500000067441, + "demisto_sdk/commands/common/tests/old_release_notes_test.py::test_rn_master_diff[diff --git a/Integrations/integration-VirusTotal_CHANGELOG.md b/Integrations/integration-VirusTotal_CHANGELOG.md\\nindex cbf564679..c49498c58 100644\\n--- a/Integrations/integration-VirusTotal_CHANGELOG.md\\n+++ b/Integrations/integration-VirusTotal_CHANGELOG.md\\n@@ -1,15 +1,14 @@\\n ## [Unreleased]\\n- - Added batch support for the **ip** and **url** and **domain** commands.\\n- - Fixed an issue where the DBotScore would create duplications in the incident context. This effects Demisto version 5.5 and higher.\\n+\\n ## [19.8.2] - 2019-08-22\\n - Added the Virus Total permanent link to the context of the following commands: \\n - url\\n - file\\n - url-scan\\n - file-scan\\n - file-rescan\\n ## [19.8.0] - 2019-08-06\\n - Updated outputs with new indicator fields.-False]": 0.001021311000016567, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content0-True-valid_list_mock0]": 0.013983012000011286, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content1-False-valid_list_mock1]": 0.013875578999972049, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content2-False-valid_list_mock2]": 0.014065246000001252, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content3-False-valid_list_mock3]": 0.01399466400002325, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content4-False-valid_list_mock4]": 0.014047841999968114, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_integration_pack": 0.014510598000015307, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[0.-False]": 0.01321219000004703, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1-2-1-False]": 0.013077498000001242, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1.1.1-True]": 0.013187683000012385, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1.2-False]": 0.013212189000029184, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[12.1.5-True]": 0.01280969700002288, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[4.4.16-True]": 0.015725971000051686, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[blabla-False]": 0.01353910000000269, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_not_dict": 0.013888234000006605, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_empty_categories": 0.017606899000014664, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_list.json]": 0.014761267000011458, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_missing_fields.json]": 0.014651732999965361, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_name_start_incorrect.json]": 0.014898421999987477, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_name_start_lower.json]": 0.015569649000042318, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_pack_in_name.json]": 0.014875330000023723, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_short_name.json]": 0.01458196100000464, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata__invalid_module.json]": 0.01746775699999148, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata__module_non_xsiam.json]": 0.018675928000021713, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_empty_categories.json]": 0.019007348000002366, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_invalid_category.json]": 0.017801041999973677, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_invalid_dependencies.json]": 0.018065395999968814, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_invalid_format_version.json]": 0.017696136000012075, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_invalid_keywords.json]": 0.01768428299999414, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_invalid_price.json]": 0.017891181000010192, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_invalid_tags.json]": 0.019074020999966024, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid__non_breaking[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata_list_dependencies.json]": 0.017999121999963563, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid_version_add_error": 0.017444414999999935, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata__valid.json]": 0.01944632999999385, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata__valid__community.json]": 0.019647444000014502, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/pack_metadata__valid_module.json]": 0.017055556000030947, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_name_does_not_contain_excluded_word": 0.013365696000022353, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack0]": 0.03441184799999064, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack10]": 0.07786914000001843, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack11]": 0.08079664699999967, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack12]": 0.01698511700001859, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack1]": 0.0333546589999969, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack2]": 0.038708542999984275, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack3]": 0.030115972000032798, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack4]": 0.0677413500000057, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack5]": 0.07901257999998279, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack6]": 0.0766970390000381, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack7]": 0.05946826699999974, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack8]": 0.07807424500001048, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack9]": 0.07460902399998304, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content0-False]": 0.013624832000033393, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content1-False]": 0.013465121999985286, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content2-False]": 0.013397486000002345, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content3-False]": 0.013529331000029288, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content4-True]": 0.013418096000037849, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_check_timestamp_format": 0.013129223999953865, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_file_not_found": 0.0173123339999961, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_getting_git_error": 0.03369997900003341, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_relative_path": 0.016447545999994873, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_running_on_master": 0.016949285000009695, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_invalid_is_pack_metadata_desc_too_long": 0.0013688180000031025, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tag_prefix[tags0-True]": 0.01634099199998218, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tag_prefix[tags1-False]": 0.01674090800000272, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags0-True-branch_tags0]": 0.017084040999975514, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags1-True-branch_tags1]": 0.01709843800000499, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags2-False-branch_tags2]": 0.017328959999986182, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags3-True-branch_tags3]": 0.02692436399999565, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags4-False-branch_tags4]": 0.017207400999978972, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags_with_non_approved_prefix[tags0-False-branch_tags0]": 0.01715489400001502, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases0-True-branch_usecases0]": 0.020132410999991635, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases1-True-branch_usecases1]": 0.01679309700000431, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases2-False-branch_usecases2]": 0.017385784999987663, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_error_added_full_path": 0.0006475910000176555, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_error_added_name_only": 0.0006745309999871552, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_file_exist": 0.0006863240000143378, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[incident-tags3-True]": 0.029928416000018387, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[layout-tags4-True]": 0.01644127499997694, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[none-tags0-True]": 0.016197140999992143, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[none-tags1-False]": 0.016991066000002775, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[playbook-tags2-True]": 0.04354764100000352, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[playbook-tags5-True]": 0.04253856600001882, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata0-1.0.1-True-True]": 0.003968984000010778, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata1-1.0.1-True-False]": 0.0042818270000282155, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata2-1.0.2-True-False]": 0.009518812000010257, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata3-1.0.2-False-False]": 0.0041214580000144, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata4-1.0.0-False-True]": 0.0038289199999894663, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[community-True]": 0.015958151999996062, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[developer-True]": 0.016126796000037302, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[partner-True]": 0.0159268529999963, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[someName-False]": 0.01625405499999033, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[test-False]": 0.016565667999998368, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[xsoar-True]": 0.015994169000009606, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_no_readme_alert_on_scripts_layouts": 0.018526425000004565, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_pack_readme_is_different_then_pack_description[Hey there, just testing-True]": 0.016432979999990494, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_pack_readme_is_different_then_pack_description[This is a test. All good!-False]": 0.016772700000018403, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_parse_file_into_list": 0.0006552649999775895, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_valid_is_pack_metadata_desc_too_long": 0.001908518999982789, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_author_image_exists_invalid": 0.003781320999991067, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_author_image_exists_valid": 0.003589712999968242, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_core_pack_dependencies": 0.01311744100001988, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_dependencies_invalid_id_set": 0.015277581999981749, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_dependencies_skip_id_set_creation": 0.11654286999998931, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_metadata": 0.024712606999969466, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_and_pack_description_no_readme_file": 0.01633695200001739, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_missing_file": 0.013029044999996131, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[ -False]": 0.014033401999995476, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[-False]": 0.013906243999997514, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[Text-True]": 0.013489275000011958, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[\\t\\t\\n -False]": 0.013893288999952347, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[ -False]": 0.013910842000001367, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[-False]": 0.013715337999968824, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[Text-True]": 0.017709865999989916, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[\\t\\t\\n -False]": 0.014119985000036195, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_invalid_images": 15.052936362999986, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_relative_url": 0.014574998000028927, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_valid_images": 0.019865918000050442, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_unique_files": 0.02288435799997046, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_contribute_pack_metadata_no_mail_and_url": 0.11212521799998854, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_contribute_pack_metadata_price_change": 0.01762938000001668, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_pack_metadata_url[https://github.com/pont_to_repo-False]": 0.1515659070000197, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_pack_metadata_url[https://github.com/pont_to_repo/issues-True]": 0.1596358010000074, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_pack_metadata_url[some_support_url-True]": 0.24722014099995704, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json0-True]": 0.0006845200000213936, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json1-True]": 0.000643171999996639, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json2-False]": 0.0008869780000111405, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json0-True]": 0.0006385939999802304, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json1-True]": 0.000622033000013289, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json10-False]": 0.0009579010000209109, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json11-True]": 0.0006236659999956373, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json12-True]": 0.0006287060000147449, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json13-True]": 0.0006171340000094006, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json14-True]": 0.0006211219999840978, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json15-False]": 0.0008535770000150933, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json16-False]": 0.0008249029999944923, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json17-True]": 0.0006206209999675139, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json2-True]": 0.0006803619999971033, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json3-True]": 0.0006114130000298701, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json4-False]": 0.0008455609999771241, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json5-False]": 0.0008791330000121889, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json6-False]": 0.0008543969999834644, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json7-True]": 0.0006304190000037124, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json8-True]": 0.0006610160000093401, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json9-True]": 0.0006341749999592139, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_correct_value_references[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/correct_playbook_reference_use.yml-True]": 0.04527457200003937, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_correct_value_references[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incorrect_playbook_reference_use.yml-False]": 0.10008918299999436, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json0-False]": 0.000888191999990795, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json1-True]": 0.0006325519999847984, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json2-True]": 0.0006816349999780869, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_id_uuid[playbook_json0-True]": 0.0006781669999895712, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_id_uuid[playbook_json1-False]": 0.0006080869999891547, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json0-True]": 0.0006330440000397175, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json1-True]": 0.0006015749999619402, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json2-False]": 0.0009260109999900124, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json3-False]": 0.0008214359999954013, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json4-False]": 0.0008082919999878868, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json5-True]": 0.0006317909999893345, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json6-True]": 0.0006133359999864751, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_taskid_equals_id[playbook_json0-True]": 0.0006312189999846396, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_taskid_equals_id[playbook_json1-False]": 0.0006360300000096686, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_using_instance[playbook_json0-False]": 0.0008167860000298788, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_using_instance[playbook_json1-True]": 0.0006209010000191029, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current0-True]": 0.000687927999990734, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current1-True]": 0.0006504269999823009, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current2-True]": 0.0006244479999963914, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current3-False]": 0.0008413040000050387, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current4-False]": 0.000839009999992868, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current5-False]": 0.0008112970000127007, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json0-True]": 0.0008288200000095003, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json1-False]": 0.0009250390000374864, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json2-False]": 0.0008584560000031161, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json3-False]": 0.0008394499999724303, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_name_contains_the_type": 0.21306362100003184, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_name_does_not_contains_the_type": 0.16677259400003663, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_inputs[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook_inputs_not_in_use.yml-False-True]": 0.009579965000000357, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_inputs[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook_inputs_not_in_use.yml-True-False]": 0.010559518999997408, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_inputs[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook_valid_inputs.yml-True-True]": 0.027697105999976657, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json0-id_set_json0-True]": 0.05814387699999202, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json1-id_set_json1-False]": 0.058363588000048594, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json2-id_set_json2-True]": 0.058255696000003354, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json3-id_set_json3-False]": 0.05862808300000211, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_skipping_test_playbooks[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/content_repo_example/Packs/FeedAzure/Playbooks/FeedAzure_test.yml-False]": 0.065525751000024, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_skipping_test_playbooks[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/content_repo_example/Packs/FeedAzure/TestPlaybooks/playbook-FeedAzure_test_copy_no_prefix.yml-True]": 0.06643225599998459, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_valid_schema": 0.37348816900001225, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[False-False-True]": 0.26253866600001174, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[True-False-False]": 0.1758160939999982, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[True-True-True]": 0.13098875699998302, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_verify_else_for_conditions_task[playbook_task_json0-False]": 0.0006383750000225064, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_verify_else_for_conditions_task[playbook_task_json1-True]": 0.0006100600000138456, + "demisto_sdk/commands/common/tests/pre_process_rule_test.py::TestPreProcessRuleValidator::test_get_field_name": 0.0005972870000050534, + "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# BSD\\n def test():\\n pass]": 0.019280024000039475, + "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# Copyright\\n import pytest]": 0.01968415900000764, + "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# MIT\\n import test]": 0.019011020000021972, + "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# proprietary\\n\\ninput]": 0.019107109000003675, + "demisto_sdk/commands/common/tests/readme_test.py::test_air_gapped_env": 0.002320861000015384, + "demisto_sdk/commands/common/tests/readme_test.py::test_are_modules_installed_for_verify_false_res": 0.31324410400003444, + "demisto_sdk/commands/common/tests/readme_test.py::test_check_readme_relative_image_paths": 0.0017890869999916958, + "demisto_sdk/commands/common/tests/readme_test.py::test_combined_unvalid_verify_no_empty_sections[## Troubleshooting\\n## OtherSection\\n## Additional Information\\n\\n## OtherSection\\n##]": 0.03202373399997782, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found0-False]": 0.0065655070000048, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found1-False]": 0.006396381999991263, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found2-True]": 0.006015610000019933, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found0-errors_ignore0-False]": 0.019466131000001496, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found1-errors_ignore1-False]": 0.019537974999991548, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found2-errors_ignore2-True]": 0.041024605000018255, + "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## BSD\\n\\n---\\ninput]": 0.01890957999998477, + "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## Copyright\\ninput]": 0.01892526900002167, + "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## MIT\\n\\n----------\\ninput]": 0.01890176500003804, + "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## proprietary\\n\\ninput]": 0.018874034000020856, + "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_in_integration_readme": 0.0066136679999999615, + "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_in_repo_readme": 0.0025724999999852116, + "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_not_in_readme": 0.008656486999967683, + "demisto_sdk/commands/common/tests/readme_test.py::test_invalid_short_file": 0.0013385429999743792, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-empty.md-True]": 0.012233516999998528, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-invalid.md-False]": 0.06748751099999595, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-invalid2.md-False]": 0.027094626000007338, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-short-invalid.md-False]": 0.01588550399998212, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-valid.md-True]": 0.7947635489999811, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid_mdx_server[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-empty.md-True]": 0.008911643999994112, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid_mdx_server[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-invalid.md-False]": 17.14840078200001, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid_mdx_server[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-invalid2.md-False]": 0.029054559999991625, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid_mdx_server[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-short-invalid.md-False]": 0.012713163000000804, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_file_valid_mdx_server[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-valid.md-True]": 0.16272861699997065, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_image_path_valid": 0.0018880419999618425, + "demisto_sdk/commands/common/tests/readme_test.py::test_readme_ignore[/HelloWorld/README.md-getting started and learn how to build an integration]": 0.019019646000032253, + "demisto_sdk/commands/common/tests/readme_test.py::test_relative_url_not_valid": 0.0018997020000313114, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Additional Information\\n\\n## OtherSection-Additional Information]": 0.019758920000015223, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Known Limitations\\n\\n----------\\n-Known Limitations]": 0.019579843000002484, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting-Troubleshooting]": 0.01992833599996402, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting\\n## OtherSection-Troubleshooting]": 0.0209229769999979, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting\\n\\n---\\n## OtherSection-Troubleshooting]": 0.0195510499999898, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Use Cases\\n\\n----------\\n## OtherSection-Use Cases]": 0.01944902899998624, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Additional Information\\n\\n### OtherSection]": 0.018766533000018626, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Additional Information\\n\\ninput]": 0.018675792999999885, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Known Limitations\\n\\n----------\\ninput]": 0.01856640799999809, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Troubleshooting\\n\\n---\\ninput]": 0.01870809300001497, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Troubleshooting\\ninput]": 0.018714697000007163, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Use Cases\\n\\n----------\\ninput]": 0.01890285800001834, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_image_exist[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-invalid.md-False]": 0.0019938580000200545, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_image_exist[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-valid.md-True]": 0.0016249979999827247, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_no_default_sections_left[##### Required Permissions **FILL IN REQUIRED PERMISSIONS HERE**\\n##### Base Command-FILL IN REQUIRED PERMISSIONS HERE]": 0.0418542470000034, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_no_default_sections_left[##### Required Permissions FILL IN REQUIRED PERMISSIONS HERE-FILL IN REQUIRED PERMISSIONS HERE0]": 0.01973244000001273, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_no_default_sections_left[##### Required Permissions FILL IN REQUIRED PERMISSIONS HERE-FILL IN REQUIRED PERMISSIONS HERE1]": 0.01961514999999281, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_no_default_sections_left[##### Required Permissions\\n**FILL IN REQUIRED PERMISSIONS HERE**\\n##### Base Command-FILL IN REQUIRED PERMISSIONS HERE]": 0.01963065800001118, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_no_default_sections_left[##Dummy Integration\\n this integration is for getting started and learn how to build an integration. some extra text here-getting started and learn how to build an integration]": 0.01978280299999824, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_no_default_sections_left[In this readme template all required notes should be replaced.\\n# %%UPDATE%% -%%UPDATE%%]": 0.019727079000006142, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_no_default_sections_left[This integration was integrated and tested with version xx of integration v2.-version xx]": 0.019635195999995858, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_readme_image_paths": 10.031122161000013, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_template_not_in_readme": 0.0062342689999752565, + "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_has_corresponding_rn_file[None-False]": 0.0038486370000043735, + "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_has_corresponding_rn_file[Some RN text-True]": 0.003899001000007729, + "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_is_valid_file[None-False]": 0.009150402000017266, + "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_is_valid_file[Some RN text-True]": 0.003706640999979527, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete[### Integrations\\n#### HelloWorld\\n- Grammar correction for code description.\\n\\n### Scripts\\n#### HelloWorldScript \\n- Grammar correction for code description. -False]": 0.10237943300001007, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete[-False]": 0.1084826769999836, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete[\\n### Classifiers\\n#### dummy classifier\\n- Test\\n\\n### Dashboards\\n#### dashboard-sample_packs_new2.json\\n-Test\\n\\n### Incident Types\\n#### Cortex XDR Incident\\n- Test\\n\\n### Incident Fields\\n#### XDR Alerts\\n- Test\\n\\n### Integrations\\n#### Palo Alto Networks Cortex XDR - Investigation and Response\\n- Test\\n\\n### Layouts\\n#### details-Cortex_XDR_Incident\\n- Test\\n\\n### Scripts\\n#### EntryWidgetNumberHostsXDR\\n- Test\\n\\n### Playbooks\\n#### Cortex XDR Incident Handling\\n- test\\n-True]": 0.10051196999998524, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete[\\n### Incident Types\\n#### Cortex XDR Incident\\n- %%UPDATE_RN%%\\n\\n### Incident Fields\\n#### XDR Alerts\\n- %%UPDATE_RN%%\\n\\n### Integrations\\n#### Palo Alto Networks Cortex XDR - Investigation and Response\\n- %%UPDATE_RN%%\\n\\n### Scripts\\n#### EntryWidgetNumberHostsXDR\\n- %%UPDATE_RN%%\\n-False]": 0.10092031700000348, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_added[### Integrations\\n#### HelloWorld\\n- Grammar correction for code description.\\n\\n### Scripts\\n#### HelloWorldScript\\n- Grammar correction for code description. -False]": 0.12023011400000883, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_added[-False]": 0.11945653899996955, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_added[\\n### Classifiers\\n#### dummy classifier\\n- Test\\n\\n### Dashboards\\n#### dashboard-sample_packs_new2.json\\n-Test\\n\\n### Incident Types\\n#### Cortex XDR Incident\\n- Test\\n\\n### Incident Fields\\n#### XDR Alerts\\n- Test\\n\\n### Integrations\\n#### Palo Alto Networks Cortex XDR - Investigation and Response\\n- Test\\n\\n### Layouts\\n#### details-Cortex_XDR_Incident\\n- Test\\n\\n### Scripts\\n#### EntryWidgetNumberHostsXDR\\n- Test\\n\\n### Playbooks\\n#### Cortex XDR Incident Handling\\n- test\\n-True]": 0.11777223799998637, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_added[\\n### Incident Types\\n#### Cortex XDR Incident\\n- %%UPDATE_RN%%\\n\\n### Incident Fields\\n#### XDR Alerts\\n- %%UPDATE_RN%%\\n\\n### Integrations\\n#### Palo Alto Networks Cortex XDR - Investigation and Response\\n- %%UPDATE_RN%%\\n\\n### Scripts\\n#### EntryWidgetNumberHostsXDR\\n- %%UPDATE_RN%%\\n-False]": 0.11735733300002948, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_file_pack_contained_in_file_name_different_pack": 0.020710050000047886, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_invalid_file_type[### Integrations\\n#### HelloWorld\\n- Grammar correction for code description.\\n\\n### Scripts\\n#### HelloWorldScript \\n- Grammar correction for code description. -False]": 0.10723665699998719, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_invalid_file_type[-False]": 0.10661442399998577, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_invalid_file_type[\\n### Classifiers\\n#### dummy classifier\\n- Test\\n\\n### Dashboards\\n#### dashboard-sample_packs_new2.json\\n-Test\\n\\n### Incident Types\\n#### Cortex XDR Incident\\n- Test\\n\\n### Incident Fields\\n#### XDR Alerts\\n- Test\\n\\n### Integrations\\n#### Palo Alto Networks Cortex XDR - Investigation and Response\\n- Test\\n\\n### Layouts\\n#### details-Cortex_XDR_Incident\\n- Test\\n\\n### Scripts\\n#### EntryWidgetNumberHostsXDR\\n- Test\\n\\n### Playbooks\\n#### Cortex XDR Incident Handling\\n- test\\n-True]": 0.10569621800001983, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_invalid_file_type[\\n### Incident Types\\n#### Cortex XDR Incident\\n- %%UPDATE_RN%%\\n\\n### Incident Fields\\n#### XDR Alerts\\n- %%UPDATE_RN%%\\n\\n### Integrations\\n#### Palo Alto Networks Cortex XDR - Investigation and Response\\n- %%UPDATE_RN%%\\n\\n### Scripts\\n#### EntryWidgetNumberHostsXDR\\n- %%UPDATE_RN%%\\n-False]": 0.10558225300002277, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_renamed_file": 0.025746432999994795, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_rn_config": 0.003951111999981549, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_with_author_image": 0.020934941000007257, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_get_categories_from_rn[get_categories_from_rn-\\n#### Integrations\\n##### Integration name1\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.\\n##### Integration name2\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.-filled_expected_result1]": 0.0036518739999849004, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_get_categories_from_rn[get_categories_from_rn-\\n#### Integrations\\n##### Integration name\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.\\n#### Scripts\\n##### Script name\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.-filled_expected_result0]": 0.0036704670000062833, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_get_categories_from_rn[get_entities_from_category-\\n##### Integration name1\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.\\n##### Integration name2\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.-filled_expected_result2]": 0.003702927999995609, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[### Integrations\\n#### HelloWorld\\n- Grammar correction for code description.\\n\\n### Scripts\\n#### HelloWorldScript\\n- Grammar correction for code description. -True]": 0.001498984999983577, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[-False]": 0.0018359850000138067, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[ #### Integrations\\n##### Some Integration-True]": 0.001457477999991852, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[-False]": 0.0016963449999707336, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[\\n### Classifiers\\n#### dummy classifier\\n- Test\\n\\n### Dashboards\\n#### dashboard-sample_packs_new2.json\\n-Test\\n\\n### Incident Types\\n#### Cortex XDR Incident\\n- Test\\n\\n### Incident Fields\\n#### XDR Alerts\\n- Test\\n\\n### Integrations\\n#### Palo Alto Networks Cortex XDR - Investigation and Response\\n- Test\\n\\n### Layouts\\n#### details-Cortex_XDR_Incident\\n- Test\\n\\n### Scripts\\n#### EntryWidgetNumberHostsXDR\\n- Test\\n\\n### Playbooks\\n#### Cortex XDR Incident Handling\\n- test\\n-True]": 0.005942487999988089, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[\\n### Incident Types\\n#### Cortex XDR Incident\\n- %%UPDATE_RN%%\\n\\n### Incident Fields\\n#### XDR Alerts\\n- %%UPDATE_RN%%\\n\\n### Integrations\\n#### Palo Alto Networks Cortex XDR - Investigation and Response\\n- %%UPDATE_RN%%\\n\\n### Scripts\\n#### EntryWidgetNumberHostsXDR\\n- %%UPDATE_RN%%\\n-False]": 0.001811548000006269, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_init": 0.000627353999988145, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Content item dose not exist]": 0.005206802999992988, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Content type dose not exist]": 0.028007334000022865, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid content type format]": 0.004975580000007085, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid special forms missing star]": 0.010400428999957967, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid special forms]": 0.005074995999990506, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_is_docker_image_same_as_yml[Integration-#### Integrations\\n##### Integration name\\n- Moved the Pack to Cortex XSOAR support instead of community support.-yml_content3-True]": 0.012142568999991, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_is_docker_image_same_as_yml[Integration-#### Integrations\\n##### Integration name\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.-yml_content0-True]": 0.00984604300001024, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_is_docker_image_same_as_yml[Script-\\n#### Scripts\\n##### Script name\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.2122*.-yml_content2-False]": 0.009953112999994573, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_is_docker_image_same_as_yml[Script-\\n#### Scripts\\n##### Script name\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.-yml_content1-True]": 0.011949518999983866, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[%%UPDATE_RN%%-False]": 0.0017160090000061246, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[-False]": 0.0018371960000251875, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[This are sample release notes-False]": 0.001356497000017498, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[## script_name\\n- Some description.-True]": 0.0007425480000051721, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[#### Scripts\\n##### script_name\\n- Some description.-True]": 0.0007426099999747748, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[#### Scripts\\n- Some description.-True]": 0.0007359860000519802, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[##### script_name\\n- Some description.-False]": 0.0010102010000423434, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[- Some description.-False]": 0.000965916999973615, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_headers": 0.052426242000024104, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_json_when_breaking_changes[\\n#### Integrations\\n##### Integration name\\n- Breaking change test\\n-False-False-False]": 0.008660474000009799, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_json_when_breaking_changes[\\n#### Integrations\\n##### Integration name\\n- Breaking change test\\n-True-False-True]": 0.007941660000000184, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_json_when_breaking_changes[\\n#### Integrations\\n##### Integration name\\n- Breaking change test\\n-True-True-False]": 0.004699041000009174, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_json_when_breaking_changes[\\n#### Integrations\\n##### Integration name\\n- Upgraded the Docker image to: *demisto/python3:3.9.5.21272*.\\n-False-False-True]": 0.009282447999993337, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[-CIDR-False]": 0.001508462000003874, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[CIDR--False]": 0.0015547099999935199, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[CIDR-CIDR-True]": 0.001331260000029033, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_equals_details[CIDR-CIDR-True]": 0.0013697229999820593, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_equals_details[CIDR-CIDR2-False]": 0.0014769430000001194, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[-1-False]": 0.0015887710000015431, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[0-True]": 0.0013116939999804345, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[500-True]": 0.0012975369999708164, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[not_valid-False]": 0.001428934000045956, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[CIDR-True]": 0.001415859000076125, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[host_test-True]": 0.0012598280000588602, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4 ipv6-True]": 0.0012504200000762467, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4&ipv6-True]": 0.0012738849999323065, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4*ipv6-False]": 0.001451636000012968, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4-ipv6-False]": 0.0014357250000216482, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[-1-True]": 0.001437669999972968, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[0-False]": 0.0014644089999933385, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[1-False]": 0.0014180530000089675, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_configuration_extraction[script0-expected0]": 0.000583091000009972, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file0-old_file0-True]": 0.0011300350000738035, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file1-old_file1-False]": 0.0007029049999687231, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file2-old_file2-True]": 0.0010826670000483318, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file3-old_file3-False]": 0.0006780090000120254, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file4-old_file4-False]": 0.0006857250000393833, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file5-old_file5-False]": 0.0007343429999764339, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file6-old_file6-True]": 0.0010125650000532005, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file7-old_file7-False]": 0.000674020999952063, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file8-old_file8-False]": 0.0006978959999628387, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_files_names_with_separators": 0.11583051200005912, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_files_names_without_separators": 0.2128372620000505, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_folder_name_with_separators": 0.17793609900002139, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_folder_name_without_separators": 0.09667358100000456, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_invalid_script_file_path": 0.01570050700001957, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file0-old_file0-False]": 0.0006764660000158074, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file1-old_file1-True]": 0.0010375800000019808, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file2-old_file2-False]": 0.0006953210000233412, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file3-old_file3-False]": 0.0006635710000182371, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file0-old_file0-False]": 0.0006768460000330379, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file1-old_file1-False]": 0.0006694420000030732, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file2-old_file2-False]": 0.0006855229999587209, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file3-old_file3-False]": 0.0006687010000518967, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file4-old_file4-True]": 0.0010208290000264242, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file0-old_file0-True]": 0.0010757229999853735, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file1-old_file1-True]": 0.000985625000055279, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file2-old_file2-False]": 0.0007633079999322945, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file3-old_file3-False]": 0.0006706750000375905, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/ApiModules-False-True]": 0.0006643530000474129, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/ApiModules-True-True]": 0.0006682609999302258, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/Pack1-True-True]": 0.0006848920000379621, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content0-False-True]": 0.14997658199996522, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content1-True-False]": 0.1629521550000277, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content10-True-True]": 0.22383336600000803, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content11-True-True]": 0.15924194900003386, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content12-True-True]": 0.1881493869999531, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content13-True-True]": 0.16139972599995644, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content2-True-False]": 0.2467724150000663, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content3-True-True]": 0.15825044199999638, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content4-True-True]": 0.2281106949999412, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content5-True-True]": 0.22085145099998726, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content6-True-False]": 0.24069666800005507, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content7-True-True]": 0.23999947800001564, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content8-True-True]": 0.21437085099995556, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content9-True-True]": 0.24303070799999205, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_native_image_does_not_exist_in_yml_fail[script_yml0-False]": 0.045632425999997395, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_native_image_does_not_exist_in_yml_fail[script_yml1-True]": 0.045204204000015125, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_there_duplicates_args[current_file0-True]": 0.0006297980000340431, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_there_duplicates_args[current_file1-False]": 0.0006078170000591854, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current0-True]": 0.0006939980000311152, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current1-True]": 0.0006550159999392235, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current2-True]": 0.0006430320000276879, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current3-False]": 0.000841704999970716, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current4-False]": 0.0008512339999242613, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current5-False]": 0.0007996759999286951, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_name[current0-True]": 0.0006107319999273386, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_name[current1-False]": 0.0008194729999786432, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file0-False]": 0.0008281380000880745, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file1-True]": 0.0006228050000913754, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file2-True]": 0.0006123850000108177, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_name_contains_the_type": 0.15587378599997237, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_name_does_not_contains_the_type": 0.14940315300003704, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_no_incident_in_core_pack[content0-True]": 0.0006333740000172838, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_no_incident_in_core_pack[content1-False]": 0.0009556789999578541, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_runas_is_dbtrole": 0.22664397300002292, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_runas_is_not_dbtrole": 0.14929895300002727, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-4.5.0-False]": 0.0009970449999627817, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-5.5.0-True]": 0.0007240740000042933, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-5.5.1-True]": 0.000712292999935471, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-6.0.0-True]": 0.0007031669999264523, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-None-False]": 0.0010208409999563628, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[python--True]": 0.0006660760000158916, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[python-4.5.0-True]": 0.0006537739999430414, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_script_file_path": 0.000500226000042403, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-False-False-True]": 0.19624839699997665, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-False-True-True]": 0.2405386300000032, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-True-False-False]": 0.24291440499996497, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-True-True-True]": 0.2541866460000506, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-False-False-True]": 0.10118695799997113, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-False-True-True]": 0.20837638000000425, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-True-False-False]": 0.22230369199996858, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-True-True-True]": 0.15509501199994702, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_get_matching_regex[Packs/XDR/NoMatch/XDR.yml-regexes1-False]": 0.0006774479999762661, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_get_matching_regex[Packs/XDR/Playbooks/XDR.yml-regexes0-(?:./)?Packs\\\\/([^\\\\\\\\\\\\/]+)\\\\/Playbooks\\\\/.*\\\\.yml]": 0.0007690490000413774, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable0-non_acceptable0-regex0]": 0.0009570510000003196, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable1-non_acceptable1-regex1]": 0.0009147229999939555, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable10-non_acceptable10-regex10]": 0.0006536129999972218, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable11-non_acceptable11-regex11]": 0.0006775270000503042, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable12-non_acceptable12-regex12]": 0.0006376240000349753, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable13-non_acceptable13-regex13]": 0.0006331339999974261, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable14-non_acceptable14-regex14]": 0.0006540229999814073, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable15-non_acceptable15-regex15]": 0.0006373310000071797, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable16-non_acceptable16-regex16]": 0.0006326049999643146, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable17-non_acceptable17-regex17]": 0.0006351889999791638, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable18-non_acceptable18-regex18]": 0.0006996779999894898, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable19-non_acceptable19-regex19]": 0.0006373929999767824, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable2-non_acceptable2-regex2]": 0.0006622289999995701, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable20-non_acceptable20-regex20]": 0.000640408999970532, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable21-non_acceptable21-regex21]": 0.0006425529999773971, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable22-non_acceptable22-regex22]": 0.0007648209999615574, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable23-non_acceptable23-regex23]": 0.0006548759999986942, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable24-non_acceptable24-regex24]": 0.000650255999971705, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable25-non_acceptable25-regex25]": 0.0006560970000464295, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable26-non_acceptable26-regex26]": 0.0006350179999685679, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable27-non_acceptable27-regex27]": 0.0008387579999862282, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable28-non_acceptable28-regex28]": 0.000666507999994792, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable29-non_acceptable29-regex29]": 0.0006354999999871325, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable3-non_acceptable3-regex3]": 0.0008485870000072282, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable30-non_acceptable30-regex30]": 0.0006344690000332776, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable31-non_acceptable31-regex31]": 0.0007385420000218801, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable32-non_acceptable32-regex32]": 0.00110851499994169, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable33-non_acceptable33-regex33]": 0.0006601849999583465, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable4-non_acceptable4-regex4]": 0.0006505379999452998, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable5-non_acceptable5-regex5]": 0.0008642459999350649, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable6-non_acceptable6-regex6]": 0.0008304730000645577, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable7-non_acceptable7-regex7]": 0.0006629909999560368, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable8-non_acceptable8-regex8]": 0.000648082999930466, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable9-non_acceptable9-regex9]": 0.0006569579999791131, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config0-True]": 0.012322918999984722, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config1-True]": 0.012028357000019696, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config2-True]": 0.01212495800001534, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config3-True]": 0.012100981999992655, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config4-True]": 0.011986769999964508, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config5-False]": 0.012882654999941678, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config6-False]": 0.012809450000020206, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_check_for_spaces_in_file_name": 0.2905657979999887, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_integration_file_with_valid_id[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-id-test.yml-False-found a slash in the ID even though it not contains a slash.]": 0.2331660270000384, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_integration_file_with_valid_id[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-valid-id-test.yml-True-Didn't find a slash in the ID even though it contains a slash.]": 0.5187147480000363, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_integration_file_with_valid_id[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-True-Didn't find a slash in the ID even though it contains a slash.]": 0.17530291400004216, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_field_with_open_ended": 0.394471392000014, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-Packs/TestPack/Integrations/integration-test.yml-False]": 0.4053540689999977, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-Packs/TestPack/Playbooks/playbook-test.yml-True]": 0.5869794559999377, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-False]": 0.08449701000006371, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-valid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-True]": 0.12169212500003823, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-True]": 0.5396715089999589, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-invalid.json-Packs/TestPack/Layouts/layout-mock.json-False]": 0.12833996599999864, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-valid.json-Packs/TestPack/Layouts/layout-mock.json-True]": 0.2862793319999355, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_invalid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-False]": 0.23902258500004336, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_valid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-True]": 0.28484931799999913, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-invalid.json-Packs/TestPack/Widgets/widget-mocks.json-False]": 0.09807447699995464, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-valid.json-Packs/TestPack/Widgets/widget-mocks.json-True]": 0.05719514100002243, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_indicator_with_open_ended": 0.31794118200002686, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_extension": 0.002247753000006014, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Notinregex/report-sade.json-False]": 0.002191043000038917, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Packs/Test/Integrations/Cymon/Cymon.yml-True]": 0.03944615299997167, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Packs/Test/Reports/report-sade.json-True]": 0.04344060300007868, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[fromVersion-False]": 0.36061777700001585, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[fromVersion-True]": 0.3624329739999439, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[id-False]": 0.3602725590000091, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[id-True]": 0.3643204090000154, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isAllFeeds-False]": 0.3649564560000158, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isAllFeeds-True]": 0.36240846100002955, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isFeed-False]": 0.3616136150000102, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isFeed-True]": 0.36787359099992045, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[name-False]": 0.36241960199998857, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[name-True]": 0.36523007699997834, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[playbookId-False]": 0.3600363479999942, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[playbookId-True]": 0.3617061319999948, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[selectedFeeds-False]": 0.35954638800006933, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[selectedFeeds-True]": 0.36368174199998293, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml1.yml-integration- - Cannot find required key 'category'. Path: ''.: Path: '/'>'-Missing the field \"category\" in root]": 0.10999952900010612, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml2.yml-integration- - Cannot find required key 'id'. Path: '/commonfields'.: Path: '/'>'-Missing the field \"id\" in Path: 'commonfields']": 0.10928834700001744, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml3.yml-integration- - Cannot find required key 'description'. Path: '/script/commands/0/arguments/0'.: Path: '/'>'-Missing the field \"description\" in Path: 'script'-> 'commands'-> 'integrationTest-search-vulnerabilities'-> 'arguments'-> 'top-priority']": 0.10996828099996492, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml4.yml-integration- - Cannot find required key 'description'. Path: '/script/commands/5/outputs/0'.: Path: '/'>'-Missing the field \"description\" in Path: 'script'-> 'commands'-> 'integrationTest-get-connectors'-> 'outputs'-> 'integrationTest.ConnectorsList.ID']": 0.10955754200000456, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml4.yml-integration- - Key 'ok' was not defined. Path: '/configuration/0'-The field \"ok\" in path 'configuration'-> 'url' was not defined in the scheme]": 0.10822502700011682, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml4.yml-integration-- Enum 'Network Securitys' does not exist. Path: '/category' Enum: ['Analytics & SIEM', 'Utilities', 'Messaging'].-The value \"Network Securitys\" in 'category' is invalid - legal values include: 'Analytics & SIEM', 'Utilities', 'Messaging']": 0.11042606799992427, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_indicatorfield[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicator-field-exact-scheme.json-Packs/TestPack/IncidentFields/incidentfield-test.json-True]": 0.03970941800002947, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_indicatorfield[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicator-field-missing-field.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False]": 0.03991129399997817, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_indicatorfield[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicatorfield-extra-fields.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False]": 0.041295364000006884, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_indicatorfield[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicatorfield-missing-and-extra-fields.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False]": 0.04141287300001295, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_playbook[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-ArcSight_Add_Domain_Indicators.yml-playbook-True-Found a problem in the scheme although there is no problem]": 0.2180361349999771, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_playbook[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-playbook-False-Found no problem in the scheme although there is a problem]": 0.16423252100003083, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_playbook[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-playbook-True-Found a problem in the scheme although there is no problem]": 0.17750139399998943, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_reputation[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputation-cidr-invalid.json-False]": 0.023823290999985147, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_scheme_validation_reputation[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputation-cidr-valid.json-True]": 0.023800999999991745, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_alias_to": 0.3229991339999856, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_aliases__invalid_type": 0.3475915520000399, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_aliases__valid": 0.3078219949999834, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_pretty_name": 0.31367817400007425, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[dependency_packs]": 0.1373497380000117, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[fromVersion]": 0.13835264299996197, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[id]": 0.13727789499995424, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[name]": 0.1376428780000083, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[wizard]": 0.14141168899999457, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_check_for_spaces_in_file_name": 0.0014202170000316983, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_modeling_rule_is_valid[yml_data_update0]": 0.10360575499998959, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_modeling_rule_is_valid[yml_data_update1]": 0.1750175009999566, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_parsing_rule_is_valid[yml_data_update0]": 0.2101356400000327, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_parsing_rule_is_valid[yml_data_update1]": 0.23521133599996347, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_integration_file_with_valid_id[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-id-test.yml-False-found a slash in the ID even though it not contains a slash.]": 0.24271905100005142, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_integration_file_with_valid_id[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-valid-id-test.yml-True-Didn't find a slash in the ID even though it contains a slash.]": 0.24553271100000984, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_integration_file_with_valid_id[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-True-Didn't find a slash in the ID even though it contains a slash.]": 0.18476200600002812, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_layout_rule_missing_layout_id_field": 0.2402988809998874, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_modeling_rule_schema_bad_type": 0.16699791899992533, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_modeling_rule_yml_missing_fromversion": 0.187117010999998, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_parsing_rule_yml_missing_fromversion": 0.1867077050000603, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_trigger_missing_search_field": 0.2385666279999441, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xdrc_template_missing_ostype": 0.16253314099998306, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xsiam_dashboard_has_creator_mail": 0.26721612400001504, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xsiam_report_missing_global_id": 0.25125087800000756, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_field_with_open_ended": 0.16273802999995723, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-Packs/TestPack/Integrations/integration-test.yml-False]": 0.406852067999921, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-Packs/TestPack/Playbooks/playbook-test.yml-True]": 0.5481555339999886, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-False]": 0.08479740800004265, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-valid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-True]": 0.08314238299999488, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-True]": 0.4434956929999885, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-invalid.json-Packs/TestPack/Layouts/layout-mock.json-False]": 0.1254141040000718, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-valid.json-Packs/TestPack/Layouts/layout-mock.json-True]": 0.12466592200001969, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_invalid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-False]": 0.23952108799994676, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_valid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-True]": 0.23723845899996832, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-invalid.json-Packs/TestPack/Widgets/widget-mocks.json-False]": 0.058870101999900726, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-valid.json-Packs/TestPack/Widgets/widget-mocks.json-True]": 0.058029697999984364, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_indicator_with_open_ended": 0.16289289000002327, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_extension": 0.002119844999981524, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Notinregex/report-sade.json-False]": 0.0031385290000116584, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Packs/Test/Integrations/Cymon/Cymon.yml-True]": 0.0011645289999933084, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Packs/Test/Reports/report-sade.json-True]": 0.001570156000013867, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[fromVersion-False]": 0.36736839299999247, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[fromVersion-True]": 0.3597722929999918, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[id-False]": 0.3638708290000068, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[id-True]": 0.3713267960000053, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isAllFeeds-False]": 0.3640495549999514, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isAllFeeds-True]": 0.3613336009999557, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isFeed-False]": 0.36724096400001827, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isFeed-True]": 0.3638482470000213, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[name-False]": 0.3640027669999313, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[name-True]": 0.36503824400006124, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[playbookId-False]": 0.3634629850000124, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[playbookId-True]": 0.36070364500000096, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[selectedFeeds-False]": 0.36529242000000295, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[selectedFeeds-True]": 0.36250813199995946, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml1.yml-integration- - Cannot find required key 'category'. Path: ''.: Path: '/'>'-Missing the field \"category\" in root]": 0.111629497000024, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml2.yml-integration- - Cannot find required key 'id'. Path: '/commonfields'.: Path: '/'>'-Missing the field \"id\" in Path: 'commonfields']": 0.11164202199995543, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml3.yml-integration- - Cannot find required key 'description'. Path: '/script/commands/0/arguments/0'.: Path: '/'>'-Missing the field \"description\" in Path: 'script'-> 'commands'-> 'integrationTest-search-vulnerabilities'-> 'arguments'-> 'top-priority']": 0.11112994400002663, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml4.yml-integration- - Cannot find required key 'description'. Path: '/script/commands/5/outputs/0'.: Path: '/'>'-Missing the field \"description\" in Path: 'script'-> 'commands'-> 'integrationTest-get-connectors'-> 'outputs'-> 'integrationTest.ConnectorsList.ID']": 0.1112218060000032, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml4.yml-integration- - Key 'ok' was not defined. Path: '/configuration/0'-The field \"ok\" in path 'configuration'-> 'url' was not defined in the scheme]": 0.11180818400004, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_print_error_line[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-yml4.yml-integration-- Enum 'Network Securitys' does not exist. Path: '/category' Enum: ['Analytics & SIEM', 'Utilities', 'Messaging'].-The value \"Network Securitys\" in 'category' is invalid - legal values include: 'Analytics & SIEM', 'Utilities', 'Messaging']": 0.11027091700003666, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_indicatorfield[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicator-field-exact-scheme.json-Packs/TestPack/IncidentFields/incidentfield-test.json-True]": 0.1593369749999738, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_indicatorfield[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicator-field-missing-field.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False]": 0.16103775600004155, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_indicatorfield[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicatorfield-extra-fields.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False]": 0.1677606209999567, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_indicatorfield[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicatorfield-missing-and-extra-fields.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False]": 0.1681112360000725, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_playbook[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-ArcSight_Add_Domain_Indicators.yml-playbook-True-Found a problem in the scheme although there is no problem]": 0.5952383360000226, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_playbook[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-playbook-False-Found no problem in the scheme although there is a problem]": 0.5415606219999631, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_playbook[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-playbook-True-Found a problem in the scheme although there is no problem]": 0.5417437510000696, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_reputation[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputation-cidr-invalid.json-False]": 0.09694544000001315, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_scheme_validation_reputation[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputation-cidr-valid.json-True]": 0.09528272000000015, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_layout_rule": 0.2349873579999553, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_modeling_rule_schema": 0.1932983419999914, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_modeling_rule_yml": 0.12774245299993936, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_parsing_rule_yml": 0.20239655099999254, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_trigger": 0.22027658999996902, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xdrc_template": 0.21179776799999672, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xsiam_dashboard": 0.26094108699999197, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xsiam_report": 0.25345600800000057, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_alias_to": 0.16252988600007257, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_aliases__invalid_type": 0.34342612900002223, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_aliases__valid": 0.27390821200003757, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_pretty_name": 0.16197272400006568, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[dependency_packs]": 0.14318423399993208, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[fromVersion]": 0.14561093199995412, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[id]": 0.13724168300001338, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[name]": 0.13830726399999094, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[wizard]": 0.1418057870000098, + "demisto_sdk/commands/common/tests/timers_test.py::test_timers__happy_path": 0.002607436999994661, + "demisto_sdk/commands/common/tests/timers_test.py::test_timers__no_group_exist": 0.001627154000061637, + "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data0-Integrations]": 0.0007680979999804549, + "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data1-Layouts]": 0.0006187970000155474, + "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data2-Playbooks]": 0.0005791930000214052, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_camel_to_snake": 0.0005625619999705123, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files0-types0-output0]": 0.018962905999956092, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files1-types1-output1]": 0.0014066999999613472, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files2-types2-output2]": 0.0013574190000440467, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_on_pack[AbuseDB-file_paths_list0]": 0.0006248590000836884, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_packagify_changes[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-valid.md]": 0.0005620220000537302, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[-None]": 0.0005996099999947546, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[.pack-ignore-.pack-ignore]": 0.0005884610000066459, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[.secrets-ignore-.secrets-ignore]": 0.0005892630000516874, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-valid.json-dashboard]": 0.0009057529999836333, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/docs_test/closing-params.png-None]": 0.0006212210000171581, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/generic-definitions-valid.json-genericdefinition]": 0.0006968840000354248, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/generic-field-valid.json-genericfield]": 0.0007142549999912262, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/generic-module-valid.json-genericmodule]": 0.0007785860000240064, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/generic-type-valid.json-generictype]": 0.0007179830000723086, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-valid.json-incidentfield]": 0.0007031049999568495, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidenttype-valid.json-incidenttype]": 0.000714396000034867, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicatorfield-extra-fields.json-indicatorfield]": 0.0007092249999800515, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-integration]": 0.0039119769999729215, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-valid.json-layout]": 0.0007137959999568011, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/list-valid.json-list]": 0.0006883369999854949, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid-id-test.yml-playbook]": 0.014710983000043143, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputation-cidr-valid.json-reputation]": 0.0008249919999911981, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-script]": 0.0013228739999817662, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-valid.json-widget]": 0.0006846499999824118, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[Author_image.png-author_image]": 0.0006136769999329772, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[Packs/TestPack/Integrations/TestIntegration/.vulture_whitelist.py-vulture_whitelist]": 0.0005975870000156647, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[pack_metadata.json-metadata]": 0.0006661070000291147, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[path19-doc_files]": 0.0005987700000673613, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_ignore_sub_categories": 0.0038450220000072477, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_no_file": 0.00048778199999333083, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_with_invalid_json": 0.0049594049999655, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_with_invalid_yml": 0.02068847199996071, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[parsingrule-external-test.json-parsingrule-external-parsingrule-test.json]": 0.0006789109999658649, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[parsingrule-test.json-parsingrule-external-parsingrule-test.json]": 0.0006681410000055621, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[test.json-parsingrule-parsingrule-external-test.json]": 0.0007541889999629348, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data0-Integrations-javascript]": 0.000674171000014212, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data1-Scripts-javascript]": 0.0006480210000177067, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data2-Layouts-]": 0.000664601999972092, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/IncidentType__raw_downloaded.json-False-json]": 0.0007791670000756312, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputation-cidr-valid.json-True-json]": 0.0008286300000577285, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-True-yml]": 0.005888472999970418, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[None-True-None]": 0.0006677380000041921, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[invalid-path.json-False-None]": 0.0063033599999471335, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[test-True-None]": 0.0006875560000025871, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/fake_integration.yml-get_yaml]": 0.005143410000016502, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/fake_json.json-get_json]": 0.0007170099999598278, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/test_playbook_value_starting_with_equal_sign.yaml-get_yaml]": 0.003200966999997945, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/test_playbook_value_starting_with_equal_sign.yml-get_yaml]": 0.0032017089999953896, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_non_unicode[.json-dumps]": 0.022164261999989776, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_non_unicode[.yml-dumps]": 0.021626646000015626, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_api[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/fake_integration.yml-get_yaml]": 0.004479737000053774, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_api[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/fake_json.json-get_json]": 0.0033537420000016027, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_api[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/test_playbook_value_starting_with_equal_sign.yaml-get_yaml]": 0.0034591780000141625, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_api[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/test_playbook_value_starting_with_equal_sign.yml-get_yaml]": 0.0033666180000295753, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_local[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/fake_integration.yml-get_yaml]": 0.02964785699998629, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_local[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/fake_json.json-get_json]": 0.011589565000008406, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_local[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/test_playbook_value_starting_with_equal_sign.yaml-get_yaml]": 0.01671140500002366, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_local[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/test_playbook_value_starting_with_equal_sign.yml-get_yaml]": 0.01694308800000499, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_origin[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/fake_integration.yml-get_yaml]": 0.061167405999981384, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_origin[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/fake_json.json-get_json]": 0.004348301999982596, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_origin[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/test_playbook_value_starting_with_equal_sign.yaml-get_yaml]": 0.03354493699998784, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_or_remote_with_origin[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/test_playbook_value_starting_with_equal_sign.yml-get_yaml]": 0.033783743999947546, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_yml_paths_in_dir[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files]": 0.00147997800002031, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_yml_paths_in_dir[demisto_sdk]": 0.0007667040000569614, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFile::test_get_yaml": 0.001901385999985905, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_not_recursive": 0.0005761779999602368, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_project_dir_is_file": 0.0019789830000149777, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_recursive": 0.0005855869999322749, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_recursive_pack": 0.0007229739999843332, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_item_has_marketplaces_field": 0.0004656800000475414, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_no_marketplaces_specified": 0.0004520449999745324, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_only_pack_has_marketplaces": 0.00045380800003158583, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_pack_not_in_cache": 0.0010956689999375158, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_content": 0.018601790999980494, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_content_sanity": 0.1010104919999435, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid": 0.03052828399995633, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid_branch": 0.14098905100001957, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid_origin_branch": 0.0317433190000429, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_origin": 0.09776254700005893, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_origin_tag": 0.5897152609999807, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_sanity": 0.17211164600001894, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_tag": 0.4892274640000096, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_md_file_origin": 0.18086144000000104, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_negative": 0.0005425759999297952, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[IPNetwork_test/file.json]": 0.0005237600000214115, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[SetGridField_test/file.json]": 0.000509002999990571, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[StixDecodeTest/file.json]": 0.0005395000000021355, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[TestCommands/file.json]": 0.0005260440000256494, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[data_test/file.json]": 0.0005465120000280876, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[pack_metadata.json]": 0.0005274759998883383, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[some_text_file.txt]": 0.0006097699999259021, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[test-data/file.jsonsome_file/integration_DESCRIPTION.mdsome_file/integration_CHANGELOG.mdsome_file/integration_unified.md]": 0.0005329870000423398, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[test_data/file.json]": 0.0005237799999804338, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testcommandsfunctions/file.json]": 0.0005172579999452864, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testdata/file.json]": 0.0005229969999618334, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testhelperfunctions/file.json]": 0.0005275460000007115, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFileLocally::test_get_file_from_master_when_in_private_repo": 0.045747635999987324, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_convertion_to_id_set_name[JARM-reputation]": 0.0005858160000116186, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_convertion_to_id_set_name[Proofpoint Threat Response-betaintegration]": 0.0005792219999420922, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_no_item_id_in_specific_type": 0.0004503619999809416, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_no_such_type": 0.00045025300011047875, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_sanity": 0.00046351700001423524, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_invalid_marketplace_version": 0.0005171480000285555, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xpanse_marketplace_version": 0.0005247210000334235, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsiam_marketplace_version": 0.0004893959999776598, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_marketplace_version": 0.0005150020000428412, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_on_prem_marketplace_version": 0.000503471999991234, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_saas_marketplace_version": 0.0005001359999710075, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_should_remove_text": 0.0004757809999773599, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_tag_only_on_edl_description[EDL_xsiam_res.md-marketplacev2]": 0.001325649000023077, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_tag_only_on_edl_description[EDL_xsoar_res.md-xsoar]": 0.001996554000015749, + "demisto_sdk/commands/common/tests/tools_test.py::TestReleaseVersion::test_get_last_release": 0.0011502909999876465, + "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[0.0.0-5.0.0--1]": 0.0007704800000283285, + "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[4.5.0-4.5-0]": 0.000687595999977475, + "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[5.0.0-0.0.0-1]": 0.0007028349999131933, + "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[5.0.0-5.0.0-0]": 0.0007198970000104055, + "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_no_text_to_remove": 0.0006197499999416323, + "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_remove_tags_only": 0.0004604119999953582, + "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_remove_text": 0.0006422510000447801, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[-expected_result3]": 0.0005885120000357347, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[[\"a1\",\"b2\",\"c3\"]-expected_result1]": 0.0005876000000171189, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[a1,b2,c3-expected_result0]": 0.0006467609999845081, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[arg2-expected_result2]": 0.0005702550000137308, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[arg4-expected_result4]": 0.0005734220000022106, + "demisto_sdk/commands/common/tests/tools_test.py::test_capital_case": 0.0004460540000650326, + "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_non_vs_code_format_invalid": 0.00046914699998978904, + "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_non_vs_code_format_valid": 0.0006639110000037363, + "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_vs_code_format_invalid": 0.00046721500001467575, + "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_vs_code_format_valid": 0.0004708309999728044, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[\"not a field\"-]": 0.0005771090000621371, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${.=1}-]": 0.000569022999968638, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid.[0]}-employeeid]": 0.0006046399998922425, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid.hello}-employeeid]": 0.0007216799999696377, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid}-employeeid]": 0.0006038390000071558, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[.-]": 0.000578020999967066, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid-employeeid]": 0.0008867599999575759, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid.[0].hi-employeeid]": 0.0005802439999342823, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid.hello-employeeid]": 0.0005812469999568748, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee & Number-employeenumber]": 0.0005641050000804171, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee Number!!!-employeenumber]": 0.0005831209999200837, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee Number-employeenumber]": 0.0005700859999819841, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee, Number?-employeenumber]": 0.0005572009999923466, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee_Number-employeenumber]": 0.0005732430000762179, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path0-root/Packs/MyPack]": 0.0006751030000486935, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path1-Packs/MyPack1]": 0.0005893210000067484, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path2-Packs/MyPack2]": 0.0005880510000224604, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path3-Packs/MyPack3]": 0.0005807059999938247, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path4-Packs/MyPack4]": 0.0005985590000818775, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[.circleci/some_file.yml-build-config-file]": 0.0005850040000154877, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[.gitlab/some_file.yml-build-config-file]": 0.0005971489999296864, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[CONTRIBUTORS.json-contributors]": 0.0005913359999567547, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/.secrets-ignore-.secrets-ignore]": 0.0005877200000554694, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack//home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/content_slim/Packs/Sample01/.pack-ignore-.pack-ignore]": 0.0006099999999946704, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Author_image.png-author_image]": 0.000571891000049618, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/IndicatorTypes/indicator.json-reputation]": 0.0006068550000009054, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.js-javascriptfile]": 0.0006513069999414256, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.ps1-powershellfile]": 0.0005786320000424894, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.py-pythonfile]": 0.0005812070000388303, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.xif-xiffile]": 0.000634335999961877, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/some_image.png-image]": 0.0006000820000053864, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Jobs/job.json-job]": 0.0005918179999184758, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Lists/list.json-list]": 0.0005885400000238405, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/ReleaseNotes/1_0_0.json-releasenotesconfig]": 0.0005839309999373654, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/ReleaseNotes/1_0_0.md-releasenotes]": 0.0005945009999663853, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/README.md-readme]": 0.0006023359999858258, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/myScript/myScript.yml-script]": 0.0006133169999884558, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/script-myScript.yml-script]": 0.0005919480000216026, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Triggers/trigger.json-trigger]": 0.0005818490000137899, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMDashboards/dashboard.json-xsiamdashboard]": 0.0005884709999577353, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMDashboards/dashboard_image.png-xsiamdashboardimage]": 0.0005843329998924673, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMReports/report.json-xsiamreport]": 0.0005865059999905498, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMReports/report_image.png-xsiamreportimage]": 0.0006178340000246862, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/doc_files/foo.md-doc_files]": 0.0006231149999962327, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/pack_metadata.json-metadata]": 0.0005848239999863836, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/some_random_file-None]": 0.0006033399999978428, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[doc_files/image.png-doc_image]": 0.0005986900000038986, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[some_random_file_not_under_Packs-None]": 0.0006016250000584478, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[xsoar_config.json-xsoar_config]": 0.0005790629999751218, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path[input_path0-expected_output0]": 0.0006650029999946128, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path[input_path1-expected_output1]": 0.0005898919999367536, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path_no_remote": 0.0031017100000099163, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_core_packs": 0.04961010899995699, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[git@github.com:demisto/content-dist.git-expected_name1]": 0.008515844999976707, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://code.pan.run/xsoar/content-dist-expected_name4]": 0.0019372429999862106, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://code.pan.run/xsoar/content-dist.git-expected_name5]": 0.0018437090000702483, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://github.com/demisto/content-dist-expected_name3]": 0.00199724399999468, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://github.com/demisto/content-dist.git-expected_name2]": 0.0018372449999901619, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://gitlab-ci-token:token@code.pan.run/xsoar/content-dist.git-expected_name6]": 0.0019954310000116493, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[ssh://git@github.com/demisto/content-dist.git-expected_name0]": 0.0019638429999417895, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_definition_name": 0.0006830870000271716, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data0-TestBrand]": 0.0017619149999745787, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data1-TestID]": 0.001670894000028511, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data2-TestName]": 0.0016466799999648174, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data3-TestType]": 0.0016462569999475818, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data4-TestDisplay]": 0.0017371980000575604, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data5-T Name]": 0.00181776999994554, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data6-Testlayout]": 0.0016618260000313967, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data7-D Name]": 0.0017202469999801906, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data8-R Name]": 0.001665213000080712, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data9-Test2]": 0.0016526890000250205, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__image": 0.025541071000020565, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__incident_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/IncidentType.json-Access v2]": 0.0007025549999752911, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__incident_type[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/IncidentType__raw_downloaded.json-Access v2]": 0.000735293999980513, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__integration": 0.0388609490000249, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__layout": 0.003995382999903541, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__mapper": 0.004214661999981217, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__old_classifier": 0.004186359000016182, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__playbook": 0.08412161499995818, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__reputation": 0.0039652359999422515, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__script": 0.018915950999996767, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current0-2]": 0.002602666000029785, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current1-2]": 0.0005878279999365077, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current2-None]": 0.0005820679999715139, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current3-2]": 0.0005935600000270824, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current4-None]": 0.0005994809999947392, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current5-3]": 0.0005759550000448144, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current6-3]": 0.0005673809999962032, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current7-None]": 0.0005646559999945566, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current8-3]": 0.000594330999945214, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current9-None]": 0.000577018000001317, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current0-2]": 0.000601835000054507, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current1-2]": 0.0005823390000614381, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current2-None]": 0.0005747239999891463, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current3-None]": 0.0005764169999906699, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current4-2]": 0.0005729709999400256, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current5-3]": 0.0006201600000395047, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current6-3]": 0.0005802159999461765, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current7-None]": 0.0005730430000312481, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current8-None]": 0.0005706370000666539, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current9-3]": 0.0005791519999434058, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_from_version": 0.0019753849999801787, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_from_version_error": 0.0012086399999589048, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__ignore_missing_test": 0.0074463640000317355, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__ignore_test": 0.0345059600000468, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__no_ignore_pack": 0.011818674000039664, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__no_pack": 0.006489898000040739, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__test_not_ignored": 0.011582841999995708, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_last_remote_release_version": 0.00424680100002206, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_latest_release_notes_text_invalid": 0.001188343000023906, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[-expected_object4]": 0.004798854000000574, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[[file:README.md]\\nignore=RM106\\n\\n[known_words]\\ntest1\\ntest2-expected_object3]": 0.004976557000020421, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[[file:README.md]\\nignore=RM106\\n\\n[known_words]\\ntest1\\ntest2\\n\\n[tests_require_network]\\ntest-expected_object0]": 0.00491952999999512, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[[file:README.md]\\nignore=RM106\\n\\n[tests_require_network]\\ntest-expected_object2]": 0.004941509999980553, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[[known_words]\\ntest1\\ntest2\\n\\n[tests_require_network]\\ntest-expected_object1]": 0.006799545000035323, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[test-None]": 0.07433811900000364, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[test[dssa]sdf-None]": 0.0055809059999774036, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_metadata": 0.0037731259999986833, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths0-None-expected_packs0]": 0.0006947900000682239, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths1-None-expected_packs1]": 0.0006823259999464426, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths2-skip_file_types2-expected_packs2]": 0.0006534910000368654, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_relative_path_from_packs_dir": 0.0004278109999518165, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_note_entries[1.3-expected_result1]": 0.006724194999947031, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_note_entries[1.3.8-expected_result0]": 0.008448950000001787, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_notes_file_path_invalid": 0.0010401160000128584, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_notes_file_path_valid": 0.00044507199993404356, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data0-integration-expected_commands0-expected_scripts0]": 0.0007502219999651061, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data1-script-expected_commands1-expected_scripts1]": 0.0006979450000130782, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data2-testplaybook-expected_commands2-expected_scripts2]": 0.0007011509999870214, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data3-playbook-expected_commands3-expected_scripts3]": 0.0007450950000134071, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data4-integration-expected_commands4-expected_scripts4]": 0.0007019829999990179, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data5-script-expected_commands5-expected_scripts5]": 0.0007073919999243117, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_test_playbook_id": 0.00045515199997225864, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_to_version_no_to_version": 0.006952761000036389, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_to_version_with_to_version": 0.005311743999982355, + "demisto_sdk/commands/common/tests/tools_test.py::test_gitlab_ci_yml_load": 0.0016455870000413597, + "demisto_sdk/commands/common/tests/tools_test.py::test_has_remote[origin https://github.com/turbodog/content.git-False]": 0.001406782000003659, + "demisto_sdk/commands/common/tests/tools_test.py::test_has_remote[upstream https://github.com/demisto/content.git-True]": 0.0011196529999324412, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config0-integration-False]": 0.0006332959999895138, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config1-integration-False]": 0.0006234560000279998, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config2-playbook-False]": 0.0006401169999890044, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config3-integration-True]": 0.0006469599999832099, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[07/21/23-False]": 0.0005772889999775543, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1-True]": 0.0006600949999437944, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[12345678-True]": 0.0005958849999956328, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[123d-False0]": 0.0005762270000104763, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[123d-False1]": 0.0005659380000224701, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1626858896-True]": 0.0007300360000499495, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1689889076-True]": 0.000584252999999535, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[2023-07-21T12:34:56Z-False]": 0.0005727519999823016, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[21 July 2023-False]": 0.0005826289999504297, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[Thu, 21 Jul 2023 12:34:56 +0000-False]": 0.0005639649999693575, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[d-False]": 0.0005863970000064, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata0-False]": 0.0013365299999463787, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata1-False]": 0.0011364950000256613, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata2-True]": 0.001218348000008973, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata3-False]": 0.0010890460000041458, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse-True]": 0.0006179550000524614, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse/Classifiers-False]": 0.0005973070000209191, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse/Layouts-False]": 0.0006175259999281479, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Unknown-False]": 0.000700379999955203, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[-False]": 0.0005750540000803994, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[ffc9fbb0-1a73-448c-89a8-fe979e0f0c3e-True]": 0.0006014449999725002, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[somestring-False]": 0.0005951030000233004, + "demisto_sdk/commands/common/tests/tools_test.py::test_origin_content[origin https://github.com/demisto/content.git-True]": 0.0010686389999818857, + "demisto_sdk/commands/common/tests/tools_test.py::test_origin_content[origin https://github.com/turbodog/content.git-False]": 0.0013179229999877862, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[-expected6]": 0.0005657690000475668, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[1.yml,2.yml-expected2]": 0.0005738740000538201, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[1.yml-expected1]": 0.0005850439999903756, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[None-expected7]": 0.0005612690000020848, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths0-expected0]": 0.0005692949999911434, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths3-expected3]": 0.0006037599999899612, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths4-expected4]": 0.0005968849999931081, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths5-expected5]": 0.0005604679999464679, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[test/test.yml,test1/test1.yml-expected8]": 0.0005861160000222299, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs_error[1]": 0.0006302990000222053, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs_error[True]": 0.0006865749999178661, + "demisto_sdk/commands/common/tests/tools_test.py::test_pascal_case": 0.00058287100000598, + "demisto_sdk/commands/common/tests/tools_test.py::test_run_command_os[ls-/home/runner/work/demisto-sdk/demisto-sdk]": 0.0036433840000427153, + "demisto_sdk/commands/common/tests/tools_test.py::test_run_command_os[ls-cwd1]": 0.0034276709999403465, + "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[Account Enrichment Test-playbook-test_playbooks3-False-expected_test_list3]": 0.0007656699999643024, + "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[Account Enrichment-integration-test_playbooks2-False-expected_test_list2]": 0.0007755909999787036, + "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[PagerDuty v2-integration-test_playbooks0-True-expected_test_list0]": 0.000803161000021646, + "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[PagerDuty v2-integration-test_playbooks1-False-expected_test_list1]": 0.0007649700000342818, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict0-paths0-2-expected_dict0]": 0.0007652719999668989, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict1-paths1-2-expected_dict1]": 0.0007010909999962678, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict2-paths2-2-expected_dict2]": 0.0006883579999339418, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict3-paths3-2-expected_dict3]": 0.0006935069999940424, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict4-paths4-2-expected_dict4]": 0.000702071999967302, + "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_dir": 0.0017447119999474126, + "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_file[file.txt-c8c54e11b1cb27c3376fa82520d53ef9932a02c0]": 0.0012076490000367812, + "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_file[file2.txt-f1e01f0882e1f08f00f38d0cd60a850dc9288188]": 0.0011291710000023158, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[0-False]": 0.0005660579999471338, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[1-True]": 0.0005586350000044149, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[F-False]": 0.0005683429999976397, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[False-False0]": 0.0006198790000553345, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[False-False1]": 0.0005683529999487291, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[N-False]": 0.000568582999960654, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[NO-False]": 0.0005597960000045532, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[No-False]": 0.0005763279999655424, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[None-False]": 0.0006005250000384876, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[True-True0]": 0.0006885280000119565, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[True-True1]": 0.0007115710000107356, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[Y-True]": 0.0006076359999269698, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[YeS-True]": 0.0005644740000434467, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[Yes-True]": 0.0005629720000683847, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[false-False]": 0.0005669409999313757, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[n-False]": 0.0005620819999876403, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[nO-False]": 0.0005975770000645753, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[no-False]": 0.0005568719999473615, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[t-True]": 0.0005821080000600887, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[y-True]": 0.0005710980000230848, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[yes-True]": 0.0005719700000099692, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_default_true[None]": 0.0004999350000503, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_default_true[]": 0.0005089500000394764, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[ ]": 0.000605110999970293, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[None0]": 0.0005256739999595084, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[None1]": 0.000509091999958855, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[\\u05db\\u05df]": 0.0005084200000169403, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[]": 0.0005347499999857064, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[00]": 0.0005218260000674491, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[01]": 0.000493261999963579, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[False]": 0.0005091119999747207, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[false]": 0.0005054330000007212, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[n]": 0.0005192510000142647, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[no]": 0.0005200629999535522, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[10]": 0.0005090619999918999, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[11]": 0.0004971299999851908, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[True]": 0.0005499989999862009, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[true]": 0.000546362000022782, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[y]": 0.0005093909999800417, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[yes]": 0.000503863000005822, + "demisto_sdk/commands/common/tests/tools_test.py::test_suppress_stdout": 0.0007616750000920547, + "demisto_sdk/commands/common/tests/tools_test.py::test_suppress_stdout_exception": 0.0007303950000050463, + "demisto_sdk/commands/common/tests/tools_test.py::test_test_get_file_version_suffix_if_exists_no_name_and_no_display": 0.0004366859999436201, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[*scan,file-scan-file]": 0.0005905450000227574, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[1URL2 3Finder4 5-1url2-3finder4-5]": 0.0006999079999445712, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Audit - 'X509 Sessions'-audit-x509-sessions]": 0.0005889610000053835, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File-scan-file]": 0.0005935699999781718, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan - File-scan-file]": 0.000576797999997325, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan -File-scan-file]": 0.0005863160000103562, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File--scan-file]": 0.0005950020000113909, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File-scan-file]": 0.0008920779999925799, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan IPs-scan-ips]": 0.0005888009999921451, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan- File-scan-file]": 0.0005926780000322651, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan-File-scan-file]": 0.0006236860000399247, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan.File-scan-file]": 0.0006049019999636585, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[URL Finder-url-finder]": 0.0005701359999648048, + "demisto_sdk/commands/common/tests/trigger_test.py::test_is_not_valid_file_complicated_schema": 0.3049226310000108, + "demisto_sdk/commands/common/tests/trigger_test.py::test_is_valid_file": 0.30027926899998647, + "demisto_sdk/commands/common/tests/trigger_test.py::test_is_valid_file_complicated_schema": 0.31619377500004475, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestClassifiers::test_process_classifiers__no_types_scripts": 0.007228485999917211, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestCorrelationRules::test_process_correlation_rules": 0.006784447000029559, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDashboard::test_process_dashboard__no_script": 0.004899681999972927, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDashboard::test_process_dashboard__with_script": 0.005198931999984779, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source2-second_source2-True]": 0.001981396000019231, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source3-second_source3-False]": 0.0014999850000094739, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source4-second_source4-False]": 0.0014453820000426276, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source5-second_source5-True]": 0.0021058670000115853, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack2-first_source0-second_source0-True]": 0.002130232000013166, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack2-first_source1-second_source1-True]": 0.0020096389999935127, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_no_duplicate": 0.0005086710000341554, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_similar_items_on_different_marketplaces": 0.00048374500005365917, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestFlow::test_find_duplicates": 0.000230410000028769, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericDefinition::test_get_generic_definition_data": 0.007029043999921214, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFields::test_process_generic_fields": 0.005323885999985123, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_fields_by_script_argument[task0]": 0.0005448289999776534, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_fields_by_script_argument[task1]": 0.0005229890000464366, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input0-True]": 0.000623025000038524, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input1-True]": 0.000765731000001324, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input2-True]": 0.0005862979999733398, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input3-False]": 0.0005749560000367637, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input4-False]": 0.0005799050000518946, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_values_for_keys_recursively": 0.0004743759999996655, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__exception": 0.0035532439999883536, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__marketplace_mismatch": 0.0012309420000065074, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__sanity": 0.009871438999937254, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericModule::test_get_generic_module_data": 0.005017924000014773, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericType::test_get_generic_type_data": 0.005111077000037767, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__marketplace_mismatch": 0.0009955119999744966, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__no_types_scripts": 0.007888261999994484, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__sanity": 0.009885113999985151, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields_with_alternative_fields": 0.012571535999995831, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentTypes::test_get_incident_type_data__no_playbooks_scripts": 0.0065690350000409126, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentTypes::test_get_incident_type_data__sanity": 0.006677516000024752, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIndicatorType::test_get_indicator_type_data_no_integration_no_scripts": 0.006723423000039475, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIndicatorType::test_process_indicator_type__sanity": 0.00733399399996415, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__exception": 0.0029799229999980525, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__marketplace_mismatch": 0.0011679350000122213, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__sanity": 0.05204398100005392, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[False-False]": 0.059402772999987974, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[False-True]": 0.06730191299999433, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[True-False]": 0.059190754999974615, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[True-True]": 0.0626474889999713, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[False-False]": 0.06345817599992642, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[False-True]": 0.0635505279998938, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[True-False]": 0.0633365879999701, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[True-True]": 0.06980184899998676, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_non_job_extension[False]": 0.05839439700002913, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_non_job_extension[True]": 0.05819285999996282, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayoutRules::test_process_layout_rules": 0.005840841999940949, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layouts__no_incident_types_and_fields": 0.00747032900000022, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layouts__sanity": 0.008115255999996407, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[incident-marketplacev2-False]": 0.007323514000006526, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[incident-xsoar-False]": 0.0055102019999822005, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[indicator-marketplacev2-False]": 0.007504994000044007, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[indicator-xsoar-False]": 0.005698024000025725, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__marketplace_mismatch": 0.00446633199999269, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__sanity": 0.008026079999979174, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__complex_value": 0.006612724999968123, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__no_types_fields": 0.006584823000025608, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__outgoing_mapper": 0.0021063279999680162, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__sanity": 0.006722901000046022, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers_alternative_field": 0.006602267999994638, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestModelingRules::test_process_modeling_rules": 0.007620799999983774, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content0-Cortex XSOAR-certified]": 0.006282507999969766, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content1-Some Partner-certified]": 0.005665954999983569, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content2-Someone-]": 0.015589072000068427, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata__marketplace_mismatch": 0.0010211489999392143, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_exception_thrown": 0.007690320999984124, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_success[False]": 0.005951659000061227, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_success[True]": 0.006153867000023183, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestParsingRules::test_process_parsing_rules": 0.007519071000047006, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_filters_from_playbook_tasks": 0.0004757099999892489, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data": 0.010464428000034331, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_2": 0.013173193999989508, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_bad_graph": 0.009954504000006636, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_bad_graph_2": 0.011934737999922618, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_no_fields": 0.013393023999981324, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_with_alternative_fields_second_level": 0.010187741000038386, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_with_alternative_fields_top_level": 0.014659564000055525, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_and_filters_from_playbook_two_conditions_task": 0.0004591189999700873, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_condition_task": 0.00045676400003458184, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_inputs": 0.001096410000002379, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_tasks": 0.00047372599999562226, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_process_playbook__exception": 0.0027980520000028264, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestReport::test_process_report__no_script": 0.008830924999983836, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestReport::test_process_report__with_script": 0.004913928999997097, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data": 0.0025141920000351092, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[demisto.executeCommand('dummy_command', {'key': 'test'});]": 0.0071302940000350645, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[executeCommand('dummy_command', {'key': 'test'});]": 0.007067846999973426, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[execute_command('dummy_command', {'key': 'test'});]": 0.00909914499993647, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_with_alternative_fields_second_level": 0.002590964000035001, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_with_alternative_fields_top_level": 0.002492340999992848, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__exception": 0.0027493500000446147, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__marketplace_mismatch": 0.0018433969999591682, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__sanity_package": 0.0032771890000162784, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestTriggers::test_process_triggers": 0.0060147769999616685, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWidget::test_process_widget__no_script": 0.006469557999992048, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWidget::test_process_widget__with_script": 0.006881348000035814, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWizard::test_process_wizards[False]": 0.014398144999915985, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWizard::test_process_wizards[True]": 0.006514953000021251, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXDRCTemplates::test_process_xdrc_templates": 0.01853913799993734, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXSIAMDashboards::test_process_xsiam_dashboards": 0.0060069030000704515, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXSIAMReports::test_process_xsiam_reports": 0.005919388999984676, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_add_item_to_exclusion_dict": 0.00830856599998242, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test0-False]": 0.0005871689999707996, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test1-False]": 0.0005964859999494365, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test2-True]": 0.0005695239999568003, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test3-True]": 0.0007122920000028898, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_get_filters_and_transformers_from_complex_value": 0.0004607910000231641, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merge_id_sets": 0.001473555000018223, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merged_id_sets_with_duplicates": 0.0015133199999581848, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merged_id_sets_with_legal_duplicates": 0.0015073279999455735, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp": 0.0023125629999753983, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp_no_update_excluded_dict": 0.0011880000000132895, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp_update_excluded_dict": 0.0021768619999988914, + "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file0-True]": 0.0007716229999346069, + "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file1-False]": 0.0020725460000221574, + "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file2-True]": 0.0006617259999757152, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file0-None-True]": 0.001481710000007297, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file1-id_set1-False]": 0.0014260649999755515, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file2-id_set2-True]": 0.0007029839999859178, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file3-id_set3-False]": 0.001381282000011197, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file0-None-True]": 0.0013017340000374134, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file1-id_set1-False]": 0.001405997999995634, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file2-id_set2-False]": 0.0014189330000249356, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file3-id_set3-True]": 0.0007298639999930856, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file0-None-True]": 0.0013283939999837457, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file1-id_set1-False]": 0.0014098660000172458, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file2-id_set2-False]": 0.001420736000056877, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file3-id_set3-True]": 0.0007072030000472296, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file0-True]": 0.0006432730000369702, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file1-False]": 0.001342120000003888, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file2-False]": 0.0019271530000537496, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file3-True]": 0.0007028129999184785, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file4-True]": 0.0006430610000052184, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_multiple_errors": 0.0007794770000373319, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_no_errors": 0.0005577630000175304, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_one_error": 0.0006780269999921984, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[bad-id-name-name]": 0.0031119299999886607, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-bad-name-name]": 0.0029884679999554464, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-id-bad-name]": 0.002972306999936336, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-id-name-bad]": 0.0029225760000031187, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_root_section": 0.0026878279999209553, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_valid_file_content": 0.003040433999956349, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::test_schema_file_correct_path": 0.0015133699999410055, + "demisto_sdk/commands/content_graph/tests/GR_validators_test.py::test_DuplicatedScriptNameValidator_is_valid": 33.94002020000005, + "demisto_sdk/commands/content_graph/tests/common_test.py::test_content_type_does_not_contain_colon": 0.0008779419999882521, + "demisto_sdk/commands/content_graph/tests/common_test.py::test_to_neo4j_pattern": 0.0007281520000219643, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_duplicate_integrations_different_fromversion": 31.72594801699995, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_duplicate_integrations_different_marketplaces": 34.26367673499999, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_duplicate_widgets": 31.254806579999922, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_empty_repository": 32.184529296999926, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_end_to_end": 36.151466955000046, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_incident_to_alert_scripts": 26.988013499999965, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_playbook_uses_script_not_in_repository": 32.237816764, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_relationships": 36.88204138900005, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_relationships_from_metadata": 31.81523194800002, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_two_integrations_with_same_command": 33.87989961300002, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_with_python_version[demisto/pan-os-python:1.0.0.68955-3.10.5-True]": 34.60671759600007, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_create_content_graph_with_python_version[demisto/python3:3.10.11.54799-3.10.11-False]": 33.57947494999996, + "demisto_sdk/commands/content_graph/tests/create_content_graph_test.py::TestCreateContentGraph::test_stop_content_graph": 5.769394830999886, + "demisto_sdk/commands/content_graph/tests/format_with_graph_test.py::test_format_incident_field_graph_fix_aliases_marketplace": 33.2780685849998, + "demisto_sdk/commands/content_graph/tests/format_with_graph_test.py::test_format_layout_with_graph_remove_unknown_content": 33.06192891100011, + "demisto_sdk/commands/content_graph/tests/format_with_graph_test.py::test_format_mapper_with_graph_remove_unknown_content": 34.161404059999995, + "demisto_sdk/commands/content_graph/tests/generate_docs_script_test.py::test_generate_script_doc_graph": 33.01710844699994, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify DEPENDS_ON relationships - don't include tests]": 34.68848422299993, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify DEPENDS_ON relationships - include tests]": 36.29303634400003, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify IMPORTS relationship]": 34.96375478900018, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify TESTED_BY relationship]": 35.558245971999895, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify USES relationships where depth=1 - only 1 path to SampleIntegration, no path to SampleScript]": 32.97161536699991, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify USES relationships where depth=2 - 2 paths to SampleIntegration]": 33.81349498800023, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify USES relationships, expecting sources and targets]": 32.859575409999934, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify USES relationships, integrations only]": 33.364973255999985, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify USES relationships, sources only]": 34.89113439699997, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify USES relationships, targets only, mandatory only]": 33.50779452900008, + "demisto_sdk/commands/content_graph/tests/get_relationships_test.py::TestGetRelationships::test_get_relationships[Verify USES relationships, targets only]": 33.18250349499999, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_are_fromversion_relationships_paths_valid": 3.848893909999788, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_are_marketplaces_relationships_paths_valid": 2.9386371400000826, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_are_toversion_relationships_paths_valid": 39.1180631860002, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_deprecated_usage__existing_content": 3.249740766000059, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_deprecated_usage__new_content": 3.1869301659996836, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_is_file_display_name_already_exists": 2.787655841000287, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_is_file_using_unknown_content[Not providing git_files - should be valid (raised a warning)]": 3.0809363620001022, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_is_file_using_unknown_content[providing git_files - should be invalid]": 3.0890932860002067, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_pack_ids_collection": 0.007980966999866723, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_validate_dependencies": 2.824330486000008, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_validate_duplicate_id": 2.7495073710001634, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_validate_hidden_pack_is_not_mandatory_dependency[None]": 2.715548486999978, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_validate_hidden_pack_is_not_mandatory_dependency[Packs/SamplePack2]": 2.7688181340001847, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_validate_hidden_pack_is_not_mandatory_dependency[Packs/SamplePack]": 2.9270181960000627, + "demisto_sdk/commands/content_graph/tests/graph_validator_test.py::test_validate_unique_script_name": 2.8505744779997713, + "demisto_sdk/commands/content_graph/tests/neo4j_interface_test.py::TestNeo4jQueries::test_labels_of[Integration-expected_labels0]": 0.001064950999989378, + "demisto_sdk/commands/content_graph/tests/neo4j_interface_test.py::TestNeo4jQueries::test_labels_of[Script-expected_labels2]": 0.0005992500005049806, + "demisto_sdk/commands/content_graph/tests/neo4j_interface_test.py::TestNeo4jQueries::test_labels_of[TestPlaybook-expected_labels1]": 0.0006423320000976673, + "demisto_sdk/commands/content_graph/tests/neo4j_interface_test.py::TestNeo4jQueries::test_node_map": 0.00047392600004059204, + "demisto_sdk/commands/content_graph/tests/pack_metadata_graph_test.py::test_pack_metadata_marketplacev2": 35.531748237999864, + "demisto_sdk/commands/content_graph/tests/pack_metadata_graph_test.py::test_pack_metadata_xsoar": 34.536693410000225, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_assets_modeling_rule_parser": 0.005698238000150013, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_classifier_parser": 0.004458589000023494, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_classifier_parser_below_min_marketplace_version": 0.005106831000148304, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_correlation_rule_parser": 0.00636153599998579, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_dashboard_parser": 0.009896117000153026, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_generic_definition_parser": 0.0042022889999771, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_generic_module_parser": 0.004294231000358195, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_generic_type_parser": 0.00434609800004182, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_incident_field_parser": 0.009811969000111276, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_incident_type_parser": 0.004206765999924755, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_incoming_mapper_parser": 0.004252802000337397, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_indicator_field_parser": 0.004235490999917602, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_indicator_type_parser": 0.004421088000071904, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_integration_parser": 0.03556340699992688, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_job_parser": 0.06554786200013041, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layout_parser": 0.005177362999802426, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layout_rule_parser": 0.004264715000090291, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layoutscontainer_parser": 0.004473114000347778, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layoutscontainer_parser_fixes[marketplacev2-incident]": 0.005446724999956132, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layoutscontainer_parser_fixes[marketplacev2-indicator]": 0.005679389999841078, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layoutscontainer_parser_fixes[xpanse-incident]": 0.005380932999742072, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layoutscontainer_parser_fixes[xpanse-indicator]": 0.010789278999936869, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layoutscontainer_parser_fixes[xsoar-incident]": 0.005367549000311556, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_layoutscontainer_parser_fixes[xsoar-indicator]": 0.018035848999943482, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_lazy_properties_in_the_model": 0.03635991600003763, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_list_parser": 0.004164269999819226, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_modeling_rule_parser": 0.012883492999890223, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_outgoing_mapper_parser": 0.004217838000158736, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_pack_parser": 0.02470847699987644, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_parsing_rule_parser": 0.011613699000008637, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_playbook_parser": 0.08724801399989701, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_preprocess_parser": 0.00313675699999294, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_repo_parser": 0.07733497300023373, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_report_parser": 0.004804364999927202, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_script_parser": 0.016153178000195112, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_test_playbook_parser": 0.058930336999992505, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_trigger_parser": 0.004392052999946827, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_unified_integration_parser": 0.06015487600029701, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_widget_parser": 0.004336459000114701, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_wizard_parser": 0.009841024999786896, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_xsiam_dashboard_parser": 0.004392454999788242, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::TestParsersAndModels::test_xsiam_report_parser": 0.004324286999917604, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[-childInv-False]": 0.0006729389999691193, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[Child Incident-childInv-False]": 0.0007086650000474037, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[Child Incidents-childInv-True]": 0.0007472780000625789, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[Incidents--False]": 0.0006609759998355003, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[Linked Incidents-linkedIncidents-True]": 0.0006428120000236959, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[Related Incident-relatedIncidents-False]": 0.0006909419996645738, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[Related Incidents--False]": 0.0006731080002282397, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[Related Incidents-linkedIncidents-False]": 0.0006621090001317498, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_fix_layout_incident_to_alert[Related Incidents-relatedIncidents-True]": 0.000680030999774317, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_updated_marketplaces_set[marketplace0-expected_market_place_set0]": 0.0005894820001230983, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_updated_marketplaces_set[marketplace1-expected_market_place_set1]": 0.0005873869999959425, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_updated_marketplaces_set[marketplace2-expected_market_place_set2]": 0.000606625000045824, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_updated_marketplaces_set[marketplace3-expected_market_place_set3]": 0.0006050719998711429, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_updated_marketplaces_set[marketplace4-expected_market_place_set4]": 0.0005759979999311327, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_updated_marketplaces_set[marketplace5-expected_market_place_set5]": 0.0005919180000546476, + "demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py::test_updated_marketplaces_set[marketplace6-expected_market_place_set6]": 0.0006217830000423419, + "demisto_sdk/commands/content_graph/tests/prepare_content_graph_test.py::test_marketplace_version_is_xsiam_with_graph": 32.529675406000024, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_create_content_graph_if_needed[Changed fromversion of script]": 55.42426004700019, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_create_content_graph_if_needed[Moved script - dependency pack2 -> pack3 changed to pack2 -> pack1]": 54.14195154400022, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_create_content_graph_if_needed[Moved script - removed dependency between pack2 and pack3]": 55.09353437600021, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_create_content_graph_if_needed[New integration with existing command test-command]": 55.96827984899983, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_create_content_graph_if_needed[New pack with USES relationship, causing adding a dependency]": 55.14578030099983, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_create_content_graph_if_needed[No change in repository]": 55.335010212999805, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_create_content_graph_if_needed[Remove USES relationship, causing removing a dependency]": 55.33510541399983, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_merge_graphs": 30.527139315000113, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_update_content_graph[Changed fromversion of script]": 41.08671761800019, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_update_content_graph[Moved script - dependency pack2 -> pack3 changed to pack2 -> pack1]": 41.037495403999856, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_update_content_graph[Moved script - removed dependency between pack2 and pack3]": 41.87971064899989, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_update_content_graph[New integration with existing command test-command]": 39.214061181000034, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_update_content_graph[New pack with USES relationship, causing adding a dependency]": 39.63343959399981, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_update_content_graph[No change in repository]": 34.289432356000134, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_update_content_graph[Remove USES relationship, causing removing a dependency]": 41.04333829099983, + "demisto_sdk/commands/content_graph/tests/update_content_graph_test.py::TestUpdateContentGraph::test_update_content_graph_external_repo": 33.016199023000354, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_calculate_new_path[QRadar v2-True-classifier-mapper-incoming-QRadar_v2.json]": 0.001948303999597556, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_calculate_new_path[QRadar-v3-False-classifier-QRadar_v3.json]": 0.002003688000058901, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_convert_dir": 0.011997782999969786, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_create_classifier_from_old_classifier": 0.009098090000406955, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_create_mapper_from_old_classifier": 0.006386807000126282, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_extract_classifier_name[classifier-Cymulate-None]": 0.0007565949999843724, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_extract_classifier_name[classifier-Cymulate_5_9_9-Cymulate]": 0.0008117170000332408, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_get_classifiers_schema_intersection_fields": 0.004153509000389022, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_calculate_new_layout_group[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/convert/converters/layout/tests/test_data/layout-indicatorsDetails-Cryptocurrency_Address-V3.json-indicator]": 0.010915880000084144, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_calculate_new_layout_group[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/convert/converters/layout/tests/test_data/layout-mobile-ExtraHop_Detection.json-incident]": 0.010372594000273239, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_calculate_new_layout_relative_path[ExtraHop Detection-layoutscontainer-ExtraHop_Detection.json]": 0.005584567999903811, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_convert_dir": 0.01340372600043338, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_get_layout_indicator_fields": 0.005797496000468527, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_group_layouts_needing_conversion_by_layout_id": 0.013077923000309966, + "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs0-expected0]": 0.0007594119997520465, + "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs1-expected1]": 0.0006399769999916316, + "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs2-expected2]": 0.0006298790003711474, + "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_get_layout_dynamic_fields": 0.0052680439998766815, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_build_old_layout[ExtraHop Detection-ExtraHop Detect-close-None-expected0]": 0.0020872659997621668, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_build_old_layout[ExtraHop Detection-ExtraHop Detect-close-dynamic_field_value2-expected2]": 0.002082034999602911, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_build_old_layout[ExtraHop Detection-ExtraHop Detect-mobile-None-expected1]": 0.00210112099921389, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_calculate_from_version[ExtraHop Detection-close-5.5.0]": 0.0021583269995062437, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_calculate_from_version[ExtraHop Detection-mobile-5.0.0]": 0.0021109180001985806, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_calculate_from_version[ExtraHop Detection2-close-5.0.0]": 0.0022317860002658563, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_calculate_new_layout_relative_path[ExtraHop Detect-close-layout-close-ExtraHop_Detect.json]": 0.002020590000483935, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_convert_dir": 0.013039982000009331, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_layout_to_incidents_dict": 0.006778982000014366, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_layout_to_indicators_dict": 0.006234423000023526, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_dump_new_entity": 0.000688898000134941, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_entity_separators_to_underscore[a a_a-a-a_a_a_a]": 0.005525195000700478, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_entity_separators_to_underscore[abcde-abcde]": 0.005812393000269367, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_entity_separators_to_underscore[axzjd-frl-axzjd_frl]": 0.005619583000225248, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_get_layouts_by_layout_container_type": 0.0070920480002314434, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_get_layouts_by_layout_type": 0.008801533000223571, + "demisto_sdk/commands/convert/tests/convert_manager_test.py::TestConvertManager::test_create_pack_object[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/convert/tests/test_data/Packs/ExtraHop-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/convert/tests/test_data/Packs/ExtraHop]": 0.0010838679995686107, + "demisto_sdk/commands/convert/tests/convert_manager_test.py::TestConvertManager::test_create_pack_object[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/convert/tests/test_data/Packs/ExtraHop/Layouts-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/convert/tests/test_data/Packs/ExtraHop]": 0.0007578089998787618, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_with_degradated_files": 0.0030954799999562965, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_with_passed_files": 0.00265638900009435, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_without_files": 0.0032083330002024013, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_cov_creation": 0.002699260000099457, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_fail_without_coverage_file": 0.00324310800033345, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_files": 0.0060951030000069295, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_get_report_str": 0.0060959639999964566, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_original_summary": 0.005108096000185469, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_export_report_function": 0.02811773000030371, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_json_min_report": 0.011555105999377702, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_print_report": 0.01440711100030967, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_txt_report": 0.008123696999973617, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_custom_epsilon_file[/Users/username/dev/content/Packs/SomePack/Integrations/SomeIntegration/SomeIntegration.py-3.0-77.0]": 0.0021164690001569397, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_custom_epsilon_file[test-1.0-79.0]": 0.002036539999608067, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_exist_file[/Users/username/dev/content/Packs/SomePack/Integrations/SomeIntegration/SomeIntegration.py-80.0-79.0]": 0.0020299779998822487, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_exist_file[test-70.0-69.0]": 0.002036900000348396, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_new_file[/Users/username/dev/content/Packs/SomePack/Integrations/SomeIntegration/SomeIntegration.py-80.0]": 0.0020067639998160303, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_new_file[test-70.0]": 0.002848428999641328, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestCreateCoverageSummaryFile::test_creation": 0.002149189000192564, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_the_data_file_is_valid": 0.0006329829998321657, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_url_and_validate_data": 0.17758231700008764, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_json_parse_error": 0.004396964000079606, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_key_error": 0.0034699830002864473, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_value_error": 0.004252515000189305, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_no_cache": 0.0002559090003160236, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_not_updated_file": 0.0033960529995056277, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_updated_file": 0.16861759000039456, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_without_cached_data": 0.004756026999984897, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestExportReport::test_export_report": 0.001989782000237028, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestExportReport::test_export_report_with_error": 0.0020247180004844267, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestFixFilePath::test_fix[HealthCheckAnalyzeLargeInvestigations-the_python_file_path]": 0.004787406000104966, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestFixFilePath::test_with_two_files[cov_file_names0]": 0.00968313399971521, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_combine": 0.00794129600035376, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_cov_file": 0.0018341709997002908, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_load_old": 0.0062871919999452075, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_report_dir": 0.0018956559993057454, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_without_data": 0.002107582000007824, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::TestInvalidReportType::test_general": 0.0004804999998668791, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::TestInvalidReportType::test_with_all": 0.0005399299998316565, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_all_report_types_explicit": 0.00044622499990509823, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_one_invalid": 0.0004931830003442883, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_all": 0.00045376800017038477, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_all_and_other_values": 0.00045058199975755997, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_mixed_values": 0.00046813599965389585, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_multiple": 0.0005829100000482867, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_none": 0.0004550700000436336, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_one": 0.0004861399997935223, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[10-10]": 0.0012805239998670004, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[20-20]": 0.0009927169999173202, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[30-30]": 0.0009853940000539296, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[40-40]": 0.000966118000633287, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[50-50]": 0.0009424609997950029, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[CRITICAL-50]": 0.0009399690006830497, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[DEBUG-10]": 0.0010752620005405333, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[ERROR-40]": 0.0010774159995889931, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[INFO-20]": 0.001001292999717407, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[WARNING-30]": 0.0009629209998820443, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list0-files_set0]": 0.0020161309994364274, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list1-files_set1]": 0.0021252160004223697, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list2-files_set2]": 0.0022374639997906343, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list3-files_set3]": 0.0022368639997694117, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list4-files_set4]": 0.002353722999941965, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[10-10]": 0.0009337449996564828, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[20-20]": 0.0008193729995582544, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[30-30]": 0.0007793590002620476, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[40-40]": 0.0007803010003044619, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[50-50]": 0.0007921419996819168, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[CRITICAL-50]": 0.0007863109999561857, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[DEBUG-10]": 0.0009239890000571904, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[ERROR-40]": 0.0007889250000516768, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[INFO-20]": 0.0007744989998172969, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[WARNING-30]": 0.0008492789997944783, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_get_report_str": 0.0005893429997740895, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75-75.0]": 0.0008469039998999506, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75.0%-75.0]": 0.0006023269997967873, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75.0-75.0]": 0.0009185879998767632, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_assert": 0.0004989029998796468, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_history_url": 0.0013694819995180296, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_json_file": 0.0006040799999027513, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_json_min_file": 0.0005607699999927718, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_latest_url": 0.001504625000507076, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_contains_indicator_type": 0.23544132400002127, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_content_artifacts": 0.24108091399966725, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_content_artifacts_by_id_set": 0.12927820799950496, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_private_content_artifacts": 0.26248462400008066, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_dump_pack": 0.0678995769994799, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_duplicate_file_failure": 0.13318496600004437, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_malformed_file_failure[json]": 0.132644277000054, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_malformed_file_failure[yml]": 0.13434811200022523, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_sign_packs_failure[-True]": 0.004362740000487975, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_sign_packs_failure[some_key-False]": 0.0075616260000970215, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_use_alternative_fields[demisto_sdk/tests/test_files/content_repo_with_alternative_fields/Packs/DummyPackAlternativeFields/IncidentFields/incidentfield-sample_packs.json-keys_paths0]": 0.0020182850003038766, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_use_alternative_fields[demisto_sdk/tests/test_files/content_repo_with_alternative_fields/Packs/DummyPackAlternativeFields/Integrations/integration-sample_packs.yml-keys_paths1]": 0.011964771999828372, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_use_alternative_fields[demisto_sdk/tests/test_files/content_repo_with_alternative_fields/Packs/DummyPackAlternativeFields/Playbooks/playbook-sample_packs.yml-keys_paths2]": 0.01180397100006303, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_use_alternative_fields[demisto_sdk/tests/test_files/content_repo_with_alternative_fields/Packs/DummyPackAlternativeFields/Scripts/script-sample_packs.yml-keys_paths3]": 0.01627897199978179, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_add_command_to_implementing_integrations_mapping": 0.002519124000627926, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_do_not_modify_specific_brand": 0.002546723999785172, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_generic_command_that_does_not_use_a_specific_brand": 0.003286226999534847, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_generic_command_that_uses_a_specific_brand": 0.0032940229998530413, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_no_output": 0.032334708999769646, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_empty_pack": 0.2510794069999065, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_pack": 0.29479936600000656, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_pack_output": 0.07730479300016668, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_output": 0.06365262200006327, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_command_to_implemented_integration_map": 0.0029748840001957433, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_id_set_flow": 5.722092424999573, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_id_set_flow_xpanse": 5.687678286000391, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_dir": 0.09222154699955354, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_git": 0.0988571210000373, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_invalid_path": 0.08828402099970845, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_only_supported_files": 0.09094092099985573, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_single_file": 0.09197426399987307, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_is_performed_only_on_release_notes": 0.12525884899969242, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_with_release_notes_is_skipped_on_invalid_json_file": 0.07610684100018261, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_with_release_notes_is_skipped_on_invalid_yml_file": 0.09413086899940026, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_get_invalid_files_from_git_with_release_notes": 0.10818627299931904, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_supported_files_are_only_release_notes": 0.07974233300001288, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_failure_on_malformed_rns": 0.10925246299984792, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_invalid_misspelled_files_are_correct": 0.135850591000235, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_invalid_misspelled_files_with_no_failure": 0.13622081599942248, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_valid_spelled_files": 0.1290227149997918, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_invalid_spelled_files": 0.07952246900003956, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_malformed_release_notes": 0.08043914300014876, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_mixed_report": 0.07913032500027839, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_of_valid_spelled_files": 0.08532516499963094, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_skip_non_xsoar_supported_file": 1.1468291200003478, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_mix_packs": 1.1733081910001601, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_non_supported_pack": 0.10861660399996254, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_supported_pack": 0.11726132600006167, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_multiple_supported_packs": 0.1234014310002749, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_non_supported_pack": 0.1141874850000022, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_supported_pack": 0.1392960140001378, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_adding_known_words_from_pack[Added the nomnomone, nomnomtwo, nomnomthree.-unknown_words2-known_words_files_contents2-packs_known_words_content2-False]": 0.41732413499994436, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_adding_known_words_from_pack[Added the nomnomone, nomnomtwo, nomnomthree.-unknown_words3-known_words_files_contents3-packs_known_words_content3-True]": 0.21917879999955403, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_adding_known_words_from_pack[Added the nomnomone, nomnomtwo.-unknown_words0-known_words_files_contents0-packs_known_words_content0-True]": 0.18236756100031926, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_adding_known_words_from_pack[Added the nomnomone, nomnomtwo.-unknown_words1-known_words_files_contents1-packs_known_words_content1-False]": 0.308479477999299, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[ThisIsCamelCase-parts0]": 0.0007398239999929501, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[thisIPIsAlsoCamelCase-parts1]": 0.0007397949998448894, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[thiswordsimulatesnocamelcasesplitandshouldremainunchanged-parts2]": 0.0005786030001218023, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[AGoodSpelledWord-True-True]": 0.5360165900001448, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[Hello-False-False]": 0.07815571199944316, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorld-False-False]": 0.08201282799973342, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorld-True-True]": 0.26802240600000005, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorrld-True-False]": 0.07992126599947369, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[Heloo-True-False]": 0.07906111600004806, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[IPs**-False-False]": 0.09079080699984843, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[IPs-False-False]": 0.08143538800004535, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvalidWord-False-False]": 0.08098661800022455, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvalidWord-True-True]": 0.30386689000033584, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvaliddWord-True-False]": 0.07974174799983302, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[NotAGoooodSpelllledWordddd-True-False]": 0.33044621099952565, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeTest-False-False]": 0.08579871999972966, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeTest-True-True]": 0.20508759700032897, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeWord-False-False]": 0.08101113400016402, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeWord-True-True]": 0.20734846699997433, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SommmmeTest-True-False]": 0.17582959699984713, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGood-False-False]": 0.07868114500024603, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGoodBoy-True-True]": 0.3056867729997066, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGoooodddd-True-False]": 0.2276428499994836, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[WordsTxxt-True-False]": 0.08064713300018411, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[bizzare-False-False]": 0.07872326400047314, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[bizzaree-True-False]": 0.07872176200044123, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalid-False-False]": 0.07963891699910164, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalid-word-kebabb-casee-True-True]": 0.07867020300045624, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalidd-True-False]": 0.08293679600046744, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[old-False-False]": 0.07971727399990414, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[tell-False-False]": 0.07964548000018112, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[tellllllllll-True-False]": 0.33064789700028996, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[valid-word-kebab-case-False-False]": 0.07865116599987232, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[word-False-False]": 0.07942102900051395, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[wordd-True-False]": 0.07918209299941736, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content0-expected_known_words0]": 0.11503050799910852, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content1-expected_known_words1]": 0.08378618100005042, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content2-expected_known_words2]": 0.08378807599956417, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_commands_name": 0.10668396600021879, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_commons_scripts_name": 0.08785085599993181, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_integrations_name": 0.08952972599990972, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_scripts_name": 0.08975900599989473, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_different_pack[Added the killaone, nomnomone.-Added the killatwo, nomnomtwo.-unknown_word_calls4-known_words_files_contents4-True-0-first_packs_known_words_content4-second_packs_known_words_content4-True]": 0.28092545500021515, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_different_pack[Added the nomnomone, nomnomtwo.-Added the killaone, killatwo.-unknown_word_calls2-known_words_files_contents2-False-2-first_packs_known_words_content2-second_packs_known_words_content2-False]": 0.4239921379999032, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_different_pack[Added the nomnomone, nomnomtwo.-Added the killaone, killatwo.-unknown_word_calls3-known_words_files_contents3-False-2-first_packs_known_words_content3-second_packs_known_words_content3-True]": 0.5910292090002258, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_different_pack[Added the nomnomone, nomnomtwo.-Added the killaone.-unknown_word_calls0-known_words_files_contents0-True-0-first_packs_known_words_content0-second_packs_known_words_content0-False]": 0.1785554899993258, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_different_pack[Added the nomnomone, nomnomtwo.-Added the killaone.-unknown_word_calls1-known_words_files_contents1-False-1-first_packs_known_words_content1-second_packs_known_words_content1-False]": 0.30277152000007845, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_not_same_pack[Added the nomnomone, nomnomtwo.-Added the killa, killatwo.-unknown_word_calls2-known_words_files_contents2-False-2-packs_known_words_content2-False]": 0.43091083099943717, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_not_same_pack[Added the nomnomone, nomnomtwo.-Added the killa.-unknown_word_calls0-known_words_files_contents0-True-0-packs_known_words_content0-False]": 0.1783513369996399, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_not_same_pack[Added the nomnomone, nomnomtwo.-Added the killa.-unknown_word_calls1-known_words_files_contents1-False-1-packs_known_words_content1-False]": 0.30046803200002614, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_same_pack[Added the nomnomone, nomnomtwo.-Added the killa, killatwo.-unknown_word_calls2-known_words_files_contents2-False-2-packs_known_words_content2-False]": 0.4233695939997233, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_same_pack[Added the nomnomone, nomnomtwo.-Added the killa.-unknown_word_calls0-known_words_files_contents0-True-0-packs_known_words_content0-False]": 0.1792026379998788, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_same_pack[Added the nomnomone, nomnomtwo.-Added the killa.-unknown_word_calls1-known_words_files_contents1-False-1-packs_known_words_content1-False]": 0.31380635199957396, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_file_paths_same_pack[Added the nomnomone, nomnomtwo.-Added the killa.-unknown_word_calls3-known_words_files_contents3-True-0-packs_known_words_content3-True]": 0.20907175299998926, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_known_words_files[Added the nomnomone, nomnomtwo.-unknown_words0-known_words_files_contents0-True]": 0.18079282400049124, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_having_two_known_words_files[Added the nomnomone, nomnomtwo.-unknown_words1-known_words_files_contents1-False]": 0.2997016790004636, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words0-True]": 0.002480109000316588, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words1-False]": 0.0020964820000699547, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words2-True]": 0.014740133000032074, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words3-True]": 0.002066387000013492, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_replace_escape_characters[\\\\tthis\\\\rhas\\\\nescapes\\\\b- this has escapes ]": 0.0005955549995633191, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_replace_escape_characters[no escape sequence-no escape sequence]": 0.0005570409998654213, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content0-True]": 0.0010020459999395825, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content1-True]": 0.0007845370000723051, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content10-True]": 0.0007438800003001234, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content11-True]": 0.0007603619997098576, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content12-True]": 0.0007473890004803252, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content13-True]": 0.0009630620002099022, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content14-True]": 0.0007301360001292778, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content15-True]": 0.0007629570000062813, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content16-False]": 0.001018876000216551, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content17-False]": 0.0010283339997840812, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content18-False]": 0.0009272560005229025, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content19-True]": 0.0007215400005406991, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content2-True]": 0.0007547529999101243, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content20-True]": 0.0007222220001494861, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content21-True]": 0.0007360870004049502, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content22-True]": 0.0007000089999564807, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content23-True]": 0.0007095059995663178, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content24-True]": 0.0007387420005215972, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content25-True]": 0.0007011620000412222, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content26-False]": 0.0010922830001618422, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content27-True]": 0.0007765340005789767, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content28-False]": 0.0009506690003036056, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content29-True]": 0.000754190999941784, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content3-True]": 0.0007180330007940938, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content30-True]": 0.0007441820002895838, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content31-True]": 0.0007257190000018454, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content4-True]": 0.0007547919994976837, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content5-True]": 0.000737690000278235, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content6-True]": 0.0007964810001794831, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content7-True]": 0.0007269689995155204, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content8-True]": 0.0007184239998423436, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content9-True]": 0.0008412129996031581, + "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildCustomContent::test_build_custom_content_object": 0.059057404000213864, + "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_build_existing_pack_structure": 0.012783954999576963, + "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_build_pack_content_object": 0.012655974999688624, + "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_get_main_file_details": 0.007146307999846613, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_and_extract_existing_file": 0.03368512200040641, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_file_layout": 0.00747764699963227, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_file_playbook": 0.06234631699999227, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_no_force_skip": 0.007057510999857186, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_update_data_json": 0.006509877999633318, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_update_data_yml": 0.02151761999948576, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_and_extract_new_integration_file": 0.019843209000100615, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_and_extract_new_script_file": 0.012655433999952947, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_new_file_layout": 0.006772417999854952, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_new_file_playbook": 0.013263379999898461, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_all_flag": 0.20766661299967382, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_init_flag": 0.009830649999912566, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_input_flag_custom": 0.0018656309998732468, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_input_flag_system": 0.0018386689998806105, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_item_type": 0.0018842840004253958, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_output_flag": 0.0015439879998666584, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G S M]": 0.0007733969996479573, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G S_M]": 0.0007636480004293844, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G-S-M]": 0.0007871120001254894, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[GSM]": 0.0008275979998870753, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G_S-M]": 0.0007913999997981591, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G_S_M]": 0.0007693580000704969, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_get_custom_content_objects": 0.20794637899962254, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[automation-demisto-script-demisto]": 0.0008699659997546405, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[playbook-demisto-demisto]": 0.0008826819998830615, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[test-test]": 0.0010497429998395091, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Demisto-False]": 0.006216018000031909, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Integrations-False]": 0.006295026000316284, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs-False]": 0.006166046000089409, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs/TestPack-True]": 0.00620910499992533, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs/TestPack/-True]": 0.006106102000103419, + "demisto_sdk/commands/download/tests/downloader_test.py::test_auto_replace_uuids_flag[False]": 0.19987386499997228, + "demisto_sdk/commands/download/tests/downloader_test.py::test_auto_replace_uuids_flag[True]": 0.3946719159998793, + "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content0-Playbook-False-/playbook/search-GET-expected_request_body0]": 0.0012696449998657044, + "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content1-Mapper-True-/classifier/search-POST-expected_request_body1]": 0.0012389790008455748, + "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content2-Field-True-/incidentfields-GET-expected_request_body2]": 0.0011532990001796861, + "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content3-Classifier-False-/classifier/search-POST-expected_request_body3]": 0.0011323479998281982, + "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item0-ContentItemType.PLAYBOOK-name_1.yml]": 0.001022162000026583, + "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item1-ContentItemType.FIELD-name_1.json]": 0.0008832030002849933, + "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item2-ContentItemType.PLAYBOOK-name_with_slash_in_it.yml]": 0.0009207119996972324, + "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item3-ContentItemType.FIELD-id_1.json]": 0.0009004049993563967, + "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks": 0.045637420999810274, + "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_api_failure": 0.003180770999733795, + "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_item_does_not_exist_by_name": 0.045388183999875764, + "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_non_api_failure": 0.0026912349994745455, + "demisto_sdk/commands/download/tests/downloader_test.py::test_invalid_regex_error": 0.00216661300009946, + "demisto_sdk/commands/download/tests/downloader_test.py::test_list_files_flag": 0.20290761300020677, + "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.json-dumps--fields0-False]": 0.006322246000308951, + "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.json-dumps--fields0-True]": 0.007324722000248585, + "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.yml-dumps--fields1-False]": 0.00863002299956861, + "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.yml-dumps--fields1-True]": 0.008567977000438987, + "demisto_sdk/commands/download/tests/downloader_test.py::test_uuids_replacement_in_content_items": 0.3904105600004186, + "demisto_sdk/commands/error_code_info/tests/error_code_info_test.py::test_parse_function_parameters": 0.0007811299997229071, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_all_levels_dependencies": 0.0004891349999525119, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_first_level_dependencies": 0.0014477479994638998, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_mandatory_dependencies": 0.000532406000274932, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_all_dependencies_graph": 0.0024600900001132686, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_dependency_graph": 0.008077950000370038, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_dependency_graph_include_ignored_content": 0.008060287000262178, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_get_dependencies_subgraph_by_dfs[pack1-expected_nodes_in0-expected_nodes_out0]": 0.0012433460001375352, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_get_dependencies_subgraph_by_dfs[pack2-expected_nodes_in1-expected_nodes_out1]": 0.0008746760004214593, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies": 0.0018941420003102394, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies__commontypes_pack": 0.0018771109994304425, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies_on_filter": 0.0021632360003422946, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies_with_items": 0.0018812500002240995, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_generic_classifier_dependencies": 0.0017845079996732238, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnDashboard::test_collect_dashboard_dependencies": 0.001911776000270038, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnDashboard::test_collect_dashboard_dependencies_with_items": 0.0019275750000815606, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericField::test_collect_generic_field_dependencies": 0.00207604299976083, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericModules::test_collect_generic_module_dependencies": 0.0018256560001645994, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericType::test_collect_generic_type_dependencies": 0.002122419999977865, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentField::test_collect_incident_field_dependencies": 0.0019480319997455808, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentField::test_collect_incident_field_dependencies_with_items": 0.0019240790002186259, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentType::test_collect_incident_type_dependencies": 0.0020738700004585553, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentType::test_collect_incident_type_dependencies_with_items": 0.0021470070005307207, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIndicatorType::test_collect_indicator_type_dependencies": 0.001961009000751801, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIndicatorType::test_collect_indicator_type_dependencies_with_items": 0.0020316009999987727, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIntegrations::test_collect_integration_dependencies": 0.002000292999582598, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIntegrations::test_collect_integration_dependencies_with_ites": 0.0021004479995099246, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies[False]": 0.00204908300020179, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies[True]": 0.0021295540000210167, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies_with_items": 0.0020441739993657393, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_generic_layouts_dependencies": 0.0018833620001714735, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_incident_layouts_dependencies": 0.002216617000158294, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_indicator_layouts_dependencies": 0.0020215509998706693, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_indicator_layouts_dependencies_with_items": 0.002055864999874757, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_layouts_dependencies_filter_toversion": 0.0019170239997947647, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_layouts_dependencies[pack3-pack1]": 0.0071009420003065316, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_layouts_dependencies[pack4-pack2]": 0.005892542999845318, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies": 0.00225759199975073, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies__commontypes_pack": 0.0018856869996852765, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_on_filter": 0.002073378000204684, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_with_field_aliasing": 0.0007372579998445872, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_with_items": 0.002250471000024845, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[cve]": 0.002491951000138215, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[domain]": 0.00251402300045811, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[ip]": 0.002486500000486558, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[url]": 0.002507431000140059, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbook_dependencies_with_field_aliasing": 0.0007453849998455553, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_filter": 0.0025431970002500748, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields": 0.0029654980003215314, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields__commontypes_pack": 0.0026561889999356936, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields__phishing_pack": 0.003028264999102248, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_indicator_fields": 0.002742910000051779, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[alienvault-get-indicators-expected_result2]": 0.0029069979996165785, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[autofocus-get-indicators-expected_result1]": 0.002810999000303127, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[aws-get-indicators-expected_result0]": 0.0027888069998880383, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations_with_brand": 0.0026464299994586327, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_playbook[Failed Login Playbook - Slack v2-expected_result2]": 0.0026528120001785283, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_playbook[Indeni Demo-expected_result1]": 0.0026886289997491986, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_playbook[Pentera Run Scan-expected_result0]": 0.0026969149998876674, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[GetServerURL-expected_result0]": 0.002703568000015366, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[HelloWorldScript-expected_result1]": 0.0026882480001404474, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[PrismaCloudComputeParseAuditAlert-expected_result2]": 0.0026654349999262195, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script_with_items[GetServerURL-expected_result0-expected_items0]": 0.0027427199997873686, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script_with_items[HelloWorldScript-expected_result1-expected_items1]": 0.002787504000025365, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script_with_items[PrismaCloudComputeParseAuditAlert-expected_result2-expected_items2]": 0.0028314360001786554, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_skip_unavailable": 0.002864357999897038, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnReports::test_collect_report_dependencies": 0.0019221869997636531, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnReports::test_collect_report_dependencies_with_items": 0.0019386069998290623, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve-latest]": 0.0017811120001169911, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve-search]": 0.0017969420000554237, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve]": 0.0018475349997970625, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[domain]": 0.0017536309992465249, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[email]": 0.001807620999898063, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[file]": 0.0018646570001692453, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[ip]": 0.0018245330002173432, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[send-mail]": 0.0017437010005778575, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[send-notification]": 0.001857594999819412, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[url]": 0.0017750509996403707, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts__filter_toversion": 0.002030527999977494, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_command_to_integration": 0.002034083999660652, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_command_to_integrations_and_script_executions": 0.0019249010001658462, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[activemq-subscribe-expected_result1]": 0.0021719340002164245, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[alienvault-get-indicators-expected_result2]": 0.0021370270001170866, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[sslbl-get-indicators-expected_result0]": 0.0022279780000644678, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration_with_items[activemq-subscribe-expected_result1]": 0.002302897999925335, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration_with_items[alienvault-get-indicators-expected_result2]": 0.0021767019998151227, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration_with_items[sslbl-get-indicators-expected_result0]": 0.0022091629998612916, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[GetServerURL-expected_result0]": 0.0022833299994999834, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[HelloWorldScript-expected_result1]": 0.0020764239998243283, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[PrismaCloudComputeParseAuditAlert-expected_result2]": 0.0020401949996085023, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script_with_items[GetServerURL-expected_pack0-expected_items0]": 0.002184084999953484, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script_with_items[HelloWorldScript-expected_pack1-expected_items1]": 0.0022395990004042687, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script_with_items[PrismaCloudComputeParseAuditAlert-expected_pack2-expected_items2]": 0.002149049999388808, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_two_integrations": 0.002267912999741384, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_two_scripts": 0.00210128100025031, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_with_two_inputs": 0.002411460000075749, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_script_executions": 0.002023486000325647, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnWidgets::test_collect_widgets_dependencies": 0.0020437539997146814, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnWidgets::test_collect_widgets_dependencies_with_item": 0.0019228270002713543, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestGetDependentOnGivenPack::test_find_dependencies_between_two_packs": 0.0015647960003661865, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestGetDependentOnGivenPack::test_get_dependent_on_given_pack": 0.17998631200043747, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_item_with_no_result[playbooks]": 0.0017962189999707334, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_item_with_no_result[scripts]": 3.974722550000024, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_0]": 0.00155385700008992, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_1]": 0.001557663999392389, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_2]": 0.0016546349997952348, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_0]": 0.001975785999547952, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_1]": 0.0015970380004546314, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_2]": 0.001582320000125037, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_specific_pack_playbook_item": 0.0015031810003165447, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_specific_pack_script_item": 0.0015694260005147953, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_find_dependencies_using_pack_metadata": 0.0012970170005246473, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_remove_items_from_content_entities_sections": 0.0005791339999632328, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_remove_items_from_packs_section": 0.0023903820001578424, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_search_packs_by_items_names_or_ids[item_names0-IncidentFields-expected_result0-incident_field]": 0.0019854739998663717, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_search_packs_by_items_names_or_ids[item_names1-IncidentFields-expected_result1-incident_field]": 0.0019708559998434794, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_search_packs_by_items_names_or_ids[item_names2-IncidentFields-expected_result2-incident_field]": 0.0020141090003562567, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_search_packs_by_items_names_or_ids[item_names3-IndicatorFields-expected_result3-indicator_field]": 0.0019687529998009268, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_search_packs_by_items_names_or_ids[item_names4-IndicatorFields-expected_result4-indicator_field]": 0.001866190999862738, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_search_packs_by_items_names_or_ids[item_names5-Mappers-expected_result5-mapper]": 0.0018723139996836835, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_search_packs_by_items_names_or_ids[item_names6-Mappers-expected_result6-mapper]": 0.0019217939998270595, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_search_packs_by_items_names_or_ids[item_names7-Classifiers-expected_result7-classifier]": 0.001855741000326816, + "demisto_sdk/commands/format/tests/format_module_test.py::test_format_venv_in_dir": 0.06924087099969256, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file0-data0-False]": 0.0026527920003900363, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file1-data1-False]": 0.0015592869999636605, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file2-data2-False]": 0.0015822400005163217, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file3-data3-True]": 0.0015042140003060922, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file4-data4-False]": 0.0015637050000805175, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file5-data5-False]": 0.001519471999927191, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_default_version_lower_then_general": 0.0016919350000534905, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_data_with_oldfile": 0.0014368870001817413, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[generictype]": 0.0018756400004349416, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[job]": 0.0018273580003551615, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[list]": 0.0017266609997932392, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[pre-process-rule]": 0.0018322490000173275, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_askuser_False": 0.0021913599998697464, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_askuser_True": 0.002061277000393602, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_assume_answer_False": 0.001687916999344452, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_flag": 0.00458943499961606, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_oldFile": 0.0016268429999399814, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[Without dot]": 0.02402943799916102, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[case when the description starts with pipe without dot]": 0.022220915000161767, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[empty string]": 0.1742647870005385, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[ends with a dot inside a bracket]": 0.02240931999995155, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[ends with exclamation mark]": 0.022623299999850133, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[ends with question mark]": 0.022661448999770073, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[ends without a dot inside a bracket]": 0.024291629999424913, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[url in the end]": 0.02651037100031317, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[url in the middle]": 0.025397297000381513, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[with dot and empty string in the end]": 0.02187271499997223, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[with dot and new_line in the end]": 0.022877717000028497, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[with dot]": 0.022491213000193966, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[with single-quotes in double-quotes]": 0.02340827599982731, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[without dot and empty string in the end]": 0.02279556199982835, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[Without dot]": 0.02231351899990841, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[case when the description starts with pipe without dot]": 0.021758780999334704, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[empty string]": 0.021680576999642653, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[ends with a dot inside a bracket]": 0.021794378999857145, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[ends with exclamation mark]": 0.022370145999957458, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[ends with question mark]": 0.021722513999520743, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[ends without a dot inside a bracket]": 0.022679973999856884, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[url in the end]": 0.02299583400008487, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[url in the middle]": 0.02185468099969512, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[with dot and empty string in the end]": 0.021612157999697956, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[with dot and new_line in the end]": 0.022212672000023304, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[with dot]": 0.022519986000588688, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[with single-quotes in double-quotes]": 0.022075835000123334, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[without dot and empty string in the end]": 0.0249246650000714, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_initiate_file_validator[False-run_validation_on_specific_files]": 0.0022227080003176525, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_initiate_file_validator[True-run_validation_using_git]": 0.002161903999876813, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_add_default_fromversion[False]": 0.7910574250004174, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_add_default_fromversion[True]": 0.27846116800037635, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_infer_selected_feeds[False-False]": 0.3012564259993269, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_infer_selected_feeds[True-True]": 0.2942087539995555, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_update_id[False]": 0.29157155700022486, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_update_id[True]": 0.2881739560002643, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_arguments_to_remove": 0.023892432999673474, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_remove_unnecessary_keys": 0.024345301000266772, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_fromVersion": 0.023376888999791845, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_keyTypeMap": 0.023725351999928534, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_transformer": 0.02306942399991385, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_all_mode_conflict[All-None]": 0.02291515700017044, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_all_mode_conflict[Specific-Specific]": 0.02488709999988714, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[-Specific-Specific]": 0.0230270750003001, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[All--All]": 0.02955910699938613, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[Specific--Specific]": 0.022834645999864733, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[specific-Specific-Specific]": 0.022687027000301896, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode_bad_user_input": 0.022496571999909065, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_specific_mode_conflict[All-All]": 0.022970189999796276, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_specific_mode_conflict[Specific-Specific]": 0.02258589800021582, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_indicatortype-copy.json-Packs/Base/Misc/reputation-copy.json-Packs/Base/Misc-0]": 0.22514026499993633, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_layout-dev.json-Layouts/layout-copy.json-Layouts-0]": 0.22117289600009826, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_layoutscontainer-test.json-Layouts/formatted_layoutscontainer-test.json-Layouts-0]": 0.20471624600031646, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_mapper.json-Classifiers/formatted_mapper.json-Classifiers-0]": 0.1706335809999473, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_new_classifier.json-Classifiers/formatted_classifier.json-Classifiers-0]": 0.24526410100042995, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_widget.json-Widgets/formatted-widget.json-Widgets-0]": 0.15954253499967308, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file_old_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_classifier_5_9_9.json-Classifiers/formatted_classifier_5_9_9.json-Classifiers-0]": 0.19194995499992729, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file_old_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_dashboard-copy.json-Dashboards/dashboard-copy.json-Dashboards-0]": 0.16207911799983776, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file_old_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_incidentfield-copy.json-IncidentFields/incidentfield-copy.json-IncidentFields-0]": 0.1756638350002504, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file_old_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_incidenttype-copy.json-IncidentTypes/incidenttype-copy.json-IncidentTypes-0]": 0.2353101270005027, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_format_file_old_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/format_indicatorfield-copy.json-IndicatorFields/incidentfield-copy.json-IndicatorFields-0]": 0.1692741219999334, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[5.5.0]": 0.17165016200078753, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[6.2.0]": 0.17621996500020032, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[None]": 0.17762803799951143, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_output_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files]": 1.1844683310000619, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_remove_copy_and_dev_suffixes_from_layout": 0.02318220300048779, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_remove_unnecessary_keys": 0.02360744199995679, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_description": 0.02359716999990269, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_output_path": 0.20419730699995853, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_toVersion": 0.02320591899979263, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_copy_and_dev_suffixes_from_layoutcontainer": 0.026417885000228125, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_doesnt_remove_defaultrows_type_grid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/common/schemas/genericfield.yml]": 0.022013530999629438, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_doesnt_remove_defaultrows_type_grid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/common/schemas/incidentfield.yml]": 0.022390092999557965, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_doesnt_remove_defaultrows_type_grid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/common/schemas/indicatorfield.yml]": 0.021865882999463793, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_fields": 0.02726137200033918, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_remove_defaultrows_non_grid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/common/schemas/genericfield.yml]": 0.02325073300016811, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_remove_defaultrows_non_grid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/common/schemas/incidentfield.yml]": 0.02456179399996472, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_remove_defaultrows_non_grid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/common/schemas/indicatorfield.yml]": 0.023278171000583825, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_unnecessary_keys": 0.026597368999773607, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_description": 0.026252363999901718, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_fromVersion": 0.026584977000311483, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_group_field": 0.03502687299987883, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_output_path": 0.026328327000101126, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_update_id": 0.027490620999742532, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingList::test_remove_unnecessary_keys": 0.1620651939997515, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingList::test_set_description": 0.023287030000119557, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_remove_unnecessary_keys": 0.022974591000092914, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_set_fromVersion": 0.02288065499988079, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_update_id": 0.0225122880001436, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_remove_null_fields": 0.022989738999967813, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_remove_unnecessary_keys": 0.023270030999810842, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_set_toVersion": 0.023749289000079443, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[False-pack name-pack description-]": 0.2036063400000785, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[True-pack name (Deprecated)-Deprecated. Use pack v2 instead.-pack v2]": 0.20454711499996847, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[True-pack name-pack description-]": 0.21987518900050418, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[True-pack name-pack description-pack v2]": 0.18646228100033113, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPreProcessRule::test_remove_unnecessary_keys": 0.40978438099955383, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPreProcessRule::test_set_description": 0.04471839200004979, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ClassifierJSONFormat]": 0.2136984159997155, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ConnectionJSONFormat]": 0.04985471300005884, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[DashboardJSONFormat]": 0.05054277699946397, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IncidentFieldJSONFormat]": 0.04879006199962532, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IncidentTypesJSONFormat]": 0.0505655800002387, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IndicatorFieldJSONFormat]": 0.049354334999407, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IndicatorTypeJSONFormat]": 0.04969203800010291, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[LayoutBaseFormat]": 0.049576651000279526, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ListsFormat]": 0.05431051599953207, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[MapperJSONFormat]": 0.04885339999964344, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[OldClassifierJSONFormat]": 0.06470123100007186, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[PreProcessRulesFormat]": 0.05367463900029179, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ReportJSONFormat]": 0.04896539899982599, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[WidgetJSONFormat]": 0.05022419800025091, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_old_classifier": 0.2111782389997643, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_old_layout": 0.2097395749997304, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_none_tabs_do_not_throw_exception": 0.1948585850004747, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_description": 0.15517845400017904, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_fromversion_six_new_contributor_pack": 1.1069839029996729, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_fromversion_six_new_contributor_pack_no_fromversion": 0.23487708300035592, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_orientation": 0.025689744999908726, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_recipients": 0.026512102999731724, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_type": 0.025887285999942833, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_description": 0.02281823999965127, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data0]": 0.022878171999764163, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data1]": 0.02285038700028963, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data2]": 0.022934996999993018, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data3]": 0.022508099999868136, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_isPredefined": 0.022284653000042454, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_is_graph_related_files": 0.005372379000164074, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_not_updating_id_in_old_json_file": 0.16200804599975527, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_not_updating_modified_id_in_old_json_file": 0.1706454710001708, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[ MyDashboard ]": 0.23607999800015023, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[MyDashboard ]": 0.17223744099965188, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[MyDashboard]": 0.26203194199979407, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_connection_removes_unnecessary_keys": 0.14833585999940624, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_connection_updates_from_version": 0.25611983899989355, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_dashboard_negative": 0.18298529400044572, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_dashboard_positive": 0.24708057800035022, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_incidenttype_negative": 0.1655440230001659, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_incidenttype_positive": 0.2210040919999301, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_indicatortype_negative": 0.2216846930000429, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_indicatortype_positive": 0.2138569170001574, + "demisto_sdk/commands/format/tests/test_formatting_md_test.py::TestDescriptionFormat::test_format_beta_description": 0.1698627190003208, + "demisto_sdk/commands/format/tests/test_formatting_md_test.py::TestDescriptionFormat::test_remove_community_partner_details": 0.17777230299998337, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url0]": 0.08703708099938012, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url1]": 0.08604097200031902, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url2]": 0.08694376699986606, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url3]": 0.09224336399984168, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_replace_url_in_content[regex_relative_url0-https://new.com-[invalid relative 2](https://new.com)]": 0.026791832999606413, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_replace_url_in_content[regex_relative_url1-https://new.com-\\n\\n### dxl-send-event-new-one\\n***\\nSends the specified event to the DXL fabric.\\n##### Base Command\\n`dxl-send-event-new-one`\\n##### Input\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| topic | The topic for which to publish the message. | Required |\\n| payload | The event payload. | Required |\\n##### Context Output\\nThere is no context output for this command.]": 0.0012482339998314274, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestAppendOrReplaceCommandInDocs::test_append_or_replace_command_in_docs_positive[### dxl-send-event\\n***\\nSends the specified event to the DXL fabric.\\n\\n\\n##### Base Command\\n\\n`dxl-send-event`\\n##### Input\\n\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| topic | The topic for which to publish the message. | Required |\\n| payload | The event payload. | Required |\\n\\n\\n##### Context Output\\n\\nThere is no context output for this command.\\n\\n##### Command Example\\n``` ```\\n##### Human Readable Output\\n### dxl-send-event-new-one\\n***\\nSends the specified event to the DXL fabric.\\n##### Base Command\\n`dxl-send-event-new-one`\\n##### Input\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| topic | The topic for which to publish the message. | Required |\\n| payload | The event payload. | Required |\\n##### Context Output\\nThere is no context output for this command.\\n## Known Limitation-\\n\\n\\n### dxl-send-event-new-one\\n***\\nSends the specified event to the DXL fabric.\\n##### Base Command\\n`dxl-send-event-new-one`\\n##### Input\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| topic | The topic for which to publish the message. | Required |\\n| payload | The event payload. | Required |\\n##### Context Output\\nThere is no context output for this command.\\n## Known Limitation]": 0.0009066050001820258, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestAppendOrReplaceCommandInDocs::test_append_or_replace_command_in_docs_positive[### dxl-send-event\\n***\\nSends the specified event to the DXL fabric.\\n\\n\\n##### Base Command\\n\\n`dxl-send-event`\\n##### Input\\n\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| topic | The topic for which to publish the message. | Required |\\n| payload | The event payload. | Required |\\n\\n\\n##### Context Output\\n\\nThere is no context output for this command.\\n\\n##### Command Example\\n``` ```\\n##### Human Readable Output\\n### dxl-send-event-new-one\\n***\\nSends the specified event to the DXL fabric.\\n##### Base Command\\n`dxl-send-event-new-one`\\n##### Input\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| topic | The topic for which to publish the message. | Required |\\n| payload | The event payload. | Required |\\n##### Context Output\\nThere is no context output for this command.\\n### new-command-\\n\\n\\n### dxl-send-event-new-one\\n***\\nSends the specified event to the DXL fabric.\\n##### Base Command\\n`dxl-send-event-new-one`\\n##### Input\\n| **Argument Name** | **Description** | **Required** |\\n| --- | --- | --- |\\n| topic | The topic for which to publish the message. | Required |\\n| payload | The event payload. | Required |\\n##### Context Output\\nThere is no context output for this command.\\n### new-command]": 0.0008238710001933214, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestAppendOrReplaceCommandInDocs::test_append_or_replace_command_in_docs_positive[Command in file, but cant replace. dxl-send-event-Command in file, but cant replace. dxl-send-event\\n\\n\\n]": 0.0007699500001763226, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestAppendOrReplaceCommandInDocs::test_append_or_replace_command_in_docs_positive[no docs (empty)\\n-no docs (empty)\\n\\n\\n]": 0.000739975000215054, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc": 0.01496620600028109, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc_new_contribution": 0.013466391999827465, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc_passes_markdownlint": 0.07042474600029891, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_integration_doc_credentials_display_missing": 0.013833848000103899, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_examples_with_exclamation_mark": 0.0022679810003864986, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_examples_without_exclamation_mark": 0.0022062550001464842, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_ignored_lines": 0.0021962769997116993, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data0-credentials_conf0-expected0]": 0.0007183929997154337, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data1-credentials_conf1-expected1]": 0.0006606749998354644, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data2-credentials_conf2-expected2]": 0.0006488439998975082, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_disable_md_autolinks": 0.0005515220000233967, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_format_md": 0.0011642580002444447, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_command_section_with_empty_cotext_example": 0.000713895999979286, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_command_section_with_empty_cotext_list": 0.0004447800001798896, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_section": 0.0004717430001619505, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_section_human_readable": 0.00046032999989620293, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_with_permissions_section": 0.0004607220002981194, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_with_permissions_section_command_doesnt_exist": 0.00048216300001513446, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_image_link[playbook name--![playbook name](../doc_files/playbook_name.png)]": 0.0007100690004335775, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_image_link[playbook name-custom_path-![playbook name](custom_path)]": 0.0006446859993047838, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_section": 0.000435743999787519, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_section_empty": 0.00045226499969430733, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_with_text_section": 0.00045642300028703175, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_numbered_section": 0.0004463739996936056, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_playbook_doc_passes_markdownlint": 0.023927271999582445, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input0-expected_results0]": 0.0007467860000360815, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input1-expected_results1]": 0.0007409149998238718, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input2-expected_results2]": 0.0007197670001914958, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input3-expected_results3]": 0.0007124119997570233, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input4-expected_results4]": 0.0008975079999800073, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input5-expected_results5]": 0.0007635480001226824, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section": 0.0004925610001009773, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_empty[data0-Script Data-No data found.-This is the metadata of the script.-expected_result0]": 0.0008343590002368728, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_empty[data1-Script Data---expected_result1]": 0.000755280999783281, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_empty[data2-Script Data--This is the metadata of the script.-expected_result2]": 0.0007876419995227479, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_numbered_section": 0.0004632359996321611, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_with_newlines": 0.00047908500073390314, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_versions_differences_section": 0.0005691940004908247, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_complex[0-File.Name]": 0.003807219000009354, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_complex[2-No_Accessor]": 0.0038564009996662207, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_simple": 0.00368703399954029, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_inputs": 0.0038516720001098292, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_outputs": 0.0037272200006555067, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_playbook_dependencies": 0.003725688000486116, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_info": 0.0012882600003649713, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_inputs": 0.0012170159998277086, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_outputs": 0.0012599160004356236, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_incident_mirroring_section[yml_content0-mirroring_test_markdow]": 0.0007580679998682172, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_incident_mirroring_section[yml_content1-mirroring_test_markdow_missing]": 0.0006684980003228702, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content0-expected_result0]": 0.007568814000023849, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content1-expected_result1]": 0.009746624999934284, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content2-expected_result2]": 0.007395307000479079, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content3-expected_result3]": 0.00947924599995531, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_scripts_in_playbook": 0.08552265199978137, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_string_escape_md": 0.0005851239998264646, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_generate_integration_package": 0.1524049049999121, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_generate_unified_integration_yml": 0.15603003400019588, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_py_code_generated_from_config": 0.09936785999934727, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_query_response_root_object": 0.18085307999990619, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_yml_generated_from_config": 0.1569535610001367, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::test_json_body_to_code": 0.0006921340004737431, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_array_create_wrap": 0.0004652200000236917, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_coalesce_wrap": 0.00044755699946108507, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[ggg-String]": 0.0006175339999572316, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[int-Number]": 0.0005794629996671574, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[string-String]": 0.0005968370001028234, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_to_xdm_type[6-Number-to_number(6)]": 0.0006517079996228858, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_to_xdm_type[test-String-to_string(test)]": 0.000682575999690016, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_file": 0.001212216999647353, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_file_coalesce": 0.0012443870004972268, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_header": 0.0004631259998859605, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_yml_file": 0.0054563619996770285, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_data_from_all_xdm_schema": 0.0005860169999323261, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[arr-res3]": 0.0005789530000583909, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[hello-res0]": 0.000587169000027643, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[r-res6]": 0.0005979099996693549, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[t-res5]": 0.0005811359992549114, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[test.bla-res1]": 0.000639745999706065, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[test.gg.hh-res2]": 0.0005973870001980686, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[y.j-res4]": 0.0005729620002057345, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data_empty_event": 0.0004938330002914881, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data_event_not_dict": 0.00045701399949393817, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_handle_raw_evnet_data": 0.0004938939996463887, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_init_mapping_field_list": 0.0012688830001934548, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_json_extract_array_wrap": 0.00043918199980907957, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_json_extract_scalar_wrap": 0.0004500109998843982, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_read_mapping_file": 0.0006164140004329965, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_read_mapping_file_invalid_header_names": 0.0005525029996533704, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_replace_last_char[-]": 0.0006978149999667949, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_replace_last_char[hello,\\n-hello;\\n]": 0.0009166640002149506, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_snake_to_camel_case": 0.0005084310000711412, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_to_number_wrap": 0.0004402340005071892, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_to_string_wrap": 0.000437496999893483, + "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_generate_context_from_outputs": 2.186952313999882, + "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_generate_integration_context": 0.06952776800017091, + "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_insert_outputs": 0.0012896610001007502, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_ai21_api_request": 0.0035640950000015437, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_build_description_with_probabilities": 0.0005498069999703148, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions": 0.02268947600032334, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions_interactive": 0.02166446100045505, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions_interactive_similar_path": 0.02325029399980849, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_generate_integration_context_flow[-e-requires an argument-2]": 0.002946350999536662, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_generate_integration_context_flow[args1-command please include an `input` argument-0]": 0.002801357999942411, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_generate_integration_context_flow[args2-Input file 123 was not found-0]": 0.0029600059997392236, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args0-please include a `command` argument.]": 0.00806555200006187, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args1-please include a `prefix` argument.]": 0.00293283299970426, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args2-None]": 0.0026103799996235466, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[0-Number]": 0.0005850140000802639, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[1-Number]": 0.0006027959998391452, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[False-Boolean]": 0.0005754959993282682, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[True-Boolean]": 0.0006079579998186091, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[test string-String]": 0.009679058000074292, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__a_list_of_dict": 0.0015522829999099486, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__description_dictionary[None-dictionary0]": 0.0036614059999919846, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__description_dictionary[not_a_json_string-dictionary1]": 0.0037739560002592043, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__description_dictionary[{\"day\":\"day of the week\",\"color\":\"assigned color\",\"surprise\":\"a value that should not appear in the result.\"}-dictionary2]": 0.0037230930006444396, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__description_file": 0.0036907720000272093, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__detect_date[0001-01-01T00:00:00]": 0.0014136540003164555, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__detect_date[0001-01-01T00:00]": 0.0014702090002174373, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__detect_date[0001-01-01Z00:00:00]": 0.001421108000613458, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__detect_date[0001-01-01Z00:00]": 0.0014661110003544309, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__detect_date[2019-10-10T00:00:00]": 0.0031305540005632793, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__empty_list_or_dict": 0.001638424000248051, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[-'']": 0.0018414630003462662, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[None-'']": 0.0017371489998367906, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary0-'']": 0.001723080999454396, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary1-'']": 0.0019404469999244611, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary4-'']": 0.0016707330005374388, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_json": 0.0009057040006155148, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__json_from_file": 0.0017041480004991172, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs_return_object": 0.0005898129998058721, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook[False-fake_integration_expected_test_playbook.yml]": 0.22854877000008855, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook[True-fake_integration_expected_test_playbook__all_brands.yml]": 0.22642178200067065, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__integration_not_under_packs": 0.0549146439998367, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__integration_under_packs": 0.22841497699982938, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_non_yml_output_file": 0.002759749999313499, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_output_file": 0.05650754299995242, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_output_folder": 0.05642801400017561, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::test_generate_test_playbook_with_command_examples[None-8]": 0.02952798400019674, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::test_generate_test_playbook_with_command_examples[zoom-create-user,zoom-delete-user-6]": 0.023479723999571434, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::test_get_command_examples[!do-some-command arg=arg1 sarg=arg2-excepted_result1]": 0.0021092830002089613, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::test_get_command_examples[command_examples-excepted_result0]": 0.002301854000052117, + "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args0-malwarebazaar_all.py]": 0.9381958510002733, + "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args1-malwarebazaar_specific_command.py]": 0.31577656499985096, + "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args2-malwarebazaar_all.py]": 0.3659857190000366, + "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::test_get_client_init_args": 0.003002564000325947, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_command_with_file_output": 0.008258671000021423, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_command_without_docstring": 0.008243042999765748, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_enum_inputs_from_input_list": 0.00828661400009878, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[deprecated=False]": 0.00822354699994321, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[deprecated=True]": 0.008255937000285485, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[execution=False]": 0.008294548999856488, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[execution=True]": 0.00825075900002048, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[name]": 0.008779585999945994, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_input_list_overrides_docstring": 0.008303425999201863, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[basic]": 0.009133589000612119, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[default]": 0.008549726999717677, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[default_value]": 0.009919826999976067, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[execution0]": 0.00847155900009966, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[execution1]": 0.008583560999795736, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[invalid type]": 0.008634254000298824, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[invalid]": 0.010047197999483615, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[isArray=False]": 0.008534208000128274, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[isArray=True]": 0.008628965999832872, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[multiple flags]": 0.00856788199962466, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[options]": 0.008493021000049339, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[required]": 0.008519379000063054, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[secret]": 0.008469627000067703, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[type is enum]": 0.008514912000464392, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[default=False]": 0.008279703000425798, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[default=True]": 0.008367697000267071, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[defaultValue]": 0.008395600000312697, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[description]": 0.00828453999974954, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[execution=False]": 0.008312873000249965, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[execution=True]": 0.00829112500014162, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[is_array=False]": 0.008228746999975556, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[is_array=True]": 0.0098025189990949, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[name]": 0.008217275999868434, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[options]": 0.008373377000225446, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[required=False]": 0.008218849000058981, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[required=True]": 0.008295501000247896, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[secret=False]": 0.008325406999574625, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[secret=True]": 0.008279932000277768, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_long_description": 0.008075049000126455, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_multiple_output_prefixes_in_declaration": 0.008433328999672085, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_multiple_output_prefixes_in_list": 0.008672015999763971, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_output_list_overrides_docstring": 0.008495223999943846, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[invalid type]": 0.008523135998984799, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[long description]": 0.008362947999557946, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[missing type]": 0.008303375999730633, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type bool]": 0.008431504999862227, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type date]": 0.008369109999875946, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type dict]": 0.009992876000069373, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type float]": 0.0083262090001881, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type int]": 0.008313786999224249, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type str]": 0.008427107000443357, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_output_list": 0.008247391999702813, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[bool]": 0.008601573999840184, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[datetime]": 0.008540310000171303, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[dict]": 0.010244053999485914, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[float]": 0.00857019399973069, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[int]": 0.008573132000037731, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[list]": 0.008615840999937063, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[str]": 0.008533056000032957, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_restored_args": 0.009887627999887627, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_restored_args_not_in_command_metadata": 0.00821730600000592, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=AUTH]": 0.00788255899988144, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=BOOLEAN]": 0.007888691999596631, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=DOWNLOAD_LINK]": 0.00804842000025019, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=ENCRYPTED]": 0.009576736999861168, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=INCIDENT_TYPE]": 0.008009608000065782, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=MULTI_SELECT]": 0.00814159399988057, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=NUMBER]": 0.00796017499988011, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=SINGLE_SELECT]": 0.007962599000165937, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=STRING]": 0.007964752999669145, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=TEXT_AREA]": 0.00797705600007248, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=TEXT_AREA_ENCRYPTED]": 0.008117368000057468, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_enum_inputs_in_conf_key": 0.009635505999540328, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[additional_info]": 0.007985903000189865, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[default_value]": 0.00819898200006719, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[display]": 0.007915500999843061, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[name]": 0.009541281000565505, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[options]": 0.008000179000191565, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[required=False]": 0.007939545999761322, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[required=True]": 0.00808831399990595, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[category]": 0.009475827999722242, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_classifier]": 0.007972256000357447, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled=False]": 0.009390959000484145, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled=True]": 0.007805184000972076, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled_x2=False]": 0.0077617629999622295, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled_x2=True]": 0.0077572360000885965, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_mapper_in]": 0.007887718000347377, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[deprecated=False]": 0.007896295000136888, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[deprecated=True]": 0.007700419000229886, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[description]": 0.007840199999918696, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[detailed_description]": 0.007985080999787897, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[display]": 0.007822065999334882, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[fromversion]": 0.00832068799991248, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[image]": 0.00781907000055071, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[integration_name]": 0.007696680999742966, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[integration_name_x2]": 0.007808741000189912, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[system=False]": 0.00804009400007999, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[system=True]": 0.008160841000062646, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[tests]": 0.007700850000219361, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[timeout]": 0.007885334000548028, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[docker_image]": 0.007756283999697189, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_feed=False]": 0.007773936999910802, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_feed=True]": 0.007811027000116155, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_fetch=False]": 0.007644895000339602, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_fetch=True]": 0.009210933000304067, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_runonce=False]": 0.007702653000251303, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_runonce=True]": 0.007837494999876071, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running=False]": 0.007799493999300466, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running=True]": 0.007809360999999626, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running_port]": 0.007928625000204192, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[subtype]": 0.007779527000366215, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[type]": 0.007844898999337602, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_generation_with_implicit_imports_in_declarations": 0.008444591000170476, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_generation_with_subscriptable_imports": 0.007588287999624299, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_problematic_imports_in_code_yml_generation": 0.008882649000042875, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_complete_integration_generation": 0.009187119000216626, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_file_importing_failure": 0.009807740000269405, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_no_metadata_collector_defined": 0.00870731099985278, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_undefined_spec_failure": 0.008422089000305277, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_yml_file_making": 0.03315844200005813, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_no_conflict[TestPack]": 0.0025658889994701894, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_with_conflict[TestPack]": 0.002778957000373339, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_with_conflict_and_version_suffix[TestPack]": 0.003120947999832424, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_format_converted_pack[False-TestPack]": 0.004333316000156628, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_format_converted_pack[True-TestPack]": 0.0038988420001260238, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_format_user_input": 0.005632093999793142, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[0-]": 0.001180207999823324, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[1-]": 0.001052568999966752, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[11-##### New: DemistoUploadFileToIncident\\n]": 0.0010474289997546293, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[2-]": 0.0010285630000907986, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[3-#### Integrations\\n]": 0.0010322020002604404, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[4-]": 0.0010567860003902751, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[5-##### Core REST API\\n]": 0.0010172330007662822, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[6-]": 0.0010353269994993752, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[7-- %%UPDATE_RN%%\\n]": 0.0010351459995945334, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[9-#### Scripts\\n]": 0.0010235340000690485, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_replace_RN_new_entity_in_existing_pack": 0.0049574120002944255, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_replace_RN_template_with_value": 0.005502503000116121, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_dir_to_pack_contents": 0.004947976000039489, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip": 1.9116285810005138, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_outputs_structure": 0.1541957569997976, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_updated_pack": 0.15469296800029042, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_with_args": 1.7066633859999456, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_create_contribution_items_version_note": 0.003918148999673576, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_extract_pack_version[-0.0.0]": 0.0038992730001154996, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_extract_pack_version[This is a test js script\\n the script does not contain a pack version\\n // pack version: 3.4.5 TEST TEST-3.4.5]": 0.0037192159998085117, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_extract_pack_version[This is a test script\\n the script contains a pack version\\n ### pack version: 3.4.5 TEST TEST-3.4.5]": 0.0033314110000901564, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_extract_pack_version[This is a test script\\n the script does not contain a pack version\\n ### TEST TEST-0.0.0]": 0.003512590000354976, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[-pack-yay-ok---Pack-Yay-Ok]": 0.0020301760005168035, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PACKYAYOK-PACKYAYOK]": 0.001678490000358579, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK0]": 0.0013558669998019468, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK1]": 0.0016974360000858724, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK2]": 0.002145123000445892, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[ThE quIck`*+.brown fox, ;jumps ovER @@the lazy dog!-ThEQuIck_BrownFox_JumpsOvER_TheLazyDog]": 0.002814795000176673, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[The quick brown fox, jumps over the lazy dog!-TheQuickBrownFox_JumpsOverTheLazyDog]": 0.002274976000080642, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[The quick`*+.brown fox, ;jumps over @@the lazy dog!-TheQuick_BrownFox_JumpsOver_TheLazyDog]": 0.0025764889992387907, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[pack yay ok!-PackYayOk]": 0.0016483829999742738, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_rearranging_before_conversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/init/tests/test_files/contribution_indicatorfield_and_incidentfield.zip-expected_directories1]": 0.005567873000018153, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_rearranging_before_conversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/init/tests/test_files/contribution_indicatorfield_only.zip-expected_directories0]": 0.005458931000248413, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_community": 0.0006879759998810187, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_non_filled_manually": 0.0005967360002614441, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_non_filled_manually_with_data": 0.0005964160000075935, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_partner": 0.0007243040008688695, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_partner_wrong_url": 0.0008674830000927614, + "demisto_sdk/commands/init/tests/initiator_test.py::test_assets_modeling_rules_init_file_content_and_name": 0.006549390999680327, + "demisto_sdk/commands/init/tests/initiator_test.py::test_assets_modeling_rules_init_xsiam_files_existence": 0.006875169999602804, + "demisto_sdk/commands/init/tests/initiator_test.py::test_change_template_name_script_py": 0.0027204890002394677, + "demisto_sdk/commands/init/tests/initiator_test.py::test_create_new_directory": 0.001936892999765405, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_created_dir_name": 0.0007931740001367871, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_object_id": 0.0007135740002013335, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_object_id_custom_name": 0.0006674779997410951, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_remote_templates__invalid": 0.00616261699997267, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_remote_templates__valid": 0.0065467350000290025, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_valid_user_input": 0.0007139760000427486, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init": 0.867087101999914, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_with_ignore_secrets[FeedHelloWorld]": 0.28468425500068406, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_with_ignore_secrets[HelloWorld]": 0.6517334760005724, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_xsiam_files_content": 0.0371414400001413, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_xsiam_files_existence": 0.03497877600011634, + "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_or_parsing_rules_yml_reformatting_parsing_rules": 0.005334247000064352, + "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_rules_init_file_content_and_name": 0.006601719000173034, + "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_rules_init_xsiam_files_existence": 0.006118344999777037, + "demisto_sdk/commands/init/tests/initiator_test.py::test_pack_init_for_xsiam_folders_existence": 0.005614571999558393, + "demisto_sdk/commands/init/tests/initiator_test.py::test_pack_init_without_filling_metadata": 0.0047295059998759825, + "demisto_sdk/commands/init/tests/initiator_test.py::test_parsing_rules_init_file_content_and_name": 0.0060271739994277596, + "demisto_sdk/commands/init/tests/initiator_test.py::test_parsing_rules_init_xsiam_files_existence": 0.005532858999686141, + "demisto_sdk/commands/init/tests/initiator_test.py::test_script_init": 0.722440029000154, + "demisto_sdk/commands/init/tests/initiator_test.py::test_script_init_with_ignore_secrets": 0.09108846499975698, + "demisto_sdk/commands/init/tests/initiator_test.py::test_template_integration_init[FeedHelloWorld]": 1.62287180300018, + "demisto_sdk/commands/init/tests/initiator_test.py::test_template_integration_init[HelloWorld]": 1.244929387999946, + "demisto_sdk/commands/init/tests/initiator_test.py::test_yml_reformatting": 0.005190878999655979, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_differences": 0.019894622000265372, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_arguments": 0.02210278099983043, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_commands": 0.022097241000210488, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_outputs": 0.021985952999784786, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_params": 0.021910211999966123, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_invalid_integration_diff": 0.023211957000057737, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_items": 0.024195957999836537, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_items_in_docs_format": 0.022920860999875003, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_missing_items": 0.02318755999976929, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_without_items": 0.039059868000094866, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_valid_integration_diff": 0.022427378999964276, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_bandit_command[files0]": 0.0005352910002329736, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_bandit_command[files1]": 0.0005677419999301492, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_flak8_command[files0]": 0.0007149779994506389, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_flak8_command[files1]": 0.0005651960004797729, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_mypy_command[files0-2.7-None]": 0.0006670090001534845, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_mypy_command[files1-3.7-content_path1]": 0.0006605250000575325, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pwsh_analyze": 0.0010955089996969036, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pwsh_test": 0.0004579460000968538, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command[files0]": 0.0005546270008380816, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command[files1]": 0.0005221870001150819, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command_3_9_1_docker": 0.000544768000509066, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command_3_9_docker": 0.0006837480004833196, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_1": 0.0004511230004027311, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_2": 0.000431325999670662, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_3": 0.0004340219998084649, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_vulture_command[files0]": 0.0017129959996964317, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_vulture_command[files1]": 0.0014945960001568892, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_no_base_command[files0]": 0.000542936000329064, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_no_base_command[files1]": 0.0005366229997889604, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py2_command[files0]": 0.000522124999861262, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py2_command[files1]": 0.0005287399999360787, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py3_command[files0]": 0.0005679220007550612, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py3_command[files1]": 0.0005301030005284701, + "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_html": 0.0026996399992640363, + "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_report": 0.006038915999852179, + "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_xml": 0.002696872999877087, + "demisto_sdk/commands/lint/tests/helper_test.py::test_add_tmp_lint_files": 0.011839002999749937, + "demisto_sdk/commands/lint/tests/helper_test.py::test_add_tmp_lint_files__multi_level_api_modules": 0.013285558999996283, + "demisto_sdk/commands/lint/tests/helper_test.py::test_build_skipped_exit_code[True-False-False-True-True-True-True-False-True-True-189]": 0.0011009899999407935, + "demisto_sdk/commands/lint/tests/helper_test.py::test_build_skipped_exit_code[True-False-False-True-True-True-True-True-True-True-253]": 0.001142247000188945, + "demisto_sdk/commands/lint/tests/helper_test.py::test_build_skipped_exit_code[True-False-True-True-True-True-True-True-True-True-255]": 0.0013722869994126086, + "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response0-2-False]": 0.011871264000092197, + "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response1-1-False]": 0.00414795899996534, + "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response2-2-True]": 0.0055272779995902965, + "demisto_sdk/commands/lint/tests/helper_test.py::test_split_warnings_errors[flake8-/Users/test_user/dev/demisto/content/Packs/Maltiverse/Integrations/Maltiverse/Maltiverse.py:6:1: F401 'typing.Tuple' imported but unused\\n/Users/test_user/dev/demisto/content/Packs/Maltiverse/Integrations/Maltiverse/Maltiverse.py:6:1: F401 'typing.Dict' imported but unused\\n/Users/test_user/dev/demisto/content/Packs/Maltiverse/Integrations/Maltiverse/Maltiverse.py:6:1: F401 'typing.Any' imported but unused-output_error0-output_warning0-output_other0]": 0.0008107170001494524, + "demisto_sdk/commands/lint/tests/helper_test.py::test_split_warnings_errors[mypy-Ebox.py:31:12: error: Incompatible return value type (got\\nDict[Any, Any]', expected 'str')[return-value] \\nreturn params^\\n Found 1 error in 1 file (checked 1 source file)-output_error4-output_warning4-output_other4]": 0.0007732860003670794, + "demisto_sdk/commands/lint/tests/helper_test.py::test_split_warnings_errors[mypy-Maltiverse.py:31:12: error: Incompatible return value type (got\\nDict[Any, Any]', expected 'str')[return-value] \\nreturn params^\\n Found 1 error in 1 file (checked 1 source file)-output_error3-output_warning3-output_other3]": 0.0007561539996459032, + "demisto_sdk/commands/lint/tests/helper_test.py::test_split_warnings_errors[xsoar_linter-************* Module Maltiverse\\nMaltiverse.py:509:0: W9010: try and except statements were not found in main function. Please add them (try-except-main-doesnt-exists)\\nMaltiverse.py:509:0: W9012: return_error should be used in main function. Please add it. (return-error-does-not-exist-in-main)\\nMaltiverse.py:511:4: E9002: Print is found, Please remove all prints from the code. (print-exists)-output_error1-output_warning1-output_other1]": 0.0008270160005849903, + "demisto_sdk/commands/lint/tests/helper_test.py::test_split_warnings_errors[xsoar_linter-************* Module VirusTotal-Private_API\\nW: 20,10: Initialize of params was found outside of main function. Please use demisto.params() only inside mainfunc (init-params-outside-main)-output_error2-output_warning2-output_other2]": 0.0007818620001671661, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_failed_unit_tests_report_no_failed_tests": 0.0005008269999962067, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_failed_unit_tests_report_with_failed_tests": 0.0006936179997865111, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_bandit": 0.0047914530005073175, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_flake8": 0.004693989999850601, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_mypy": 0.022097020000273915, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_vulture": 0.0050881180000033055, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_xsoar_linter": 0.007476955000129237, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[2 api module changes with 1 dependency each]": 0.004196880000108649, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[non api module change with dependency]": 0.004122519999782526, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with 2 dependencies]": 0.0038735950001864694, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with dependency also changed]": 0.0046945819999564264, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with dependency, no cdam flag]": 0.0034078449998560245, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with dependency]": 0.00397268900042036, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with no dependencies]": 0.003970087000652711, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items_which_were_changed[single api module change with dependency also changed]": 0.004017042000214133, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[all]": 0.0015034230000310345, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[from-yml]": 0.0015018189997135778, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:]": 0.0014829440001449257, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:dev]": 0.0014790569998694991, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:ga]": 0.0014565540000148758, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:maintenance]": 0.0022102740003902, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_failed_image_creation": 0.0021505629997591313, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_pass_lint_checks[0-0-pkgs_type0]": 0.0017052690000127768, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_summary_no_warnings": 0.0012795230004485347, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_summary_with_warnings": 0.0012453200001800724, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_warning_lint_checks_all_packages_tests": 0.0015451399999619753, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_warning_lint_checks_not_packages_tests": 0.0050788190001185285, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_no_errors": 0.008795080999789207, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[1-test-1-test]": 0.005186338999919826, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[16-test-0-]": 0.005212619999383605, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[2-test-1-test]": 0.0055279299995163456, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[32-test-2-]": 0.005622607999612228, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[4-test-0-]": 0.005124513999817282, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[8-test-0-]": 0.005976921000183211, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[0-0]": 0.007528311000442045, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[1-1]": 0.007772889000534633, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[126-1]": 0.005808033000448631, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[137-1]": 0.005827319000218267, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[139-1]": 0.0063869759997032816, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[143-1]": 0.0058654300000853254, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[2-1]": 0.007166764999510633, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[5-0]": 0.007656410999970831, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names[_py3-native:8.2.0.123-abcd12345-some_pack-pylint-py3-native_8.2.0.123-abcd12345]": 0.0020002620003651828, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names[docker-io.art.code.pan.run/devtestdemisto/py3-native:8.2.0.123-abcd12345-some_pack-pylint-py3-native_8.2.0.123-abcd12345]": 0.001999540999349847, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names[py3-native-no-tag-some_pack-pylint-py3-native-no-tag]": 0.0019579220002015063, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names[py3-native:8.2.0.123-abcd12345-some_pack-pylint-py3-native_8.2.0.123-abcd12345]": 0.001959324000381457, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names[py3-native@some-tag-some_pack-pylint-py3-native_some-tag]": 0.001961467999535671, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names_are_unique_per_tag[_docker_run_linter-lint_check_kwargs0]": 0.007506221999847185, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names_are_unique_per_tag[_docker_run_pwsh_analyze-lint_check_kwargs2]": 0.00697833200047171, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names_are_unique_per_tag[_docker_run_pwsh_test-lint_check_kwargs3]": 0.007082197000272572, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_container_names_are_unique_per_tag[_docker_run_pytest-lint_check_kwargs1]": 0.008957925999766303, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_run_one_lint_check_success[False-True-True-True-True-True-python]": 0.00439152400031162, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_run_one_lint_check_success[True-False-True-True-True-True-python]": 0.004978743999799917, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_run_one_lint_check_success[True-True-False-True-True-True-powershell]": 0.004476964000332373, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_run_one_lint_check_success[True-True-True-False-True-True-powershell]": 0.004650208999919414, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_run_one_lint_check_success[True-True-True-True-False-True-python]": 0.004332865000378661, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestRunLintInContainer::test_run_one_lint_check_success[True-True-True-True-True-False-python]": 0.005222639999828971, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_image_flag_version_not_exists_in_native_config_file": 0.01285938199953307, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[all-exp_images5-]": 0.025635959999362967, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[demisto/py3-tools:1.0.0.40800-demisto/py3-tools:1.0.0.40800-]": 0.013812187000439735, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[from-yml-demisto/py3-tools:1.0.0.42258-]": 0.014032526999926631, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[native:candidate-demisto/py3-native:8.2.1.12345-]": 0.013861044999885053, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[native:dev-demisto/py3-native:8.3.0.12345-]": 0.013834516999850166, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[native:ga-demisto/py3-native:8.2.0.12345-]": 0.014639201000591129, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[native:maintenance-demisto/py3-native:8.1.0.12345-]": 0.014123787999324122, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[native:target-demisto/py3-tools:1.0.0.40800-demisto/py3-tools:1.0.0.40800]": 0.013824778000071092, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_exists": 0.012664337999922282, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_key_not_exists_in_yml[native:candidate-native:candidate]": 0.012692869000147766, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_key_not_exists_in_yml[native:dev-native:dev]": 0.01262605599958988, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_key_not_exists_in_yml[native:ga-native:8.2]": 0.012224424999658368, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_key_not_exists_in_yml[native:maintenance-native:8.1]": 0.01838289400075155, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_key_not_exists_in_yml[native:target-native:dev]": 0.03146158599975024, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_not_exists": 0.012028839999857155, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_integration_not_supported_by_requested_native_image[all-native:dev]": 0.013240855999811174, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_integration_not_supported_by_requested_native_image[native:candidate-native:candidate]": 0.01221067899996342, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_integration_not_supported_by_requested_native_image[native:dev-native:dev]": 0.01214570799993453, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_integration_not_supported_by_requested_native_image[native:ga-native:8.2]": 0.012301570000090578, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_integration_not_supported_by_requested_native_image[native:maintenance-native:8.1]": 0.012220437999985734, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_integration_not_supported_by_requested_native_image[native:target-native:dev]": 0.02473967400010224, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_invalid_docker_image_as_docker_image_flag": 0.012222151000059966, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_invalid_docker_image_as_docker_image_target": 0.012221018000218464, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_wrong_native_docker_image_flag": 0.012009794000277907, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestLintFilesCollection::test_lint_files_exists": 0.01234398799988412, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestLintFilesCollection::test_lint_files_not_exists": 0.012105824000173016, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_not_python_pack": 0.009852537999904598, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_python_pack": 0.01186176700048236, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_python_pack_api_module_script": 0.013266123999983392, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestRequirementsCollection::test_test_requirements_exists": 0.01785511799971573, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestRequirementsCollection::test_test_requirements_not_exists": 0.01232274799986044, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_integration[False-False]": 0.01227982799991878, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_integration[True-True]": 0.005821007999657013, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_script[False-False]": 0.029615854999974545, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_script[True-True]": 0.027587110999775177, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_tests_exists": 0.012953938000009657, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_tests_not_exists": 0.02146589999938442, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_checks_common_server_python": 0.02031393599963849, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_not_valid_yaml": 0.002834210999935749, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_valid_yaml_key_script_is_dict": 0.013969078999707563, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_valid_yaml_key_script_is_not_dict": 0.01166499900045892, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_linter_pack_abs_dir": 0.0012532959995041892, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_remove_gitignore_files": 0.01034292699978323, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[-True]": 0.010761068000192608, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[[file:README.md]\\nignore=RM106\\n\\n[known_words]\\ntest1\\ntest2\\n\\n-True]": 0.008722105000742886, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[[file:README.md]\\nignore=RM106\\n\\n[known_words]\\ntest1\\ntest2\\n\\n[tests_require_network]\\ntest-False]": 0.008608231999915006, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[[tests_require_network]\\ntest1\\ntest-False]": 0.010660790000656561, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[[tests_require_network]\\ntest1\\ntest2-True]": 0.00852684900019085, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_fail_lint": 0.007027533999917068, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_success": 0.004740467000374338, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_usage_stderr": 0.002560470000389614, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_fail_lint": 0.002626892999614938, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_success": 0.00263813499987009, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_usage_stderr": 0.0026734809998743003, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_fail_lint_on_normal_and_test_file": 0.0032827999998517043, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_fail_lint_on_only_test_file": 0.0029858540001441725, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_no_lint_files": 0.002972480999687832, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_all_lint_fail_all": 0.0037344860002122005, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[False-True-True]": 0.0033536830001139606, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[True-False-True]": 0.003352029000325274, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[True-True-False]": 0.0032546189995628083, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-False-False]": 0.003313367999453476, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-False-True]": 0.003887900999870908, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-True-False]": 0.0033686000001580396, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-True-True]": 0.0033510180001030676, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-False-False]": 0.0033827970005404495, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-False-True]": 0.0032117279997692094, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-True-False]": 0.0040294270002050325, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-True-True]": 0.0033592240001780738, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandResultsIndicatorsChecker::test_indicators_doesnt_exist": 0.0009353690006719262, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandResultsIndicatorsChecker::test_indicators_exist": 0.000986464000561682, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_command_dict_checker": 0.0008754869995755143, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_list_checker": 0.0009569379999447847, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_set_checker": 0.0008328570002049673, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_tuple_checker": 0.0008452409997516952, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_commands_dismiss_for_feeds_checker": 0.007267633000537899, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_infer_dict_checker": 0.0012083589999747346, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_infer_if_checker": 0.001872350999747141, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_list_checker": 0.0010169109996240877, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_set_checker": 0.0008817189996079833, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_tuple_checker": 0.0008856360000208952, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_command_dict_checker": 0.0008359839994227514, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_regular_if_else_checker": 0.0014110990000517631, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_test_module_checker": 0.0009170959997391037, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestDemistoLogChecker::test_demisto_log_exists": 0.0009543749997646955, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestDemistoLogChecker::test_no_demisto_log": 0.0007797989997015975, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestExitChecker::test_exit_exists": 0.0010277420001330029, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestExitChecker::test_no_exit": 0.000793463999798405, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestImportCommonServerPythonChecker::test_invalid_common_server_python_import": 0.0007329610002670961, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestImportCommonServerPythonChecker::test_valid_common_server_python_import": 0.00877762799973425, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_no_print": 0.0008876300007614191, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_number_of_prints": 0.0013802929997837055, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_print": 0.0019096309997621574, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_print_in_docstr": 0.0008332380002684658, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestQuithecker::test_exit_exists": 0.0009397270000590652, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestQuithecker::test_no_quit": 0.0009067850000974431, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestSleepChecker::test_no_sleep": 0.0007675159999962489, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestSleepChecker::test_sleep_exists": 0.0015250930005095142, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_demisto_results_comments": 0.0010000099996432255, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_demisto_results_exists": 0.0009389860001647321, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_no_demisto_results": 0.0007720349999544851, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitArgsChecker::test_init_args_in_main": 0.0009680800003479817, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitArgsChecker::test_init_args_not_in_main": 0.0012616390004041023, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitParamsChecker::test_init_params_in_main": 0.0009402890000274056, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitParamsChecker::test_init_params_not_in_main": 0.0012396679999255866, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestMainChecker::test_main_exists": 0.0008010079995983688, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestMainChecker::test_no_main": 0.0009798719997888838, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_demisto_results_comments": 0.000808301999768446, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_no_return_outputs": 0.0007454839997080853, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_return_output_exists": 0.001084839000213833, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_no_sys_exit": 0.0008499189998474321, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_exists": 0.0010356970001339505, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_in_comments": 0.0008225579995269072, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_non_zero_exists": 0.0010464379997756623, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorCountChecker::test_return_error_exists_more_than_once": 0.0012856350003858097, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorCountChecker::test_return_error_exists_once": 0.0011812299999292009, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_dosnt_exists_in_main": 0.0011464660005913174, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_exists": 0.0012450779995560879, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_exists_not_in_main": 0.0011374480000085896, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_doesnt_exists": 0.0011655299999802082, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_exists": 0.0012940690003233613, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_finally_exists": 0.0013021550003031734, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestDirectAccessDictChecker::test_direct_access_doesnt_exists": 0.0015448190006281948, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestDirectAccessDictChecker::test_direct_access_exists": 0.0017394619994774985, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_args_annotations_doesnt_exist": 0.0021870309997211734, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_doesnt_exists": 0.0012752650000038557, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_doesnt_exists_on_Script": 0.0011736149999705958, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists": 0.0011221590002605808, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists_in_if_clause": 0.0011638869996204448, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists_inside_elif_clause": 0.001175067000076524, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists_not_inside_else_if_clauses": 0.0009954110005310213, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_type_annotations_exists": 0.001533787999960623, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_change_name_duplications": 0.0035769490000348014, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_command_body_args": 0.0037578469996333297, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_command_headers": 0.0036552570004459994, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_config_file": 0.005815234999772656, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_file_not_overwritten": 0.004759790999742108, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_get_command_function": 0.003978219999680732, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_python_file": 2.042275047000203, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_ref_props_non_dict_handling": 0.0005051459997957863, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_yaml_file": 0.11722338799972931, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_apikey_passed_as_header": 0.8544976030002545, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_args_lowercase": 0.9647153860000799, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_command_arguments_names_duplication": 0.008981135999874823, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_command_prefix": 0.7350386570001319, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_config_generated_successfully": 1.5672697229997539, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_context_output_path": 0.7180755650001629, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_download_file": 0.0006495860002360132, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body0-expected0]": 0.0007358670000030543, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body1-expected1]": 0.000713174000793515, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body2-expected2]": 0.0007084240000949649, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_package_integration_generation": 0.9679065230002379, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_post_body_to_arguments": 0.9858845939997991, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_url_contains_args": 0.9350967560003483, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_duplicate_names": 0.000505675000113115, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_no_duplicate_names": 0.0005042939997110807, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_none_names": 0.00047141300046860124, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format": 0.0005179280001357256, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_different_arg_name_nested": 0.0004976709992661199, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_different_arg_name_one_nested": 0.0004538190000857867, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_list_of_dicts": 0.0004567350001707382, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_duplicate_requests_check_duplicates_dont_exist": 0.0004326680000303895, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_duplicate_requests_check_duplicates_exist": 0.000494183999762754, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_find_shared_args_path[flattened_json0-shared_arg_to_split_position_dict0]": 0.0006607160003113677, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_find_shared_args_path[flattened_json1-shared_arg_to_split_position_dict1]": 0.0006230660005712707, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_find_shared_args_path[flattened_json2-shared_arg_to_split_position_dict2]": 0.0006049619996701949, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_find_shared_args_path[flattened_json3-shared_arg_to_split_position_dict3]": 0.000579652999931568, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_find_shared_args_path_no_path": 0.00047098100003495347, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection0-outputs0]": 0.0006162419999782287, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection1-outputs1]": 0.0006561270006386621, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection2-outputs2]": 0.0005925780001234671, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection3-outputs3]": 0.0005824899999424815, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_update_min_distinguish_path[split_path0-other_args_split_paths0-0-0]": 0.0007058400001369591, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_update_min_distinguish_path[split_path1-other_args_split_paths1-0-1]": 0.0007068620002428361, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_update_min_distinguish_path[split_path2-other_args_split_paths2-2-3]": 0.0007261059995471442, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_update_min_distinguish_path[split_path3-other_args_split_paths3-1-2]": 0.0007865199995649164, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_update_min_distinguish_path[split_path4-other_args_split_paths4-2-2]": 0.0007263300003614859, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test__set_properties": 0.003954285999498097, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_docker_tag_to_runfiles": 0.004539813000064896, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_get_property": 0.004067297999881703, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_moded_properties[None-expected_text1]": 0.005331933999968896, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_moded_properties[nightly-expected_text0]": 0.005770063999534614, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_no_files": 0.004579336999540828, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_all_files": 0.004581429000154458, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_empty_input_files": 0.022236467000311677, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_files": 0.010895050000272022, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_yml_files": 0.01444103299991184, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_yml_files_not_exists": 0.0058171810001113045, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_nonexistent_files": 0.005984124000860902, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_staged_only": 0.0019091909998678602, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_use_git": 0.0023717660001238983, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_config_files[False]": 0.15851291800026956, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_config_files[True]": 0.17783886200049892, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_coverage_analyze_general_hook[None-expected_args0]": 0.0006759849998161371, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_coverage_analyze_general_hook[nightly-expected_args1]": 0.000670967000132805, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_exclude_python2_of_non_supported_hooks": 0.010489432000213128, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook0-expected_result0]": 0.0008367159998670104, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook1-expected_result1]": 0.0006630990001212922, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook2-expected_result2]": 0.000742739000088477, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook3-expected_result3]": 0.0007025039999462024, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_mypy_hooks": 0.0006746819994987163, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_no_docker_flag_docker_hook": 0.0005721610000364308, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook[False]": 0.0005712069996661739, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook[True]": 0.0006722279999848979, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook_nightly_mode": 0.0004884740001216414, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_skip_hook_with_mode": 0.007140656999581552, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_all_files": 0.0004656909995901515, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_nightly_mode": 0.0008393999996769708, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_nightly_mode_and_all_files": 0.00048177100006796536, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_find_dashboard_by_id_negative": 0.0055412549995708105, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_find_dashboard_by_id_positive": 0.005778979000297113, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_merge_generic_module_with_its_dashboards_negative": 0.011904409999715426, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_merge_generic_module_with_its_dashboards_positive": 0.005394321000039781, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module": 0.005061628000021301, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_file_is_already_exist": 0.005509104999873671, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_file_is_already_exist_force": 0.0053172479997556366, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_without_saving_path": 0.0068941059998905985, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_collect_images_from_markdown_and_replace_with_storage_path[xsoar-expected_res0]": 0.001450713999929576, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_collect_images_from_markdown_and_replace_with_storage_path_different_marketplaces[marketplacev2-True]": 0.0013193280001360108, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_collect_images_from_markdown_and_replace_with_storage_path_different_marketplaces[xpanse-True]": 0.001223368999944796, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_collect_images_from_markdown_and_replace_with_storage_path_different_marketplaces[xsoar-False]": 0.0011197530002391431, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_collect_images_from_markdown_and_replace_with_storage_path_different_marketplaces[xsoar_saas-True]": 0.0011734949998754018, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_more_than_one_description_file": 0.0028771420002158266, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_more_than_one_description_file_one_empty": 0.0018545379994066025, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_pack_readme": 0.0020355670003482373, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_same_pack_images_in_desc_and_readme": 0.0020155600004727603, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_markdown_regex[![image](https://github.com/demisto/content/raw/master/Packs/SplunkPy/doc_files/identify-fields-list.png)-https://github.com/demisto/content/raw/master/Packs/SplunkPy/doc_files/identify-fields-list.png]": 0.0006251599997995072, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_markdown_regex[[![Active Response in Cortex Xpanse](https://i.ytimg.com/vi/aIP1CCn9ST8/hq720.jpg)](https://www.youtube.com/watch?v=rryAQ23uuqw \"Active Response in Cortex Xpanse\")-https://i.ytimg.com/vi/aIP1CCn9ST8/hq720.jpg]": 0.0006115239998507604, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_replace_markdown_urls": 0.004851414999848203, + "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsiam": 0.004288863000056153, + "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsiam_2": 0.0027817930003948277, + "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsoar": 0.003657941999790637, + "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_scripts_preparer_test.py::test_marketplace_incident_to_alert_scripts_preparer[False-expected_names1-expected_comments1-expected_deprecated1]": 0.029811637000420887, + "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_scripts_preparer_test.py::test_marketplace_incident_to_alert_scripts_preparer[True-expected_names0-expected_comments0-expected_deprecated0]": 0.03473831400015115, + "demisto_sdk/commands/prepare_content/tests/xdrc_template_unifier_test.py::test_unify_xdrc_template": 0.002671386000201892, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_default_output_integration": 0.06760974300004818, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration": 0.03441325399990092, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__detailed_description_with_special_char": 0.03348225399986404, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__detailed_description_with_yml_structure": 0.03340148199959003, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[marketplacev2]": 0.039338750000297296, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar]": 0.03857581000011123, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar_on_prem]": 0.039030169999932696, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar_saas]": 0.03843458699975599, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param_type9[marketplacev2]": 0.03944719199989777, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param_type9[xsoar]": 0.038265621999926225, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLScript::test_unify_default_output_script": 0.00803746500014313, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLScript::test_unify_script": 0.021060345000023517, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_add_contributors_support": 0.002444592999836459, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_add_custom_section": 0.002415458000086801, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_check_api_module_imports": 0.00048641000012139557, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_clean_python_code": 0.0005903629994463699, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_empty_yml": 0.0024292339999192336, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_code_file": 0.0007582379998893884, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_code_file_case_insensative": 0.0027572480003072997, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_data": 0.0006660150002062437, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_integration_doc_link_negative": 0.0028906470001857087, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_integration_doc_link_positive": 0.06965676199979498, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_script_or_integration_package_data": 0.0028678059993580973, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml": 0.0016972550001810305, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_doc_link_exist": 0.0031825129999560886, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_markdown_image[False-True]": 0.002278752000165696, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_markdown_image[True-False]": 0.0013488240001606755, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_no_detailed_desc": 0.002624941000249237, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_hierarchy_api_module": 0.0009865249999165826, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_image_to_yml": 0.19480675099975997, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_image_to_yml_without_image": 0.0033236270000998047, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code[import_to_module0]": 0.0011798680002357287, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code[import_to_module1]": 0.0011324789998070628, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code__verify_offsets": 0.0014537199999722361, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_pack_version_and_script_to_yml": 0.00045629499982169364, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_script_to_yml[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/CalculateGeoDistance/-Scripts-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/CalculateGeoDistance/CalculateGeoDistance]": 0.01736058500046056, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_script_to_yml[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/VulnDB/-Integrations-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/VulnDB/VulnDB]": 0.23477446699962456, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_script_to_yml_exceptions[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/CalculateGeoDistance/-Scripts-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/CalculateGeoDistance/CalculateGeoDistance]": 0.01658713999995598, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_script_to_yml_exceptions[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/VulnDB/-Integrations-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/VulnDB/VulnDB]": 0.20685024999966117, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_script_to_yml_exceptions[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/VulnDB/-fake_directory-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/VulnDB/VulnDB]": 0.20310124499974336, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_community_contributed": 0.020567543999732152, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_contributor_emails_list[{\"name\":\"test\",\"description\":\"test\",\"support\":\"partner\",\"currentVersion\":\"1.0.1\",\"author\":\"bar\",\"url\":\"https://github.com/bar\",\"email\":\"['support1@test.com', 'support2@test.com']\",\"categories\":[\"Data Enrichment & Threat Intelligence\"],\"tags\":[],\"useCases\":[],\"keywords\":[]}]": 0.012101987999812991, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_contributor_emails_list[{\"name\":\"test\",\"description\":\"test\",\"support\":\"partner\",\"currentVersion\":\"1.0.1\",\"author\":\"bar\",\"url\":\"https://github.com/bar\",\"email\":\"support1@test.com,support2@test.com\",\"categories\":[\"Data Enrichment & Threat Intelligence\"],\"tags\":[],\"useCases\":[],\"keywords\":[]}]": 0.018547965999459848, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_not_partner_contributed_pack": 0.013098982999963482, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack": 0.01428660499959733, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack_no_email": 0.01369878500008781, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack_no_url": 0.012555946999782464, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_update_hidden_parameters_value": 0.0004762500002470915, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[10]": 0.0014971599998716556, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[15]": 0.0016325040000992885, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[3]": 0.0014919019999979355, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[5]": 0.0015976490003595245, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_playground_not_exist": 0.0013190589993428148, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_return_raw_outputs_from_log[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/run_cmd/tests/test_data/kl-get-component.txt-expected_output0]": 0.0022374870000021474, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_return_raw_outputs_from_log[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/run_cmd/tests/test_data/kl-get-component_no_context.txt-expected_output1]": 0.001498613999956433, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_return_raw_outputs_from_log_also_write_log[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/run_cmd/tests/test_data/kl-get-component.txt-expected_output0]": 0.00206019400002333, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_return_raw_outputs_from_log_also_write_log[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/commands/run_cmd/tests/test_data/kl-get-component_no_context.txt-expected_output1]": 0.0018856880001294485, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_return_raw_outputs_from_log_with_raw_response_flag": 0.0016043809996517666, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_single_playground_exist": 0.0018230409996249364, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_failed_run_test_playbook_by_id[TEST_PLAYBOOK-failed-1]": 0.00309008900057961, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_failed_run_test_playbook_by_id[VALID_PACK-failed-1]": 0.0030004919995008095, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_failed_run_test_playbook_manager[-1-Error: Missing option '-tpb' / '--test-playbook-path'.]": 0.002760853999916435, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_failed_run_test_playbook_manager[BlaBla-1-Error: Given input path: BlaBla does not exist]": 0.002749813999798789, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_pack_test_playbooks[failed-1-The test playbook finished running with status: FAILED]": 0.08240548999992825, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_pack_test_playbooks[success-0-The test playbook has completed its run successfully]": 0.08473580999998376, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_repo_test_playbooks[failed-1-The test playbook finished running with status: FAILED]": 0.16822843100044338, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_repo_test_playbooks[success-0-The test playbook has completed its run successfully]": 0.19385006399988924, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_specific_test_playbook[failed-1]": 0.04559229700043943, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_specific_test_playbook[success-0]": 0.02551399899948592, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_test_playbook_by_id[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/content_repo_example/Packs/FeedAzure-success-0]": 0.0031273709992092336, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_test_playbook_by_id[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-TestPlaybooks.yml-success-0]": 0.004086393999841675, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_test_playbook_manager[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/content_repo_example/Packs/FeedAzure-0-]": 0.14765480500000194, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_test_playbook_manager[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-TestPlaybooks.yml-0-]": 0.031383348999497684, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_calculate_shannon_entropy": 0.0005058249998910469, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_find_secrets": 0.0037655549999726645, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_all_diff_text_files": 0.012138126000081684, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_diff_text_files": 0.0010700020002332167, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_generic_white_list": 0.0005606679997072206, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_packs_white_list": 0.0005428859999483393, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_related_yml_contents": 0.00057103700009975, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_white_listed_items_not_pack": 0.0005512709999493381, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_white_listed_items_pack": 0.0007895359999565699, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_ignore_base64": 0.0004779240002790175, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_ignore_entropy": 0.008303292000618967, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_is_secrets_disabled": 0.0004676549997384427, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_is_text_file": 0.00048382500017396524, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_reformat_secrets_output": 0.00046807499984424794, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_regex_for_secrets": 0.0005739529997299542, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_false_positives": 0.0005072789999758243, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_secrets_disabled_line": 0.0005217769999035227, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_white_list_regex": 0.0006847099998594786, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_whitelisted_items_from_file_escaped_whitelist": 0.0005681840002580429, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_whitelisted_items_from_file_substring": 0.0047059230005288555, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_search_potential_secrets__no_secrets_found": 0.0531631879998713, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_search_potential_secrets__secrets_found": 0.008870633999777056, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_temp_white_list": 0.00209956799972133, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_two_files_with_same_name": 0.0013729690003856376, + "demisto_sdk/commands/setup_env/tests/setup_environment_test.py::test_setup_env_vscode[False]": 0.11470583199979956, + "demisto_sdk/commands/setup_env/tests/setup_environment_test.py::test_setup_env_vscode[True]": 0.1294999770002505, + "demisto_sdk/commands/split/tests/jsonsplitter_test.py::test_split_json": 0.006281179999859887, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-Zoom-no-trailing-newline.yml-integration]": 0.06365804200004277, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-Zoom.yml-betaintegration]": 0.06296551500054193, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-Zoom.yml-integration]": 0.06346687199993539, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code__with_apimodule[betaintegration]": 0.008502144999965822, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code__with_apimodule[integration]": 0.009443045000352868, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_modules_old_format": 0.007987511999999697, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_pwsh[betaintegration]": 0.004761186999985512, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_pwsh[integration]": 0.004725119999420713, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_image": 0.013825431000441313, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_javascript_code[betaintegration]": 0.0633228430001509, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_javascript_code[integration]": 0.06341395299932628, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_long_description": 0.010265112000070076, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_modeling_rules": 0.003369942999597697, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_modeling_rules_schema": 0.0033687019999888435, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_parsing_rules": 0.00329401999943002, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_parsing_rules_sampels": 0.003318427000522206, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_powershell_code[betaintegration]": 0.05888300900005561, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_powershell_code[integration]": 0.059013923999827966, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_modeling_rule": 0.006431330999475904, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_parsing_rule": 0.006394992999958049, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_pwsh[betaintegration]": 0.021065927000108786, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_pwsh[integration]": 0.021133943999302574, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extraction_with_period_in_filename": 0.015639394999652723, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path": 0.007172276999881433, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path_empty_output": 0.006946255000002566, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path_relative": 0.0077966240000932885, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_input_file_data_parameter": 0.006558598000083293, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_update_api_module_contribution": 0.007095653999840579, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_datasets": 0.010190874000272743, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_input_all_valid": 0.01242680699988341, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_input_some_invalid": 0.013881206999940332, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_create": 0.010760188999938691, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_extended_modeling_rule": 0.013129259999914211, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_reduced_modeling_rule": 0.013033140999596071, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_unchanged_modeling_rule": 0.014952771000025677, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestDeleteExistingDataset::test_delete_data_set": 90.08286245199952, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandInteractive::test_no_testdata_file_exists": 0.01616287500019098, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandMultipleRules::test_fail_one_pass_second": 60.08451492700078, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_delayed_to_get_xql_query_results": 60.10583526600021, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_fail_to_check_dataset_exists": 60.04449880200036, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_fail_to_get_xql_query_results": 60.074013337, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_fail_to_push_test_data": 0.03154168399987611, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_fail_to_start_xql_query": 60.06635736999988, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_pack_not_on_tenant": 0.017037230000369163, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_results_do_not_match_expectations": 60.06543591799982, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_results_do_not_match_expectations_with_ignore_config": 0.02387135200024204, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_results_match_expectations": 60.09645628999988, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_results_with_ignored_validations": 60.08057780299987, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandSingleRule::test_the_test_modeling_rule_command_results_with_non_existent_ignored_validations": 0.018644247999873187, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestValidateSchemaAlignedWithTestData::test_validate_schema_aligned_with_test_data_events_have_same_key_with_different_types": 0.0016593830000601884, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestValidateSchemaAlignedWithTestData::test_validate_schema_aligned_with_test_data_invalid_schema_mappings": 0.0016607259994998458, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestValidateSchemaAlignedWithTestData::test_validate_schema_aligned_with_test_data_missing_fields_in_test_data": 0.0017556740003783489, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestValidateSchemaAlignedWithTestData::test_validate_schema_aligned_with_test_data_positive[event_data0-schema_file0]": 0.02116228500062789, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestValidateSchemaAlignedWithTestData::test_validate_schema_aligned_with_test_data_positive[event_data1-schema_file1]": 0.0018099450003319362, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestVerifyResults::test_verify_results_single_event_matching_expected_outputs": 0.0011447909992057248, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestVerifyResults::test_verify_results_single_event_non_matching_expected_outputs": 0.0011443020002843696, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_call_rule_regex[call a-True]": 0.0006044010001460265, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_call_rule_regex[historically-False]": 0.000577919999614096, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_convert_epoch_time_to_string_time[1686231456000-False-Jun 8th 2023 13:37:36]": 0.04816630399955102, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_convert_epoch_time_to_string_time[1686231456000-True-Jun 8th 2023 13:37:36.000000]": 0.024496871000337705, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_convert_epoch_time_to_string_time[1686231456123-False-Jun 8th 2023 13:37:36]": 0.025206649000210746, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_convert_epoch_time_to_string_time[1686231456123-True-Jun 8th 2023 13:37:36.123000]": 0.023900826000499364, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[1-st]": 0.0006175649996293942, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[10-th]": 0.0005751449998570024, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[11-th]": 0.0005642850005642686, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[12-th]": 0.0005892000003768771, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[2-nd]": 0.0006291570002758817, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[21-st]": 0.0005727430007027579, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[3-rd]": 0.0005956039999546192, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[31-st]": 0.0005588860003626905, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[4-th]": 0.000567440999475366, + "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_listeners_with_multiple_threads": 0.0025614420001147664, + "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_queue_listener_sanity": 0.003114707000349881, + "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_real_time_logger_sanity": 0.0026042300005428842, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_build_creation": 0.006037496999397263, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_get_instances_ips": 0.005551190999995015, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_mockable_playbook_configuration": 0.004983809999885125, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_nightly_playbook_skipping": 0.00727805300084583, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_no_tests_are_executed_when_filtered_tests_is_empty": 0.004835932000332832, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_non_filtered_tests_are_skipped": 0.008642227000109415, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_integration": 0.004926601000079245, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_skipped_integrations_is_skipped": 0.0051278990003993385, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_version_mismatch_is_skipped": 0.005280884000512742, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_unmockable_playbook_configuration": 0.004932594000365498, + "demisto_sdk/commands/test_content/tests/execute_test_content_test.py::test_add_pr_comment[Link to the coverage report of the integration:\\n https://xsoar.docs.pan.run/-/content/-/jobs/123456/artifacts/artifacts/coverage_report/html/index.html-False-True]": 0.00470033900000999, + "demisto_sdk/commands/test_content/tests/execute_test_content_test.py::test_add_pr_comment[The following integrations/tests were collected by the CI build but are currently skipped. The collected tests are related to this pull request and might be critical:\\n- demo integration-True-False]": 0.005010638999920047, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[None-expected4]": 0.40925690199946985, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration0-expected0]": 0.011921775999780948, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration1-expected1]": 0.011575386999993498, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration2-expected2]": 0.011138230000142357, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration3-expected3]": 0.011168463999638334, + "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_clean_filename": 0.000549808999949164, + "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_get_paths": 0.000472824999178556, + "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_push_mock_files_thread_safety": 10.010882691999996, + "demisto_sdk/commands/test_content/tests/server_context_test.py::test_execute_tests": 0.029682127999876684, + "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__empty": 0.007505736999974033, + "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__error": 0.007903078999333957, + "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__none": 0.007741156999600207, + "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__success": 0.0073823359998641536, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_docker_thresholds_for_non_pwsh_integrations": 0.006653000000369502, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_docker_thresholds_for_pwsh_integrations": 0.006438017999698786, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_is_runnable_on_this_instance": 0.007955718000175693, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_first_playback_passes": 0.020063897999989422, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_fails_every_time": 0.023066878000008728, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_fails_most_of_the_time": 0.023752019999847107, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_passes_most_of_the_time_playback_fails": 0.02606677299945659, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_passes_most_of_the_time_playback_pass": 0.025857521000034467, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_second_playback_fails": 0.021752870000000257, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_second_playback_passes": 0.02228388499997891, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_pb_inputs[current0-new_configuration0-expected0]": 0.007784127000377339, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_pb_inputs_fails_with_build_fail[current0-new_configuration0-6.2.0-External Playbook pb_test was not found or has no inputs.]": 0.007031008000012662, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_pb_inputs_fails_with_build_fail[current1-new_configuration1-6.2.0-Some input keys was not found in playbook pb_test: Endpoint_hostnames.]": 0.0073697499997251725, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_pb_inputs_fails_with_build_pass[current0-new_configuration0-6.5.0-External Playbook Configuration not provided, skipping re-configuration.]": 0.007234359000449331, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_pb_inputs_fails_with_build_pass[current1-new_configuration1-6.0.0-External Playbook not supported in versions previous to 6.2.0, skipping re-configuration.]": 0.007270355999935418, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_placeholders": 0.01674450699965746, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_fails_every_time": 0.013060793000022386, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_fails_most_of_the_times": 0.013290382000377576, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_passes_most_of_the_time": 0.013822296999933315, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_passes_on_first_run": 0.013368959000217728, + "demisto_sdk/commands/test_content/tests/test_tools.py::test_is_redhat_instance_negative": 0.01923200200053543, + "demisto_sdk/commands/test_content/tests/test_tools.py::test_is_redhat_instance_positive": 0.0011628459997155005, + "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_close_incident[False-client_res1]": 0.006484394000381144, + "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_close_incident[True-client_res0]": 0.006407860999843251, + "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_set_prev_server_keys": 0.009553229000175634, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_form_keys[1610639147]": 0.39234947300019485, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_form_keys[2021-01-11T13:18:12+00:00]": 0.004294576999654964, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_form_keys[2021-01-14 17:44:00.571043]": 0.005122457000197755, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_form_keys[2021-01-14T15:45:47+00:00]": 0.004183689999536, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_form_keys[Thu, 14 Jan 2021 15:45:47]": 0.004320967999774439, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_form_keys[Thursday, 14-Jan-21 15:45:47 UTC]": 0.004409772000144585, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_json_keys[1610639147]": 0.005254023999896162, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_json_keys[2021-01-11T13:18:12+00:00]": 0.0061601680004059745, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_json_keys[2021-01-14 17:44:00.571043]": 0.005272907999824383, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_json_keys[2021-01-14T15:45:47+00:00]": 0.006089574999350589, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_json_keys[Thu, 14 Jan 2021 15:45:47]": 0.005186225999750604, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_json_keys[Thursday, 14-Jan-21 15:45:47 UTC]": 0.005279909999899246, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_url_query[1610639147]": 0.004967997000221658, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_url_query[2021-01-11T13:18:12+00:00]": 0.004064917000050627, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_url_query[2021-01-14 17:44:00.571043]": 0.004233202999785135, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_url_query[2021-01-14T15:45:47+00:00]": 0.003987463999692409, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_url_query[Thu, 14 Jan 2021 15:45:47]": 0.00396571099963694, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_url_query[Thursday, 14-Jan-21 15:45:47 UTC]": 0.003978334999374056, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_form_keys[1610639147]": 0.012657276000027196, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_form_keys[2021-01-11T13:18:12+00:00]": 0.013350715999877139, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_form_keys[2021-01-14 17:44:00.571043]": 0.013232432999757293, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_form_keys[2021-01-14T15:45:47+00:00]": 0.01326985399964542, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_form_keys[Thu, 14 Jan 2021 15:45:47]": 0.013644154999838065, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_form_keys[Thursday, 14-Jan-21 15:45:47 UTC]": 0.014199443999586947, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_json_keys[1610639147]": 0.012938303999817435, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_json_keys[2021-01-11T13:18:12+00:00]": 0.018783562000407983, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_json_keys[2021-01-14 17:44:00.571043]": 0.016662033000102383, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_json_keys[2021-01-14T15:45:47+00:00]": 0.01556612199965457, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_json_keys[Thu, 14 Jan 2021 15:45:47]": 0.016294013999868184, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_json_keys[Thursday, 14-Jan-21 15:45:47 UTC]": 0.017405071999291977, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_url_query[1610639147]": 0.01292057099954036, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_url_query[2021-01-11T13:18:12+00:00]": 0.017019651999817142, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_url_query[2021-01-14 17:44:00.571043]": 0.014313597000182199, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_url_query[2021-01-14T15:45:47+00:00]": 0.014082185000461322, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_url_query[Thu, 14 Jan 2021 15:45:47]": 0.01462870599971211, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_url_query[Thursday, 14-Jan-21 15:45:47 UTC]": 0.016712174999611307, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_fixed_boundary": 0.0026634649998413806, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_json_body_parsing": 0.006033251000189921, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_live_false_when_running_in_playback_state": 0.0016593949999332835, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_loader_defaults": 0.0016939810002440936, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_running": 0.0043466840002110985, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_url_query_is_sorted": 0.003947927999888634, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::test_demisto_sdk_imports": 0.0005973069996798586, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_check_existing_rn[added_files0-expected_output0]": 0.0006395260002136638, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_check_existing_rn[added_files1-expected_output1]": 0.0005843830003868788, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_pack_release_notes_pack_fail": 0.0012088210000911204, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_pack_release_notes_pack_success": 0.25607431999969776, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[None-None]": 0.0016201920002458792, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[None-git_changed_packs1]": 0.001604973999747017, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[Packs/test1-git_changed_packs0]": 0.0015846060000512807, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_get_existing_rn[Test1-packs_existing_rn1-None-path_to_rn]": 0.0008795449998615368, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_get_existing_rn[Test1-packs_existing_rn2-revision-None]": 0.0008029210002860054, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_get_existing_rn[Test2-packs_existing_rn0-None-]": 0.000932936000481277, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_handle_api_module_change[None]": 0.0014095989999987069, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_handle_api_module_change[Packs/ApiModules/Scripts/Test1]": 0.0014653620000899537, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_multiple_packs": 0.02050275999954465, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_update_fail": 0.0004886729998361261, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_update_success": 0.0027278439997644455, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_desc_event_collector": 0.27285811099955026, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_desc_new_file[modelingrule-(Available from Cortex XSIAM %%XSIAM_VERSION%%).]": 0.009079150000161462, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_desc_new_file[testscript-(Available from Cortex XSOAR 5.5.0).]": 0.22540139600005205, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_desc_old_file": 0.008750807000524219, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_file__documentation": 0.009031983000568289, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_file_without_description": 0.00903151100010291, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_integration": 0.009887945999707881, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_integration_for_generic": 0.009115719000419631, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_markdown_valid": 0.01630335100026059, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_playbook_modified_file": 0.009677181000370183, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_playbook_new_file": 0.009361268000247946, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_when_only_pack_metadata_changed": 0.00891792099992017, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_with_fromversion": 0.008612638000158768, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_file_not_found": 0.014178645000356482, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_no_version": 0.009085463000246818, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_major": 0.009571422000135499, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_major_overflow": 0.009380314999816619, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_minor": 0.009365406000142684, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_minor_overflow": 0.009454744000322535, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_revision": 0.009296258999711426, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_revision_overflow": 0.009373310999762907, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_specific": 0.009492773999681958, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_integration_command": 0.02373115200043685, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path0-integration-True-]": 0.02344182999968325, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path1-integration-False-]": 0.023520026999904076, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path10-script-True-]": 0.0014135549995444308, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path11-script-False-]": 0.0019269660001555167, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path12-script-False-- Deprecated. Use %%% instead.\\n]": 0.0020846009997512738, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path13-script-False-- Deprecated. No available replacement.\\n]": 0.0019231390001550608, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path14-script-True-]": 0.0014443829995798296, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path2-integration-False-- Deprecated. Use %%% instead.\\n]": 0.02333788599980835, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path3-integration-False-- Deprecated. Use Other Integration instead.\\n]": 0.024110661999657168, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path4-integration-True-]": 0.024096996000025683, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path5-playbook-True-]": 0.0015046060002532613, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path6-playbook-False-]": 0.00950193299968305, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path7-playbook-False-- Deprecated. Use %%% instead.\\n]": 0.009917540000060399, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path8-playbook-False-- Deprecated. Use another playbook instead.\\n]": 0.009511421999832237, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path9-playbook-True-]": 0.001321955000548769, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml_no_commands_section": 0.22162935899996228, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_execute_with_bump_version_raises_error": 0.2354837939992649, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_filter_to_relevant_files_pack_not_found": 0.018224137000288465, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_find_corresponding_yml": 0.008986239000023488, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_get_release_notes_path": 0.008924569999635423, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_only_docs_changed": 0.06586072599975523, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_only_docs_changed_bump_not_required": 0.009701195000161533, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_dashboard": 0.23212977899993348, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_incident_field": 0.16960886599963487, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_mapper": 0.1823202850000598, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_with_deprecated_and_text": 0.039007598999887705, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_add_and_modify_files_without_update_docker_image": 0.015265037000062875, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_build_rn_config_file[False-None-None]": 0.29835885600004985, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_build_rn_config_file[True-None-expected_conf_data1]": 0.24889770099980524, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_build_rn_config_file[True-existing_conf_data2-expected_conf_data2]": 0.2311915130003399, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_build_rn_config_file[True-existing_conf_data3-expected_conf_data3]": 0.27302480199978163, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_change_image_or_desc_file_path": 0.003634331999819551, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_check_docker_image_changed[+ dockerimage: demisto/python3:3.9.8.24399]": 0.0039664910004830745, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_check_docker_image_changed[+dockerimage: demisto/python3:3.9.8.24399]": 0.0037446180003826157, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_check_rn_directory": 0.011870786000145017, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_create_markdown": 0.01903074500069124, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_does_pack_metadata_exist_no": 0.012042958000620274, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_execute_update_invalid": 0.013170820000141248, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_find_added_pack_files": 0.011946877999434946, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/CommonPlaybooks-Packs/CommonPlaybooks/Scripts/VulnDB/VulnDB.py-script-expected_result8]": 0.013288568999996642, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/CommonScripts-Packs/CommonScripts/Dashboards/VulnDB/VulnDB.yml-dashboard-expected_result13]": 0.013141342999460903, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/CommonScripts-Packs/CommonScripts/Playbooks/VulnDB/VulnDB_playbook.yml-playbook-expected_result6]": 0.014047348000076454, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/CommonScripts-Packs/CommonScripts/TestPlaybooks/VulnDB/VulnDB.yml-testplaybook-expected_result18]": 0.013264852999782306, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/CommonTypes-Packs/CommonTypes/IndicatorFields/VulnDB.json-indicatorfield-expected_result4]": 0.013316420000137441, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Classifiers/VulnDB/VulnDB.json-classifier-expected_result1]": 0.01594813600058842, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Connections/VulnDB/VulnDB.yml-canvas-context-connections-expected_result11]": 0.014180978999775107, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Dashboards/VulnDB/VulnDB.yml-dashboard-expected_result12]": 0.013427298999886261, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/IncidentFields/VulnDB/VulnDB.json-incidentfield-expected_result3]": 0.013216753999586217, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/IncidentTypes/VulnDB/VulnDB.json-incidenttype-expected_result2]": 0.013266868999835424, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/IndicatorTypes/VulnDB/VulnDB.yml-reputation-expected_result16]": 0.01408655200020803, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Integrations/VulnDB/VulnDB.yml-integration-expected_result10]": 0.013191817999995692, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Layouts/VulnDB/VulnDB.json-layout-expected_result0]": 0.013794385999972292, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Playbooks/VulnDB/VulnDB_playbook.yml-playbook-expected_result5]": 0.013137205000020913, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/ReleaseNotes/1_0_1.md-releasenotes-expected_result9]": 0.013295540999934019, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Reports/VulnDB/VulnDB.yml-report-expected_result15]": 0.01321967899957599, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Scripts/VulnDB/VulnDB.py-script-expected_result7]": 0.013166018999982043, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/TestPlaybooks/VulnDB/VulnDB.yml-testplaybook-expected_result17]": 0.01324483600046733, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_get_changed_file_name_and_type[Packs/VulnDB-Packs/VulnDB/Widgets/VulnDB/VulnDB.yml-widget-expected_result14]": 0.013247261999822513, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.0-99.99.99-True]": 0.013535400999899139, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.1-1.0.2-True]": 0.013466351000261056, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.5-1.0.4-False]": 0.01354971699993257, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.5-1.0.5-True]": 0.013438470000437519, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_new_integration_docker_not_updated": 0.015600726999764447, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_renamed_files": 0.012740302999645792, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_api_modules_dependents_rn__happy_flow": 0.019422708999627503, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_docker_image_in_yml": 0.014722311000241461, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_docker_image_in_yml_when_RN_aleady_exists": 0.017086045000269223, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_docker_image_when_yml_has_changed_but_not_docker_image_property": 0.003683333000026323, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_existing_rn": 0.012421526000252925, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_write_metadata_To_file": 0.01926087500032736, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_create_md_if_currentversion_is_higher[first_expected_results0-second_expected_results0]": 0.2997100740003589, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_deprecated_commands": 0.0005350209999051003, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_docker_image_is_added_for_every_integration": 0.33248232100004316, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_force_and_text_update_rn[-## PackName\\n\\n- %%UPDATE_RN%%\\n]": 0.1761511680001604, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_force_and_text_update_rn[Testing the upload-## PackName\\n\\n- Testing the upload\\n]": 0.3001624590001484, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_get_deprecated_comment_from_desc": 0.0004830639995816455, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_get_file_description[demisto_sdk/commands/update_release_notes/tests_data/modeling_rules_yml_mock.yml-modelingrule-testing modeling rules description extraction.]": 0.0011767109999709646, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_get_from_version_at_update_rn": 0.022021401000529295, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_git_add_release_notes": 0.016549620000205323, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_handle_existing_rn_version_path": 0.2369469449999997, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_handle_existing_rn_with_docker_image[#### Integrations\\n\\n##### IBM QRadar v2\\n- %%UPDATE_RN%%\\n\\n##### IBM QRadar v3\\n- %%UPDATE_RN%%-Integrations-demisto/python3:3.9.5.21276-IBM QRadar v3-#### Integrations\\n\\n##### IBM QRadar v2\\n- %%UPDATE_RN%%\\n\\n##### IBM QRadar v3\\n- Updated the Docker image to: *demisto/python3:3.9.5.21276*.\\n- %%UPDATE_RN%%]": 0.0008758280005167762, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_handle_existing_rn_with_docker_image[#### Integrations\\n\\n##### IBM QRadar v3\\n- %%UPDATE_RN%%-Integrations-demisto/python3:3.9.5.21276-IBM QRadar v3-#### Integrations\\n\\n##### IBM QRadar v3\\n- Updated the Docker image to: *demisto/python3:3.9.5.21276*.\\n- %%UPDATE_RN%%]": 0.0007657929995730228, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_no_release_notes_for_first_version": 0.01015937700003633, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_all_marketplace_packs[False--expected_outputs1]": 0.0019334169996909623, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_all_marketplace_packs[True-xsoar_config.json-expected_outputs0]": 0.002318336999451276, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_all_marketplace_packs_on_existing_list": 0.001922685999488749, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_custom_pack": 0.00143311099964194, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_custom_pack_with_missing_args[True--Packs/Pack1--Error: Missing option '-pi' / '--pack-id'.-expected_outputs0]": 0.002256059999581339, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_custom_pack_with_missing_args[True-Pack1---Error: Missing option '-pd' / '--pack-data'.-expected_outputs1]": 0.0021854090000488213, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_marketplace_pack": 0.0015111569991859142, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_marketplace_pack_with_missing_args[True--1.0.1--Error: Missing option '-pi' / '--pack-id'.-expected_outputs0]": 0.009131493999575468, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_marketplace_pack_with_missing_args[True-Pack1---Error: Missing option '-pd' / '--pack-data'.-expected_outputs1]": 0.0024837970004227827, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_update_config_file_manager[False-False---0]": 0.0014016430000083346, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_update_config_file_manager[False-True-Pack1-Packs/Pack1-0]": 0.0015156350004872365, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_update_config_file_manager[True-False---1]": 0.001525225000023056, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_verify_flags[False-Pack1---True]": 0.0013280329994813656, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_verify_flags[True--Packs/Pack1-Error: Missing option '-pi' / '--pack-id'.-False]": 0.00170020099994872, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_verify_flags[True-Pack1--Error: Missing option '-pd' / '--pack-data'.-False]": 0.0015815379997548007, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_verify_flags[True-Pack1-Packs/Pack1--True]": 0.001246932999947603, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_detach_item": 0.00218926699972144, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_detach_item_manager": 0.569733855999857, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_extract_items_from_dir": 0.5634507610002402, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_id_to_detach": 0.060117807000096946, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/IncidentTypes/Process_Survey_Response.json-json]": 0.0005884910001441312, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Layouts/Process_Survey_Response.json-json]": 0.0005959660006737977, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Playbooks/Process_Survey_Response.md-yml]": 0.0005783420006082451, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Playbooks/Process_Survey_Response.yml-yml]": 0.0005781210002169246, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Playbooks/Process_Survey_Response.md-False]": 0.0005954729999757546, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Playbooks/Process_Survey_Response.yml-True]": 0.0007539610001003894, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Scripts/Process_Survey_Response.md-False]": 0.0006032979999872623, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Scripts/Process_Survey_Response.yml-True]": 0.0005823000001328182, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_failed_uploaded": 0.004491302999667823, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_successfully_uploaded_files": 0.0037228430001050583, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_version_mismatch": 0.01640302599980714, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_notify_user_about_overwrite_pack[n-0]": 0.004744354999729694, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_notify_user_about_overwrite_pack[y-1]": 0.004810949999864533, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_invalid_zip_path[None]": 0.005632345999856625, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_invalid_zip_path[invalid_zip_path]": 0.0028102179999223154, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.10.0-path0]": 0.0040413920005448745, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.10.0-path1]": 0.003896689999692171, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.6.0-path0]": 0.004987010999684571, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.6.0-path1]": 0.004060986999775196, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.10.0-path0]": 0.004003969999757828, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.10.0-path1]": 0.00405311399981656, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.5.0-path0]": 0.004120547999718838, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.5.0-path1]": 0.005102275999888661, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.6.0-path0]": 0.003981258000294474, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.6.0-path1]": 0.004044635999889579, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.10.0-path0]": 0.004343124999650172, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.10.0-path1]": 0.00547382100012328, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.5.0-path0]": 0.004386145000353281, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.5.0-path1]": 0.005301667000367161, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.6.0-path0]": 0.004384405000109837, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.6.0-path1]": 0.004303662000438635, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_xsiam_pack[marketplacev2-expected_files1]": 0.013932433999798377, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_xsiam_pack[xsoar-expected_files0]": 0.022399643999960972, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zip_does_not_exist": 0.0032292599994434568, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zips[path0]": 0.0032231999998657557, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zips[path1]": 0.002884134999476373, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_parse_error_response[exc0-[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate.\\nRun the command with the --insecure flag.]": 0.0006063950004318031, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_parse_error_response[exc1-Failed to establish a new connection: Connection refused.\\nCheck the BASE url configuration.]": 0.000590072999784752, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_parse_error_response__exception[Bad Request]": 0.0005728809996980999, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_parse_error_response__exception[Forbidden]": 0.000533318000179861, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/IncidentFields-3]": 0.008081098999355163, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/Scripts-1]": 0.07313397699999769, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/Scripts/DummyScript-1]": 0.00573216400016463, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[content_repo_example/Integrations-1]": 0.00549637099948086, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[content_repo_example/Integrations/Securonix/-1]": 0.026713394999660522, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_incident_field_correct_file_change": 0.004263063999587757, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_incident_type_correct_file_change": 0.005396215000018856, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_invalid_path": 0.0021293230001901975, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_pack": 0.009759757999745489, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_packs_from_configfile": 0.005845666999903187, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_not_supported": 0.0030913929999769607, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Dashboard-demisto_sdk/tests/test_files/Packs/DummyPack/Dashboards/upload_test_dashboard.json]": 0.005168468999727338, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[IncidentField-demisto_sdk/tests/test_files/Packs/CortexXDR/IncidentFields/XDR_Alert_Count.json]": 0.006080756000301335, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[IncidentType-demisto_sdk/tests/test_files/Packs/DummyPack/IncidentTypes/incidenttype-Hello_World_Alert.json]": 0.005137681000178418, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[IndicatorField-demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorFields/dns.json]": 0.005140936999396217, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[IndicatorType-demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorTypes/SampleIndicatorType.json]": 0.005114898000101675, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Integration-demisto_sdk/tests/test_files/content_repo_example/Integrations/Securonix/Securonix.py]": 0.024232193999978335, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Integration-demisto_sdk/tests/test_files/content_repo_example/Integrations/Securonix/Securonix.yml]": 0.02530518000048687, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Layout-demisto_sdk/tests/test_files/Packs/DummyPack/Layouts/layoutscontainer-test.json]": 0.0053348399997048546, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Mapper-demisto_sdk/tests/test_files/Packs/DummyPack/Classifiers/classifier-aws_sns_test_classifier.json]": 0.005136288999892713, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Playbook-demisto_sdk/tests/test_files/Packs/CortexXDR/Playbooks/Cortex_XDR_Incident_Handling.yml]": 0.014448728999468585, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Script-demisto_sdk/tests/test_files/Packs/DummyPack/Scripts/DummyScriptUnified.yml]": 0.006329441000161751, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Widget-demisto_sdk/tests/test_files/Packs/DummyPack/Widgets/widget-ActiveIncidentsByRole.json]": 0.0052337110000735265, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_unsupported_file": 0.0036978279999857477, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_zip_multiple_packs": 0.05174416099953305, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_CliNameMatchIdValidator_fix[content_item0-email-Changing the cli name to (email).]": 0.0006814140001552005, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_CliNameMatchIdValidator_fix[content_item1-domain-Changing the cli name to (domain).]": 0.0006717960004607448, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_CliNameMatchIdValidator_is_valid[content_items0-0-expected_msgs0]": 0.0006876170000396087, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_CliNameMatchIdValidator_is_valid[content_items1-1-expected_msgs1]": 0.0006785000005038455, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_fix[content_item0-should_fix-Changing name to be equal to id (should_fix).]": 0.0007869119999668328, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_fix[content_item1-should_fix-Changing name to be equal to id (should_fix).]": 0.0007004799995229405, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_fix[content_item2-should_fix-Changing name to be equal to id (should_fix).]": 0.0006943190001038602, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_is_valid[content_items0-1-expected_msgs0]": 0.0011741859998437576, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_is_valid[content_items1-1-expected_msgs1]": 0.0007367379998868273, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_is_valid[content_items2-0-expected_msgs2]": 0.0006655360007243871, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_is_valid[content_items3-0-expected_msgs3]": 0.0006460899999183312, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_is_valid[content_items4-0-expected_msgs4]": 0.0006557560004694096, + "demisto_sdk/commands/validate/tests/BA_validators_test.py::test_IDNameValidator_is_valid[content_items5-1-expected_msgs5]": 0.0006921849994796503, + "demisto_sdk/commands/validate/tests/BC_validators_test.py::test_BreakingBackwardsSubtypeValidator[content_items0-old_content_items0-1-expected_msgs0]": 0.0009645140003158303, + "demisto_sdk/commands/validate/tests/BC_validators_test.py::test_BreakingBackwardsSubtypeValidator[content_items1-old_content_items1-1-expected_msgs1]": 0.0007951079996928456, + "demisto_sdk/commands/validate/tests/BC_validators_test.py::test_BreakingBackwardsSubtypeValidator[content_items2-old_content_items2-2-expected_msgs2]": 0.0007731959999546234, + "demisto_sdk/commands/validate/tests/BC_validators_test.py::test_BreakingBackwardsSubtypeValidator[content_items3-old_content_items3-0-expected_msgs3]": 0.000704137999946397, + "demisto_sdk/commands/validate/tests/BC_validators_test.py::test_BreakingBackwardsSubtypeValidator_fix[content_item0-old_content_item0-python3-Changing subtype back to the old one (python3).]": 0.0007349850002356106, + "demisto_sdk/commands/validate/tests/BC_validators_test.py::test_BreakingBackwardsSubtypeValidator_fix[content_item1-old_content_item1-python3-Changing subtype back to the old one (python3).]": 0.0007316200003515405, + "demisto_sdk/commands/validate/tests/DO_validators_test.py::test_DockerImageExistValidator_is_valid[content_items0-1-expected_msgs0-1]": 0.0043742220000240195, + "demisto_sdk/commands/validate/tests/DO_validators_test.py::test_DockerImageExistValidator_is_valid[content_items1-1-expected_msgs1-1]": 0.001271899000130361, + "demisto_sdk/commands/validate/tests/DO_validators_test.py::test_DockerImageExistValidator_is_valid[content_items2-0-expected_msgs2-0]": 0.0012633540000024368, + "demisto_sdk/commands/validate/tests/DO_validators_test.py::test_DockerImageExistValidator_is_valid[content_items3-2-expected_msgs3-1]": 0.0012547480000648648, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_IsIntegrationRunnableValidator_is_valid[content_items0-1]": 0.0006322029998955259, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_IsIntegrationRunnableValidator_is_valid[content_items1-0]": 0.0005716380001103971, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_IsIntegrationRunnableValidator_is_valid[content_items2-0]": 0.0006006950002301892, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_IsIntegrationRunnableValidator_is_valid[content_items3-0]": 0.0005694360002053145, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_IsIntegrationRunnableValidator_is_valid[content_items4-0]": 0.0005752050001319731, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_ValidSubtypeValidator_is_valid[content_items0-1-expected_msgs0]": 0.0008642259999760427, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_ValidSubtypeValidator_is_valid[content_items1-1-expected_msgs1]": 0.0007055299997773545, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_ValidSubtypeValidator_is_valid[content_items2-0-expected_msgs2]": 0.0006699520004076476, + "demisto_sdk/commands/validate/tests/IN_validators_test.py::test_ValidSubtypeValidator_is_valid[content_items3-2-expected_msgs3]": 0.0006899099998918246, + "demisto_sdk/commands/validate/tests/PA_validators_test.py::test_pack_metadata_name_validator[0-packmetadatas_objects_list2]": 0.0005955450001238205, + "demisto_sdk/commands/validate/tests/PA_validators_test.py::test_pack_metadata_name_validator[1-packmetadatas_objects_list0]": 0.0010221719994660816, + "demisto_sdk/commands/validate/tests/PA_validators_test.py::test_pack_metadata_name_validator[1-packmetadatas_objects_list1]": 0.0006925269999555894, + "demisto_sdk/commands/validate/tests/PA_validators_test.py::test_pack_metadata_name_validator[1-packmetadatas_objects_list3]": 0.0007248449996950512, + "demisto_sdk/commands/validate/tests/PA_validators_test.py::test_pack_metadata_name_validator[2-packmetadatas_objects_list4]": 0.0007181830001172784, + "demisto_sdk/commands/validate/tests/PA_validators_test.py::test_pack_metadata_name_validator[2-packmetadatas_objects_list5]": 0.0007364369994320441, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_added_files_type_using_function": 0.03375076100019214, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_default_conditions_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-Invalid_condition_unhandled_branch.yml-False]": 0.020064104999619303, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_default_conditions_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-Invalid_condition_unhandled_branch_and_unhandled_condition.yml-True]": 0.02642715899992254, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_default_conditions_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid_condition.yml-True]": 0.05350195100027122, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[integration id is not in conf.json]": 0.2588070750002771, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[only some of the tests are in conf.json]": 0.16717797700039227, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[tests section missing from yml and conf.json]": 0.2610364409997601, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[tests section missing from yml but in conf.json]": 0.2580051469999489, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[well configured]": 0.23232705100008388, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[yml tests mismatch conf.json tests]": 0.16340882399981638, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_testplaybook[testplaybook-testplaybook-False]": 0.0013971200000924, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_create_ignored_errors_list": 0.017768348999652517, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_files_validator_missing_meta_file": 0.26490646399997786, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_files_validator_validate_pack_unique_files": 0.03417570700003125, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_get_error_ignore_list": 0.019163089000358013, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_get_packs": 0.01727358100015408, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[OtherDir/Integration/file.json]": 0.017915867999818147, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[TestData/file.json]": 0.018030823999652057, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[TestPlaybooks/file.yml]": 0.017734900000050402, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[docs/dbot/README.md]": 0.01771298999983628, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_should_not_ignore[Packs/SomeIntegration/IntegrationName/file.py]": 0.01880081200033601, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_should_not_ignore[Packs/pack_id/Integrations/integration_id/file.yml]": 0.018189521000749664, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/.secrets-ignore]": 0.017598075000023528, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/Integrations/integration_id/command_examples]": 0.0290676319996237, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/Integrations/integration_id/test.txt]": 0.017883797000195045, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/Integrations/integration_id/test_data/file.json]": 0.022776963000069372, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/Scripts/script_id/test_data/file.json]": 0.022802221999882022, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/TestPlaybooks/test_data/file.json]": 0.022281668999767135, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/test_data/file.json]": 0.019654048000120383, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_condition_branches_handled[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-Invalid_condition_unhandled_branch.yml-False]": 0.02015138799970373, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_condition_branches_handled[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-Invalid_condition_unhandled_branch_and_unhandled_condition.yml-False]": 0.026839120999738952, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_condition_branches_handled[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-valid_condition.yml-True]": 0.05357794200017452, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-Packs/TestPack/Playbooks/playbook-test.yml-playbook]": 0.17005438399974082, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-valid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-dashboard]": 0.022487599999749364, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-valid.json-Packs/TestPack/IncidentFields/incidentfield-test.json-incidentfield]": 0.04088621899973077, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidenttype-valid.json-Packs/TestPack/IncidentTypes/incidenttype-valid.json-incidenttype]": 0.02620360300079483, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-integration]": 0.17895137899949987, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-integration]": 0.18137406999949235, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputations-valid.json-Packs/TestPack/IndicatorTypes/reputations-valid.json-reputation]": 0.024857143000190263, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-script]": 0.06409003800035862, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-Packs/TestPack/Playbooks/playbook-test.yml-False-PlaybookValidator]": 0.029803284999616153, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-Packs/TestPack/Playbooks/playbook-test.yml-True-PlaybookValidator]": 0.03264072499996473, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/correlationrule_invalid.yml-Packs/TestPack/CorrelationRules/correlationrule-mock.yml-False-CorrelationRuleValidator]": 0.010958310999740206, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-False-DashboardValidator0]": 0.003999280999778421, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-False-DashboardValidator1]": 0.004137279999667953, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-valid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-True-DashboardValidator]": 0.003492154000014125, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-xsiam_invalid.json-Packs/TestPack/XSIAMDashboards/dashboard-xsiam_mock.json-False-XSIAMDashboardValidator]": 0.00379149199989115, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-invalid.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False-IncidentFieldValidator]": 0.10902067400002124, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-valid.json-Packs/TestPack/IncidentFields/incidentfield-test.json-True-IncidentFieldValidator]": 0.5148716829994555, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-invalid.json-Packs/TestPack/Layouts/layout-mock.json-False-LayoutValidator]": 0.0038544510002793686, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-valid.json-Packs/TestPack/Layouts/layout-mock.json-True-LayoutValidator]": 0.003314490999400732, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_invalid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-False-LayoutsContainerValidator]": 0.004459991000203445, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_valid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-True-LayoutsContainerValidator]": 0.0034775149997585686, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-invalid.yml-Packs/TestPack/Scripts/script-test.yml-False-ScriptValidator]": 0.11828539600037402, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-True-ScriptValidator]": 0.11744142700035809, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-invalid.json-Packs/TestPack/Widgets/widget-mocks.json-False-WidgetValidator]": 0.003849811000236514, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_file_valid[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-valid.json-Packs/TestPack/Widgets/widget-mocks.json-True-WidgetValidator]": 0.003201952000381425, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_id_equals_name[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-Packs/TestPack/Playbooks/playbook-test.yml-True-PlaybookValidator]": 0.029565471000296384, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_id_equals_name[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-id-test.yml-Packs/TestPack/Integrations/integration-test.yml-False-IntegrationValidator]": 0.2430713330004437, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_id_equals_name[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-valid-id-test.yml-Packs/TestPack/Integrations/integration-test.yml-True-IntegrationValidator]": 0.25258239400000093, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_id_equals_name[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-invalid-id-test.yml-Packs/TestPack/Playbooks/playbook-test.yml-False-PlaybookValidator]": 0.1855539010002758, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_id_equals_name[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-invalid.yml-Packs/TestPack/Scripts/script-test.yml-False-ScriptValidator]": 0.0062479479997819, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_id_equals_name[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-True-ScriptValidator]": 0.007528345000082481, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_old_file_format_non_unified": 0.025697674000184634, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_old_file_format_unified": 0.024957408999853214, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_release_notes_exists[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.002118722999966849, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_release_notes_exists[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0031916819998514256, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_release_notes_exists[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0023005440002634714, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_release_notes_exists[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.002663694000148098, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_root_connected_to_all_tasks[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-True]": 0.029391254000074696, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_root_connected_to_all_tasks[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-disconnected_from_root.yml-False]": 0.034495604999847274, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_json[False-MyDashboard ]": 0.19182876600007148, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_json[True-MyDashboard]": 0.18427511299978505, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_yml[False-MyIntegration ]": 0.19627969399971334, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_yml[True-MyIntegration]": 0.38342883000041184, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_name[False-MyDashboard ]": 0.172853860000032, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_name[True-MyDashboard]": 0.18733774400016046, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[False-False-True]": 0.2536898170001223, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-False-False]": 0.1709451029992124, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-True-False]": 0.2649462079998557, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-True-True]": 0.23720842200054904, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[False-False-True]": 0.38413973399974566, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-False-False]": 0.29410047300007136, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-True-False]": 0.43631928299964784, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-True-True]": 0.3466107470003408, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-Packs/TestPack/Playbooks/playbook-test.yml-False-PlaybookValidator]": 0.02805532599995786, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-Packs/TestPack/Playbooks/playbook-test.yml-True-PlaybookValidator]": 0.029898223000145663, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/correlationrule_invalid.yml-Packs/TestPack/CorrelationRules/correlationrule-mock.yml-False-CorrelationRuleValidator]": 0.00924155900020196, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-False-DashboardValidator0]": 0.0022166459998516075, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-False-DashboardValidator1]": 0.002201739000156522, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-valid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-True-DashboardValidator]": 0.0018852960006370267, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-xsiam_invalid.json-Packs/TestPack/XSIAMDashboards/dashboard-xsiam_mock.json-False-XSIAMDashboardValidator]": 0.0022661889997834805, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-invalid.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False-IncidentFieldValidator]": 0.0021472270004778693, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-valid.json-Packs/TestPack/IncidentFields/incidentfield-test.json-True-IncidentFieldValidator]": 0.0018585160000839096, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-invalid.json-Packs/TestPack/Layouts/layout-mock.json-False-LayoutValidator]": 0.0021212470005593786, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-valid.json-Packs/TestPack/Layouts/layout-mock.json-True-LayoutValidator]": 0.001846133000071859, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_invalid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-False-LayoutsContainerValidator]": 0.002213812000263715, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_valid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-True-LayoutsContainerValidator]": 0.0019148530004713393, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-invalid.yml-Packs/TestPack/Scripts/script-test.yml-False-ScriptValidator]": 0.006016474999796628, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-True-ScriptValidator]": 0.007497124999645166, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-invalid.json-Packs/TestPack/Widgets/widget-mocks.json-False-WidgetValidator]": 0.002118993000294722, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_fromversion[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-valid.json-Packs/TestPack/Widgets/widget-mocks.json-True-WidgetValidator]": 0.0017983239999921352, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_generic_field[False-False]": 0.2655260660003478, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_generic_field[True-True]": 0.2614176829997632, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_incident_field[False-False]": 0.2691472309998062, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_incident_field[True-True]": 0.1651198940003269, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml-Packs/TestPack/Playbooks/playbook-test.yml-False-PlaybookValidator]": 0.028137958999650436, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml-Packs/TestPack/Playbooks/playbook-test.yml-True-PlaybookValidator]": 0.029311545999917143, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-False-DashboardValidator0]": 0.002224661999662203, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-False-DashboardValidator1]": 0.002209394000146858, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-valid.json-Packs/TestPack/Dashboards/dashboard-mocks.json-True-DashboardValidator]": 0.0018535059998612269, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-invalid.json-Packs/TestPack/IncidentFields/incidentfield-test.json-False-IncidentFieldValidator]": 0.0021384199999374687, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-valid.json-Packs/TestPack/IncidentFields/incidentfield-test.json-True-IncidentFieldValidator]": 0.0019530829999894195, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-invalid.json-Packs/TestPack/Layouts/layout-mock.json-False-LayoutValidator]": 0.0021509150001293165, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-valid.json-Packs/TestPack/Layouts/layout-mock.json-True-LayoutValidator]": 0.002028865000283986, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_invalid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-False-LayoutsContainerValidator]": 0.0021652109994647617, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_valid.json-Packs/TestPack/Layouts/layoutscontainer-mock.json-True-LayoutsContainerValidator]": 0.001929941000071267, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-invalid.yml-Packs/TestPack/Scripts/script-test.yml-False-ScriptValidator]": 0.006174990999625152, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-True-ScriptValidator]": 0.007522973999584792, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-invalid.json-Packs/TestPack/Widgets/widget-mocks.json-False-WidgetValidator]": 0.002138930999990407, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-valid.json-Packs/TestPack/Widgets/widget-mocks.json-True-WidgetValidator]": 0.0017816239997046068, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version_locked_paths[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputations-invalid.json-False-ReputationValidator]": 0.0019171360004293092, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_version_locked_paths[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputations-valid.json-True-ReputationValidator]": 0.0018183420002060302, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_non_integration_png_files_ignored": 0.018333476000407245, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_pack_validation": 0.051855820999207936, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-test.yml]": 0.19994661799955793, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/README-valid.md]": 0.26919899400081704, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-valid.json]": 0.05083905900028185, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-valid.json]": 0.19444185499969535, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidenttype-valid.json]": 0.05349124199983635, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/indicatorfield-valid.json]": 0.1874301809998542, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-valid-id-test.yml]": 0.6693522600007782, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-valid.json]": 0.061121774000184814, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputations-valid.json]": 0.05370742400009476, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml]": 0.20411517399998047, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-beta-integration.yml]": 0.1395890789999612, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Playbooks.playbook-invalid.yml]": 0.183994151999741, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/dashboard-invalid.json]": 0.03757272400025613, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/incidentfield-invalid.json]": 0.15953819400010616, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-invalid-id-test.yml]": 0.9237702999998874, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-beta-integration.yml]": 0.580346159000328, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layout-invalid.json]": 0.044835964999947464, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/layoutscontainer_invalid.json]": 0.07521937299952697, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/non-valid-integration-no-test-playbooks.yml]": 0.3202551750000566, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/non-valid-integration-test-not-configured.yml]": 0.33166295399951196, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-Invalid_condition_unhandled_branch.yml]": 0.17227513300031205, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-Invalid_condition_unhandled_branch_and_unhandled_condition.yml]": 0.18213434700010112, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-disconnected_from_root.yml]": 0.1989572140000746, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/playbook-invalid-id-test.yml]": 0.444596141999682, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/reputations-invalid.json]": 0.039218005999828165, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-invalid.yml]": 0.20832778600015445, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_failed[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/widget-invalid.json]": 0.028420319999440835, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_with_modified_id": 0.42174278600032267, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_validations_on_file_release_notes_config": 0.014139939999950002, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_script_valid_rn": 0.1983181189998504, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_setup_git_params_master_branch": 0.014928227000837069, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_setup_git_params_non_master_branch": 0.014510274999793182, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[.pack-ignore-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/.pack-ignore]": 0.020227591000548273, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[.secrets-ignore-.secrets-ignore]": 0.01764881599956425, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[changelog-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line_CHANGELOG.md]": 0.01766156499979843, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[doc_image-image.png]": 0.022138532000099076, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[ini-ini_file.ini]": 0.018250400999932026, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[javascriptfile-java_script_file.js]": 0.028638778000185994, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[license-LICENSE]": 0.021321786000044085, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[metadata-.pack_metadata.json]": 0.02711386400005722, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[modelingruleschema-Packs/some/ModelingRules/Some/Some_schema.json]": 0.017755740999746195, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[pem-pem_file.pem]": 0.01763700399942536, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[pipfile-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Pipfile]": 0.017757395000444376, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[pipfilelock-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/Pipfile.lock]": 0.018275821000315773, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[powershellfile-powershell_file.ps1]": 0.017994368000472605, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[pylintrc-.pylintrc]": 0.017557877000399458, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[txt-txt_file.txt]": 0.01765802799991434, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[unified_yml-Packs/DummyPack/Scripts/DummyScript_unified.yml]": 0.028117701999690325, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[vulture_whitelist-Packs/TestPack/Integrations/TestIntegration/.vulture_whitelist.py]": 0.017924593000770983, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[xsiamreportimage-Packs/XSIAMPack/XSIAMReports/XSIAM_Some_Report.json]": 0.0219164259997342, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_unified_files_ignored": 0.020357381999474455, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-multi-line_1_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0023392560001411766, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-multi-line_2_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0024166510002032737, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-one-line-list_1_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.002380934000484558, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-one-line-list_2_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.002378499999849737, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-one-line_1_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0023905220000415284, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-one-line_2_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0023964239999259007, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-multi-line-list_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.0020888680001007742, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-multi-line_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.002219481999418349, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line-list_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.0031267989998013945, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/integration-test.yml-Packs/TestPack/Integrations/integration-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line_CHANGELOG.md-Packs/TestPack/Integrations/integration-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.002169297999898845, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-multi-line_1_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0023582320000059553, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-multi-line_2_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0022937610001463327, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-one-line-list_1_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.002416200999959983, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-one-line-list_2_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.002476533999924868, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-one-line_1_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0022502189995066146, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/invalid-one-line_2_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-False]": 0.0023194489995148615, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-multi-line-list_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.002070733999971708, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-multi-line_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.0021167800000512216, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line-list_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.0022125079999568698, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_valid_release_notes_structure[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/script-valid.yml-Packs/TestPack/Scripts/script-test.yml-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/valid-one-line_CHANGELOG.md-Packs/TestPack/Scripts/script-test_CHANGELOG.md-OldReleaseNotesValidator-True]": 0.002294051999342628, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__happy_rn_dependent_on_api_module": 0.02862910800058671, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_dependent_on_api_module": 0.05297212700043019, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_for_added_file_in_existing_pack": 0.030034427999908075, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_in_modified_files": 0.02591543200014712, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_in_old_format_files": 0.029528958000355487, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__no_missing_rn": 0.027060242000061407, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__no_missing_rn_new_pack": 0.046544563000225025, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format__with_toversion": 0.01906244199972207, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format__without_toversion": 0.022141543000543606, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format_deprecated_content": 0.02117999099982626, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_pack_dependencies": 0.04378242799975851, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_pack_dependencies__invalid": 0.03258232700000008, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_release_notes": 0.01864612200006377, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_release_notes__invalid_rn_for_new_pack": 0.02286998499994297, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validation_of_beta_playbooks": 0.030089692000728974, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_verify_no_dup_rn[added_files0-True]": 0.019300158000078227, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_verify_no_dup_rn[added_files1-False]": 0.026536850000411505, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/modeling_rules.xif-modelingrulexif-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/modeling_rules.yml]": 0.023381404999781807, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/modeling_rules_schema.json-modelingruleschema-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/modeling_rules.yml]": 0.024870778999684262, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path[/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/modeling_rules_testdata.json-modelingruletestdata-/home/runner/work/demisto-sdk/demisto-sdk/demisto_sdk/tests/test_files/modeling_rules.yml]": 0.023961077999956615, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_file_to_format[Packs/some_file.js-javascriptfile]": 0.02429410100057794, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_file_to_format[Packs/some_file.ps1-powershellfile]": 0.024913178000133485, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_file_to_format[Packs/some_file.py-pythonfile]": 0.025183664000451245, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_file_to_format[Packs/some_file.xif-xiffile]": 0.02767399799949999, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_file_to_format_parsing_rules[Packs/PackName/ParsingRules/Name/some_file.xif-modelingrulexif]": 0.02638621999994939, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_file_to_format_with_old_path[Packs/some_file.js-Packs/old_file_path.js-javascriptfile]": 0.02433076700026504, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_file_to_format_with_old_path[Packs/some_file.ps1-Packs/old_file_path.ps1-powershellfile]": 0.024152897999556444, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_file_to_format_with_old_path[Packs/some_file.py-Packs/old_file_path.py-pythonfile]": 0.024160121000022627, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignore_test_file[Packs/some_file.Tests.ps1-powershellfile]": 0.023044536000270455, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignore_test_file[Packs/some_test.js-javascriptfile]": 0.024759338999956526, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignore_test_file[Packs/some_test.py-pythonfile]": 0.02355018000025666, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_files[Packs/pack_id/Integrations/integration_id/.vulture_whitelist.py]": 0.01796692300013092, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_files[Packs/pack_id/Integrations/integration_id/command_examples]": 0.01827966800010472, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_files[Packs/pack_id/Integrations/integration_id/test_data/file.json]": 0.03773232999992615, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_files[Packs/pack_id/Scripts/script_id/test_data/file.json]": 0.023844309000651265, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_files[Packs/pack_id/TestPlaybooks/test_data/file.json]": 0.023671488000218233, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_files[Packs/pack_id/test_data/file.json]": 0.02317391799942925, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_git_and_circle_files[.circleci/ci/check.yml]": 0.017883589000120992, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_git_and_circle_files[.github/ci/check.yml]": 0.01783474599960755, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_git_and_circle_files[.gitlab/ci/check.yml]": 0.018118909999884636, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_non_pack_files[OtherDir/Integration/file.json]": 0.022610564000842714, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_non_pack_files[TestData/file.json]": 0.02283226999998078, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_non_pack_files[TestPlaybooks/file.yml]": 0.02276673399956053, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_non_pack_files[docs/dbot/README.md]": 0.017726884999774484, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_non_formatted_relevant_file": 0.025032903000465012, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_old_format_file": 0.02380674000005456, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_type_missing_file": 0.024067597000339447, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore[modified_files0-[file:test.yml]\\nignore=BA108,BA109\\n-[file:test.yml]\\nignore=BA108,BA109,DS107\\n--expected_results0]": 0.01389458099993135, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore[modified_files1-[file:test.yml]\\nignore=BA108,BA109,DS107\\n-[file:test.yml]\\nignore=BA108,BA109,DS107\\n--expected_results1]": 0.016483485999742697, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore[modified_files2-[file:test.yml]\\nignore=BA108,BA109,DS107\\n-[file:test2.yml]\\nignore=BA108,BA109,DS107\\n--expected_results2]": 0.012153247999776795, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore[modified_files3-[file:test.yml]\\nignore=BA108\\n---expected_results3]": 0.011871078999774909, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore[modified_files4-[file:test.yml]\\nignore=BA108,BA109,DS107\\n[file:test2.yml]\\nignore=BA108,BA109,DS107\\n-remote_file_content4-[file:test.yml]\\nignore=BA108,BA109,DS107\\n-expected_results4]": 0.012854297000103543, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore[modified_files5-[file:test.yml]\\nignore=BA108\\n-\\n\\n--expected_results5]": 0.016137007999532216, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore[modified_files6-[file:test.yml]\\nignore=BA108\\n- --expected_results6]": 0.012067908000062744, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore[modified_files7-[file:test.yml]\\nignore=BA108\\n- \\n \\n --expected_results7]": 0.012598558000263438, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore_with_git_error": 0.01229951000004803, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_packs_that_should_have_version_raised": 0.12564756199981275, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_image_error": 0.014111711000168725, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_is_mapping_fields_command_exist": 0.1860278730000573, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -False]": 0.07973180999988472, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -True]": 0.08442829400019036, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -False]": 0.07844487399961508, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -True]": 0.078647737999745, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[-False]": 0.08023371499984933, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[-True]": 0.08483642700002747, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\n-False]": 0.07893095100007486, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\n-True]": 0.07925972900011402, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\t-False]": 0.07918234500039034, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\t-True]": 0.08475508699984857, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_both_selected_and_all_feeds_in_job": 0.07709679000026881, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[-False]": 0.07872150799994415, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[-True]": 0.0839920099997471, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[6.4.9-False]": 0.07833131800043702, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[6.4.9-True]": 0.07799787400017522, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_missing_name[False]": 0.07818399600046178, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_missing_name[True]": 0.08002947500017399, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_non_feed_with_selected_feeds": 0.07854711099980705, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_sanity[False]": 0.07828427999993437, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_sanity[True]": 0.07900019700036864, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[False-selected_feeds2]": 0.07788745499919969, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-None]": 0.07841553400021439, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-selected_feeds0]": 0.08442168300007324, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-selected_feeds3]": 0.07706240099923889, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_mapping_fields_command_dont_exist": 0.23384189999978844, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_quiet_bc_flag": 0.020089101000394294, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_on_metadata_with_invalid_tags[pack_metadata_info0]": 0.04645949100040525, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_on_only_metadata_changed[pack_metadata0]": 0.04211486399981368, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_validation_calls[modified_files0-added_files0-changed_meta_files0-old_format_files0-deleted_files0]": 0.02471663099959187, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_validation_calls[modified_files1-added_files1-changed_meta_files1-old_format_files1-deleted_files1]": 0.022202629999810597, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_validation_calls[modified_files2-added_files2-changed_meta_files2-old_format_files2-deleted_files2]": 0.021452226000292285, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_validation_calls[modified_files3-added_files3-changed_meta_files3-old_format_files3-deleted_files3]": 0.023575526000058744, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_validation_calls[modified_files4-added_files4-changed_meta_files4-old_format_files4-deleted_files4]": 0.021353805000671855, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_should_raise_pack_version[NonSupported-False]": 0.021340248999877076, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_should_raise_pack_version[PackName1-True]": 0.018389533999652485, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_skip_conf_json": 0.037037900000086665, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_contributors_file": 0.012411188000442053, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set0--[BA115]-False-added_files0]": 0.19103353300033632, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set1---True-added_files1]": 0.020543075999739813, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set2---True-added_files2]": 0.26528068900006474, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set3---True-added_files3]": 0.026376668000011705, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set4---True-added_files4]": 0.026163354999425792, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set5--[BA115]-False-added_files5]": 0.02115506199970696, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_no_disallowed_terms_in_customer_facing_docs_end_to_end": 0.05715262800003984, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_no_disallowed_terms_in_customer_facing_docs_failure[This is an example with the 'Test-Module' term within it]": 0.0007642590007890249, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_no_disallowed_terms_in_customer_facing_docs_failure[This is an example with the 'test-module' term within it.]": 0.0008406230003856763, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_no_disallowed_terms_in_customer_facing_docs_success": 0.0004873910002061166, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_pack_name": 0.022422000000005937, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_using_git_on_changed_marketplaces": 0.5829922229995645, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_was_file_renamed_but_labeled_as_deleted": 0.001454330000342452, + "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run0-sub_classes0-expected_results0]": 0.002181640999879164, + "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run1-sub_classes1-expected_results1]": 0.0019130559999211982, + "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run2-sub_classes2-expected_results2]": 0.005099717000121018, + "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run3-sub_classes3-expected_results3]": 0.0020273009999982605, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-False-config_file_content2-expected_results2-False]": 0.0013233459994808072, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content0-expected_results0-False]": 0.0013564959995164827, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content3-expected_results3-False]": 0.0015165670001806575, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content4-expected_results4-True]": 0.0013313099998413236, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[custom_category-True-config_file_content1-expected_results1-False]": 0.0012913450000269222, + "demisto_sdk/commands/validate/tests/validators_test.py::test_post_results[only_throw_warnings0-results0-0-1-0-expected_error_code_in_warnings0-expected_error_code_in_errors0]": 0.002718723000270984, + "demisto_sdk/commands/validate/tests/validators_test.py::test_post_results[only_throw_warnings1-results1-1-0-1-expected_error_code_in_warnings1-expected_error_code_in_errors1]": 0.001959094000085315, + "demisto_sdk/commands/validate/tests/validators_test.py::test_post_results[only_throw_warnings2-results2-1-1-1-expected_error_code_in_warnings2-expected_error_code_in_errors2]": 0.0021619529993586184, + "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator0-True]": 0.001246310999704292, + "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator1-False]": 0.0007590089994664595, + "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator2-False]": 0.0007901489998403122, + "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results0-fixing_results0-expected_results0]": 0.000982798999757506, + "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results1-fixing_results1-expected_results1]": 0.0008563809997212957, + "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results2-fixing_results2-expected_results2]": 0.0008606900000813766, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_invalid_pack_name": 0.005054971999470581, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_not_exist_destination": 0.23778997099998378, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_packs[False-uploadable_packs/TestPack.zip]": 0.24082858200017654, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_packs[True-uploadable_packs.zip]": 0.24083912399964902, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_with_upload": 0.24601683199989566, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zipped_packs": 0.23933609100004105, + "demisto_sdk/tests/conf_file_test.py::test_conf_file_custom": 0.33872320999989824, + "demisto_sdk/tests/update_additional_dependencies_test.py::test_in_external_repo": 0.0017968000001928885, + "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[init_pack]": 51.118870760999926, + "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[modify_entity]": 25.245112233999407, + "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[rename_incident_field]": 10.45003525500033, + "demisto_sdk/utils/circle-ci/circle_ci_slack_notifier_test.py::test_slack_notifier_on_failed_circle_ci_jobs": 0.184456690999923 +} diff --git a/demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py b/demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py index 567587d60e..d4bab1d48d 100644 --- a/demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py +++ b/demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py @@ -31,11 +31,10 @@ SecretIgnore, Widget, ) +from demisto_sdk.commands.common.logger import logger from demisto_sdk.commands.common.tools import src_root from TestSuite.test_tools import str_in_call_args_list -logger = logging.getLogger("demisto-sdk") - TEST_DATA = src_root() / "tests" / "test_files" TEST_CONTENT_REPO = TEST_DATA / "content_slim" PACK = TEST_CONTENT_REPO / PACKS_DIR / "Sample01" diff --git a/demisto_sdk/commands/content_graph/parsers/integration_script.py b/demisto_sdk/commands/content_graph/parsers/integration_script.py index c1201cb13b..160c5c9db1 100644 --- a/demisto_sdk/commands/content_graph/parsers/integration_script.py +++ b/demisto_sdk/commands/content_graph/parsers/integration_script.py @@ -60,7 +60,9 @@ def connect_to_api_modules(self) -> None: """Creates IMPORTS relationships with the API modules used in the integration.""" code = self.code if not code: - raise ValueError("Integration code is not available") + raise ValueError( + f"Could not get integration code from {self.object_id} integration lying in folder {self.path.parent}" + ) api_modules = IntegrationScriptUnifier.check_api_module_imports(code).values() for api_module in api_modules: self.add_relationship( diff --git a/demisto_sdk/commands/content_graph/tests/create_content_graph_test.py b/demisto_sdk/commands/content_graph/tests/create_content_graph_test.py index d19f4d4240..09c962ac75 100644 --- a/demisto_sdk/commands/content_graph/tests/create_content_graph_test.py +++ b/demisto_sdk/commands/content_graph/tests/create_content_graph_test.py @@ -60,7 +60,6 @@ def setup_method(mocker, repo: Repo): } }, ) - neo4j_service.stop() @pytest.fixture @@ -1093,17 +1092,6 @@ def test_create_content_graph_empty_repository( create_content_graph(interface) assert not interface.search() - def test_stop_content_graph(self): - """ - Given: - - A running content graph service. - When: - - Running neo4j_service.stop() - Then: - - Make sure no exception is raised. - """ - neo4j_service.stop() - def test_create_content_graph_incident_to_alert_scripts( self, repo: Repo, tmp_path: Path, mocker ): diff --git a/demisto_sdk/commands/content_graph/tests/format_with_graph_test.py b/demisto_sdk/commands/content_graph/tests/format_with_graph_test.py index 1659daee92..3fe694d2b3 100644 --- a/demisto_sdk/commands/content_graph/tests/format_with_graph_test.py +++ b/demisto_sdk/commands/content_graph/tests/format_with_graph_test.py @@ -52,7 +52,6 @@ def setup_method(mocker, repo): } }, ) - neo4j_service.stop() @pytest.fixture diff --git a/demisto_sdk/commands/content_graph/tests/generate_docs_script_test.py b/demisto_sdk/commands/content_graph/tests/generate_docs_script_test.py index 5bfe1f88f3..7329807189 100644 --- a/demisto_sdk/commands/content_graph/tests/generate_docs_script_test.py +++ b/demisto_sdk/commands/content_graph/tests/generate_docs_script_test.py @@ -39,7 +39,6 @@ def setup_method(mocker, repo): bc.CONTENT_PATH = Path(repo.path) mocker.patch.object(neo4j_service, "REPO_PATH", Path(repo.path)) mocker.patch.object(ContentGraphInterface, "repo_path", Path(repo.path)) - neo4j_service.stop() @pytest.fixture diff --git a/demisto_sdk/commands/content_graph/tests/graph_validator_test.py b/demisto_sdk/commands/content_graph/tests/graph_validator_test.py index 6fd7362be8..a7aa000e5e 100644 --- a/demisto_sdk/commands/content_graph/tests/graph_validator_test.py +++ b/demisto_sdk/commands/content_graph/tests/graph_validator_test.py @@ -46,6 +46,7 @@ def setup_method(mocker): bc.CONTENT_PATH = GIT_PATH mocker.patch.object(neo4j_service, "REPO_PATH", GIT_PATH) mocker.patch.object(ContentGraphInterface, "repo_path", GIT_PATH) + mocker.patch.object(ContentGraphInterface, "export_graph", return_value=None) mocker.patch( "demisto_sdk.commands.common.docker_images_metadata.get_remote_file_from_api", return_value={ diff --git a/demisto_sdk/commands/content_graph/tests/pack_metadata_graph_test.py b/demisto_sdk/commands/content_graph/tests/pack_metadata_graph_test.py index e7e4bb954f..8382de6a63 100644 --- a/demisto_sdk/commands/content_graph/tests/pack_metadata_graph_test.py +++ b/demisto_sdk/commands/content_graph/tests/pack_metadata_graph_test.py @@ -31,7 +31,6 @@ def setup_method(mocker, repo: Repo): bc.CONTENT_PATH = Path(repo.path) mocker.patch.object(ContentGraphInterface, "repo_path", Path(repo.path)) mocker.patch.object(neo4j_service, "REPO_PATH", Path(repo.path)) - neo4j_service.stop() @pytest.fixture diff --git a/demisto_sdk/commands/content_graph/tests/prepare_content_graph_test.py b/demisto_sdk/commands/content_graph/tests/prepare_content_graph_test.py index bd0f2ba6f0..e0e5175743 100644 --- a/demisto_sdk/commands/content_graph/tests/prepare_content_graph_test.py +++ b/demisto_sdk/commands/content_graph/tests/prepare_content_graph_test.py @@ -50,7 +50,6 @@ def setup_method(mocker, repo: Repo): } }, ) - neo4j_service.stop() @pytest.fixture diff --git a/demisto_sdk/commands/content_graph/tests/update_content_graph_test.py b/demisto_sdk/commands/content_graph/tests/update_content_graph_test.py index 55bc97026c..9508817dc6 100644 --- a/demisto_sdk/commands/content_graph/tests/update_content_graph_test.py +++ b/demisto_sdk/commands/content_graph/tests/update_content_graph_test.py @@ -58,7 +58,6 @@ def setup_method(mocker): } }, ) - neo4j_service.stop() @pytest.fixture diff --git a/demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py b/demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py index d1e907f5f7..2368d3c6be 100644 --- a/demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py +++ b/demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py @@ -110,9 +110,15 @@ def test_layout_to_incidents_dict(self, tmpdir): result = LayoutBelowSixConverter.layout_to_indicators_or_incidents_dict( layout_converter.pack.incident_types ) - assert result == { - "ExtraHop Detection": ["ExtraHop Detection", "ExtraHop Detection 2"] - } + + try: + assert result == { + "ExtraHop Detection": ["ExtraHop Detection", "ExtraHop Detection 2"] + } + except AssertionError: + assert result == { + "ExtraHop Detection": ["ExtraHop Detection 2", "ExtraHop Detection"] + } def test_layout_to_indicators_dict(self, tmpdir): """ diff --git a/demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py b/demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py index 7ab0368d10..366b9007b7 100644 --- a/demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py +++ b/demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py @@ -223,10 +223,9 @@ def test_with_new_file(self, file_path, default_min_cover, tmpdir, monkeypatch): def test_with_exist_file( self, file_path, current_cover, expected_min_cover, tmpdir, monkeypatch ): - file_path = os.path.relpath(file_path) monkeypatch.chdir(tmpdir) cov_report = CoverageReport() - cov_report._original_summary = {file_path: current_cover} + cov_report._original_summary = {os.path.relpath(file_path): current_cover} assert cov_report.file_min_coverage(file_path) == expected_min_cover data_test_with_custom_epsilon_file = [ @@ -244,10 +243,9 @@ def test_with_exist_file( def test_with_custom_epsilon_file( self, file_path, epsilon, expected_min_cover, tmpdir, monkeypatch ): - file_path = os.path.relpath(file_path) monkeypatch.chdir(tmpdir) cov_report = CoverageReport(allowed_coverage_degradation_percentage=epsilon) - cov_report._original_summary = {file_path: 80.0} + cov_report._original_summary = {os.path.relpath(file_path): 80.0} assert cov_report.file_min_coverage(file_path) == expected_min_cover diff --git a/demisto_sdk/commands/create_id_set/tests/create_id_set_test.py b/demisto_sdk/commands/create_id_set/tests/create_id_set_test.py index d6200b7d69..e9b901772d 100644 --- a/demisto_sdk/commands/create_id_set/tests/create_id_set_test.py +++ b/demisto_sdk/commands/create_id_set/tests/create_id_set_test.py @@ -265,7 +265,7 @@ def test_create_id_set_flow(repo, mocker): assert len(entity_content_in_id_set) == factor * number_of_packs_to_create -def test_create_id_set_flow_xpanse(repo, mocker): +def test_create_id_set_flow_xpanse(repo, monkeypatch): """ Given create-id-set sdk command, content repo that contains xpanse packs. @@ -275,7 +275,7 @@ def test_create_id_set_flow_xpanse(repo, mocker): Make sure the id set is created as expected. """ # Note: if DEMISTO_SDK_ID_SET_REFRESH_INTERVAL is set it can fail the test - mocker.patch.dict(os.environ, {"DEMISTO_SDK_ID_SET_REFRESH_INTERVAL": "-1"}) + monkeypatch.setenv("DEMISTO_SDK_ID_SET_REFRESH_INTERVAL", value="-1") number_of_packs_to_create = 10 repo.setup_content_repo( number_of_packs=number_of_packs_to_create, diff --git a/demisto_sdk/commands/download/tests/downloader_test.py b/demisto_sdk/commands/download/tests/downloader_test.py index 300aaf1d90..d4b71d3c2a 100644 --- a/demisto_sdk/commands/download/tests/downloader_test.py +++ b/demisto_sdk/commands/download/tests/downloader_test.py @@ -13,6 +13,8 @@ from urllib3.response import HTTPResponse from demisto_sdk.commands.common.constants import ( + DEMISTO_BASE_URL, + DEMISTO_KEY, JOBS_DIR, LAYOUTS_DIR, LISTS_DIR, @@ -28,9 +30,15 @@ TESTS_DATA_FOLDER = Path(__file__).parent / "tests_data" TESTS_ENV_FOLDER = Path(__file__).parent / "tests_env" -# Avoid missing environment variables errors -os.environ["DEMISTO_BASE_URL"] = "https://fake-xsoar-server.com" -os.environ["DEMISTO_API_KEY"] = "fake_api_key" + +@pytest.fixture(autouse=True) +def set_env_vars(): + # Avoid missing environment variables errors + os.environ[DEMISTO_BASE_URL] = "https://fake-xsoar-server.com" + os.environ[DEMISTO_KEY] = "fake_api_key" + yield + os.environ.pop(DEMISTO_BASE_URL, None) + os.environ.pop(DEMISTO_KEY, None) def load_test_data(file_name: str, folder: str | None = None) -> dict: diff --git a/poetry.lock b/poetry.lock index 97ce515240..78376394c6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3491,6 +3491,20 @@ files = [ freezegun = ">0.3" pytest = ">=3.0.0" +[[package]] +name = "pytest-github-actions-annotate-failures" +version = "0.2.0" +description = "pytest plugin to annotate failed tests with a workflow command for GitHub Actions" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pytest-github-actions-annotate-failures-0.2.0.tar.gz", hash = "sha256:844ab626d389496e44f960b42f0a72cce29ae06d363426d17ea9ae1b4bef2288"}, + {file = "pytest_github_actions_annotate_failures-0.2.0-py3-none-any.whl", hash = "sha256:8bcef65fed503faaa0524b59cfeccc8995130972dd7b008d64193cc41b9cde85"}, +] + +[package.dependencies] +pytest = ">=4.0.0" + [[package]] name = "pytest-mock" version = "3.10.0" @@ -3508,6 +3522,20 @@ pytest = ">=5.0" [package.extras] dev = ["pre-commit", "pytest-asyncio", "tox"] +[[package]] +name = "pytest-split" +version = "0.8.1" +description = "Pytest plugin which splits the test suite to equally sized sub suites based on test execution time." +optional = false +python-versions = ">=3.7.1,<4.0" +files = [ + {file = "pytest_split-0.8.1-py3-none-any.whl", hash = "sha256:74b110ea091bd147cc1c5f9665a59506e5cedfa66f96a89fb03e4ab447c2c168"}, + {file = "pytest_split-0.8.1.tar.gz", hash = "sha256:2d88bd3dc528689a7a3f58fc12ea165c3aa62e90795e420dfad920afe5612d6d"}, +] + +[package.dependencies] +pytest = ">=5,<8" + [[package]] name = "pytest-subprocess" version = "1.5.0" @@ -5087,4 +5115,4 @@ generate-unit-tests = ["klara"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "dc3f26c54e8c6b1c96ef54d8ee5850731574f66219c6325ce821efd23bc9c9d2" +content-hash = "a39f6752b74e9b3c0dfcd35b6c0411b87ca266403550237610493f6363cf1317" diff --git a/pyproject.toml b/pyproject.toml index 61a93e84ed..d9930f0ba0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -125,6 +125,8 @@ requests-mock = "^1.9.3" black = "^22.10.0" ipykernel = "^6.16.1" ruff = "^0.1.2" +pytest-split = "^0.8.1" +pytest-github-actions-annotate-failures = "^0.2.0" [tool.poetry.extras] build = ["gsutil"]