From 0118125bc834688a2c970c93c2ad1936f69a8e0d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 20 Nov 2023 22:11:24 +0200 Subject: [PATCH 001/204] uts workflow --- .github/workflows/run_unit_tests.yml | 95 ++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 .github/workflows/run_unit_tests.yml diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml new file mode 100644 index 0000000000..b92a9c5900 --- /dev/null +++ b/.github/workflows/run_unit_tests.yml @@ -0,0 +1,95 @@ +name: Run-Unit-Tests + +on: + push: + branches: + - master + pull_request: + branches: + - "**" + +jobs: + tests: + name: Unit Tests / ${{ 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: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Get full Python version + id: full-python-version + run: echo version=$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") >> $GITHUB_OUTPUT + + - name: Bootstrap poetry + run: | + pipx install poetry + - name: Configure poetry + run: poetry config virtualenvs.in-project true + + - name: Set up cache + uses: actions/cache@v3 + id: cache + with: + path: .venv + key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }} + + - name: Ensure cache is healthy + if: steps.cache.outputs.cache-hit == 'true' + run: | + # `timeout` is not available on macOS, so we define a custom function. + [ "$(command -v timeout)" ] || function timeout() { perl -e 'alarm shift; exec @ARGV' "$@"; } + # Using `timeout` is a safeguard against the Poetry command hanging for some reason. + timeout 10s poetry run pip --version || rm -rf .venv + - name: Check lock file + run: poetry lock --check + + - name: Install dependencies + run: poetry install --with github-actions + + - name: Cache node modules + id: cache-npm + uses: actions/cache@v3 + env: + cache-name: cache-node-modules + with: + # npm cache files are stored in `~/.npm` on Linux/macOS + path: ~/.npm + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-build-${{ env.cache-name }}- + ${{ runner.os }}-build- + ${{ runner.os }}- + - if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} + name: List the state of node modules + continue-on-error: true + run: npm list + + - name: Install dependencies + run: npm install + + - name: Run pytest + run: | + source .venv/bin/activate + node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & + node_pid=$! + demisto-sdk start-content-graph + poetry run pytest --cov --splits 5 --group ${{ matrix.group }} -v + - name: Upload coverage + uses: actions/upload-artifact@v2 + with: + name: coverage-${{ matrix.os }}-${{ matrix.python_version }}${{ matrix.group }} + path: .coverage From 3ce90ebc82ddd4adce2fab4e553c32fa03a79f01 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 20 Nov 2023 22:48:53 +0200 Subject: [PATCH 002/204] basic workflow --- .github/workflows/run_unit_tests.yml | 69 +++++++++------------------- 1 file changed, 22 insertions(+), 47 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index b92a9c5900..7f404ea963 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -8,6 +8,11 @@ on: branches: - "**" +concurrency: + group: tests-${{ github.head_ref || github.ref }} + cancel-in-progress: ${{ github.event_name == 'pull_request' }} + + jobs: tests: name: Unit Tests / ${{ matrix.python-version }} (${{ matrix.group }}) @@ -25,68 +30,38 @@ jobs: with: fetch-depth: 0 +# - name: checkout-content-repo +# run: | +# git clone https://github.com/demisto/content.git +# cd content +# git config diff.renameLimit 5000 +# git --no-pager log -1 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Get full Python version - id: full-python-version - run: echo version=$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") >> $GITHUB_OUTPUT - - - name: Bootstrap poetry + - name: Setup Poetry run: | - pipx install poetry - - name: Configure poetry - run: poetry config virtualenvs.in-project true - - - name: Set up cache - uses: actions/cache@v3 - id: cache - with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }} - - - name: Ensure cache is healthy - if: steps.cache.outputs.cache-hit == 'true' - run: | - # `timeout` is not available on macOS, so we define a custom function. - [ "$(command -v timeout)" ] || function timeout() { perl -e 'alarm shift; exec @ARGV' "$@"; } - # Using `timeout` is a safeguard against the Poetry command hanging for some reason. - timeout 10s poetry run pip --version || rm -rf .venv - - name: Check lock file - run: poetry lock --check - - - name: Install dependencies - run: poetry install --with github-actions + sudo curl -sSL https://install.python-poetry.org | python3 - + poetry --version + poetry check --lock + poetry install - - name: Cache node modules - id: cache-npm - uses: actions/cache@v3 - env: - cache-name: cache-node-modules + - name: Set up Node.js + uses: actions/setup-node@v3 with: - # npm cache files are stored in `~/.npm` on Linux/macOS - path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}- - ${{ runner.os }}-build- - ${{ runner.os }}- - - if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} - name: List the state of node modules - continue-on-error: true - run: npm list + node-version: '14' - - name: Install dependencies + - name: Install npm run: npm install - name: Run pytest run: | - source .venv/bin/activate + poetry shell node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - demisto-sdk start-content-graph poetry run pytest --cov --splits 5 --group ${{ matrix.group }} -v - name: Upload coverage uses: actions/upload-artifact@v2 From 49da8bc09fe81b35b4ffb6c041ec44aef1e9f86a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 20 Nov 2023 22:51:12 +0200 Subject: [PATCH 003/204] --no-ansi --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 7f404ea963..a8b9732289 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -59,7 +59,7 @@ jobs: - name: Run pytest run: | - poetry shell + poetry shell --no-ansi node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! poetry run pytest --cov --splits 5 --group ${{ matrix.group }} -v From 333e9c270c21b2e9d79e0e00952b8b12e924421a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 20 Nov 2023 22:53:24 +0200 Subject: [PATCH 004/204] use source --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index a8b9732289..e6c0b3e4d2 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -59,7 +59,7 @@ jobs: - name: Run pytest run: | - poetry shell --no-ansi + source "$(poetry env info --path)/bin/activate" node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! poetry run pytest --cov --splits 5 --group ${{ matrix.group }} -v From 636d45af3c39d45472efc66a886d4c6067cd32ae Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 20 Nov 2023 23:11:37 +0200 Subject: [PATCH 005/204] add pytest-split --- .github/workflows/run_unit_tests.yml | 1 + poetry.lock | 3205 ++++++++++++++------------ pyproject.toml | 2 + 3 files changed, 1789 insertions(+), 1419 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index e6c0b3e4d2..9c923d5407 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -62,6 +62,7 @@ jobs: source "$(poetry env info --path)/bin/activate" node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! + poetry run pytest --store-durations poetry run pytest --cov --splits 5 --group ${{ matrix.group }} -v - name: Upload coverage uses: actions/upload-artifact@v2 diff --git a/poetry.lock b/poetry.lock index 6014915a55..2512e538f3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,117 +1,107 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. [[package]] name = "aiohttp" -version = "3.8.5" +version = "3.9.0" description = "Async http client/server framework (asyncio)" +category = "main" optional = true -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, - {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, - {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, - {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, - {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, - {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, - {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, - {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, - {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, - {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, - {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, - {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, - {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, - {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, - {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, - {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, - {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, - {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, - {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, - {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, - {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, - {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, - {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, - {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, - {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, - {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, - {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"}, + {file = "aiohttp-3.9.0-cp310-cp310-win32.whl", hash = "sha256:2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"}, + {file = "aiohttp-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"}, + {file = "aiohttp-3.9.0-cp311-cp311-win32.whl", hash = "sha256:3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"}, + {file = "aiohttp-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"}, + {file = "aiohttp-3.9.0-cp312-cp312-win32.whl", hash = "sha256:de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"}, + {file = "aiohttp-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"}, + {file = "aiohttp-3.9.0-cp38-cp38-win32.whl", hash = "sha256:a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"}, + {file = "aiohttp-3.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"}, + {file = "aiohttp-3.9.0-cp39-cp39-win32.whl", hash = "sha256:1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"}, + {file = "aiohttp-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"}, + {file = "aiohttp-3.9.0.tar.gz", hash = "sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"}, ] [package.dependencies] aiosignal = ">=1.1.2" -async-timeout = ">=4.0.0a3,<5.0" +async-timeout = {version = ">=4.0,<5.0", markers = "python_version < \"3.11\""} attrs = ">=17.3.0" -charset-normalizer = ">=2.0,<4.0" frozenlist = ">=1.1.1" multidict = ">=4.5,<7.0" yarl = ">=1.0,<2.0" [package.extras] -speedups = ["Brotli", "aiodns", "cchardet"] +speedups = ["Brotli", "aiodns", "brotlicffi"] [[package]] name = "aiosignal" version = "1.3.1" description = "aiosignal: a list of registered asynchronous callbacks" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -126,6 +116,7 @@ frozenlist = ">=1.1.0" name = "appnope" version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" +category = "dev" optional = false python-versions = "*" files = [ @@ -135,13 +126,14 @@ files = [ [[package]] name = "argcomplete" -version = "3.0.8" +version = "3.1.6" description = "Bash tab completion for argparse" +category = "main" optional = true -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "argcomplete-3.0.8-py3-none-any.whl", hash = "sha256:e36fd646839933cbec7941c662ecb65338248667358dd3d968405a4506a60d9b"}, - {file = "argcomplete-3.0.8.tar.gz", hash = "sha256:b9ca96448e14fa459d7450a4ab5a22bbf9cee4ba7adddf03e65c398b5daeea28"}, + {file = "argcomplete-3.1.6-py3-none-any.whl", hash = "sha256:71f4683bc9e6b0be85f2b2c1224c47680f210903e23512cfebfe5a41edfd883a"}, + {file = "argcomplete-3.1.6.tar.gz", hash = "sha256:3b1f07d133332547a53c79437527c00be48cca3807b1d4ca5cab1b26313386a6"}, ] [package.extras] @@ -151,6 +143,7 @@ test = ["coverage", "mypy", "pexpect", "ruff", "wheel"] name = "asgiref" version = "3.5.2" description = "ASGI specs, helper code, and adapters" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -165,6 +158,7 @@ tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] name = "astor" version = "0.8.1" description = "Read/rewrite/write Python ASTs" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -176,6 +170,7 @@ files = [ name = "astroid" version = "2.9.3" description = "An abstract syntax tree for Python with inference support." +category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -191,36 +186,40 @@ wrapt = ">=1.11,<1.14" [[package]] name = "asttokens" -version = "2.2.1" +version = "2.4.1" description = "Annotate AST trees with source code positions" +category = "dev" optional = false python-versions = "*" files = [ - {file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"}, - {file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"}, + {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"}, + {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"}, ] [package.dependencies] -six = "*" +six = ">=1.12.0" [package.extras] -test = ["astroid", "pytest"] +astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"] +test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] [[package]] name = "async-timeout" -version = "4.0.2" +version = "4.0.3" description = "Timeout context manager for asyncio programs" +category = "main" optional = true -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"}, - {file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"}, + {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, + {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, ] [[package]] name = "attrs" version = "23.1.0" description = "Classes Without Boilerplate" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -239,6 +238,7 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte name = "autopep8" version = "1.7.0" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" +category = "main" optional = false python-versions = "*" files = [ @@ -254,6 +254,7 @@ toml = "*" name = "backcall" version = "0.2.0" description = "Specifications for callback functions passed in to an API" +category = "dev" optional = false python-versions = "*" files = [ @@ -265,6 +266,7 @@ files = [ name = "backports-zoneinfo" version = "0.2.1" description = "Backport of the standard library zoneinfo module" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -293,6 +295,7 @@ tzdata = ["tzdata"] name = "bandit" version = "1.7.5" description = "Security oriented static analyser for python code." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -316,6 +319,7 @@ yaml = ["PyYAML"] name = "bcrypt" version = "4.0.1" description = "Modern password hashing for your software and your servers" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -350,6 +354,7 @@ typecheck = ["mypy"] name = "beautifulsoup4" version = "4.12.2" description = "Screen-scraping library" +category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -368,6 +373,7 @@ lxml = ["lxml"] name = "black" version = "22.12.0" description = "The uncompromising code formatter." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -403,6 +409,7 @@ uvloop = ["uvloop (>=0.15.2)"] name = "blinker" version = "1.4" description = "Fast, simple object-to-object and broadcast signaling" +category = "dev" optional = false python-versions = "*" files = [ @@ -413,6 +420,7 @@ files = [ name = "boto" version = "2.49.0" description = "Amazon Web Services Library" +category = "main" optional = true python-versions = "*" files = [ @@ -422,19 +430,21 @@ files = [ [[package]] name = "bracex" -version = "2.3.post1" +version = "2.4" description = "Bash style brace expander." +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "bracex-2.3.post1-py3-none-any.whl", hash = "sha256:351b7f20d56fb9ea91f9b9e9e7664db466eb234188c175fd943f8f755c807e73"}, - {file = "bracex-2.3.post1.tar.gz", hash = "sha256:e7b23fc8b2cd06d3dec0692baabecb249dda94e06a617901ff03a6c56fd71693"}, + {file = "bracex-2.4-py3-none-any.whl", hash = "sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418"}, + {file = "bracex-2.4.tar.gz", hash = "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb"}, ] [[package]] name = "brotli" version = "1.0.9" description = "Python bindings for the Brotli compression library" +category = "dev" optional = false python-versions = "*" files = [ @@ -524,97 +534,88 @@ files = [ [[package]] name = "cachetools" -version = "5.3.0" +version = "5.3.2" description = "Extensible memoizing collections and decorators" +category = "main" optional = false -python-versions = "~=3.7" +python-versions = ">=3.7" files = [ - {file = "cachetools-5.3.0-py3-none-any.whl", hash = "sha256:429e1a1e845c008ea6c85aa35d4b98b65d6a9763eeef3e37e92728a12d1de9d4"}, - {file = "cachetools-5.3.0.tar.gz", hash = "sha256:13dfddc7b8df938c21a940dfa6557ce6e94a2f1cdfa58eb90c805721d58f2c14"}, + {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, + {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, ] [[package]] name = "certifi" -version = "2022.12.7" +version = "2023.11.17" description = "Python package for providing Mozilla's CA Bundle." +category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, - {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, + {file = "certifi-2023.11.17-py3-none-any.whl", hash = "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474"}, + {file = "certifi-2023.11.17.tar.gz", hash = "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1"}, ] [[package]] name = "cffi" -version = "1.15.1" +version = "1.16.0" description = "Foreign Function Interface for Python calling C code." +category = "main" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, - {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, - {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, - {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, - {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, - {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, - {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, - {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, - {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, - {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, - {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, - {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, - {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, - {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, - {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, - {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, - {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, - {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, - {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, + {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, + {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, + {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, + {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, + {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, + {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, + {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, + {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, + {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, + {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, + {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, + {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, + {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, ] [package.dependencies] @@ -622,119 +623,138 @@ pycparser = "*" [[package]] name = "cfgv" -version = "3.3.1" +version = "3.4.0" description = "Validate configuration and produce human readable error messages." +category = "dev" optional = false -python-versions = ">=3.6.1" +python-versions = ">=3.8" files = [ - {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, - {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, + {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, + {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, ] [[package]] name = "chardet" -version = "5.1.0" +version = "5.2.0" description = "Universal encoding detector for Python 3" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "chardet-5.1.0-py3-none-any.whl", hash = "sha256:362777fb014af596ad31334fde1e8c327dfdb076e1960d1694662d46a6917ab9"}, - {file = "chardet-5.1.0.tar.gz", hash = "sha256:0d62712b956bc154f85fb0a266e2a3c5913c2967e00348701b32411d6def31e5"}, + {file = "chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970"}, + {file = "chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7"}, ] [[package]] name = "charset-normalizer" -version = "3.1.0" +version = "3.3.2" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +category = "main" optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, - {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, ] [[package]] name = "click" -version = "8.1.3" +version = "8.1.7" description = "Composable command line interface toolkit" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, - {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, ] [package.dependencies] @@ -744,6 +764,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -755,6 +776,7 @@ files = [ name = "coloredlogs" version = "15.0.1" description = "Colored terminal output for Python's logging module" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -770,27 +792,27 @@ cron = ["capturer (>=2.4)"] [[package]] name = "comm" -version = "0.1.3" +version = "0.2.0" description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "comm-0.1.3-py3-none-any.whl", hash = "sha256:16613c6211e20223f215fc6d3b266a247b6e2641bf4e0a3ad34cb1aff2aa3f37"}, - {file = "comm-0.1.3.tar.gz", hash = "sha256:a61efa9daffcfbe66fd643ba966f846a624e4e6d6767eda9cf6e993aadaab93e"}, + {file = "comm-0.2.0-py3-none-any.whl", hash = "sha256:2da8d9ebb8dd7bfc247adaff99f24dce705638a8042b85cb995066793e391001"}, + {file = "comm-0.2.0.tar.gz", hash = "sha256:a517ea2ca28931c7007a7a99c562a0fa5883cfb48963140cf642c41c948498be"}, ] [package.dependencies] -traitlets = ">=5.3" +traitlets = ">=4" [package.extras] -lint = ["black (>=22.6.0)", "mdformat (>0.7)", "mdformat-gfm (>=0.3.5)", "ruff (>=0.0.156)"] test = ["pytest"] -typing = ["mypy (>=0.990)"] [[package]] name = "commonmark" version = "0.9.1" description = "Python parser for the CommonMark Markdown spec" +category = "main" optional = false python-versions = "*" files = [ @@ -803,13 +825,14 @@ test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"] [[package]] name = "configargparse" -version = "1.5.3" +version = "1.7" description = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." +category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.5" files = [ - {file = "ConfigArgParse-1.5.3-py3-none-any.whl", hash = "sha256:18f6535a2db9f6e02bd5626cc7455eac3e96b9ab3d969d366f9aafd5c5c00fe7"}, - {file = "ConfigArgParse-1.5.3.tar.gz", hash = "sha256:1b0b3cbf664ab59dada57123c81eff3d9737e0d11d8cf79e3d6eb10823f1739f"}, + {file = "ConfigArgParse-1.7-py3-none-any.whl", hash = "sha256:d249da6591465c6c26df64a9f73d2536e743be2f244eb3ebe61114af2f94f86b"}, + {file = "ConfigArgParse-1.7.tar.gz", hash = "sha256:e7067471884de5478c58a511e529f0f9bd1c66bfef1dea90935438d6c23306d1"}, ] [package.extras] @@ -820,6 +843,7 @@ yaml = ["PyYAML"] name = "configparser" version = "5.3.0" description = "Updated configparser from stdlib for earlier Pythons." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -833,62 +857,64 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec [[package]] name = "coverage" -version = "7.2.5" +version = "7.3.2" description = "Code coverage measurement for Python" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "coverage-7.2.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:883123d0bbe1c136f76b56276074b0c79b5817dd4238097ffa64ac67257f4b6c"}, - {file = "coverage-7.2.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d2fbc2a127e857d2f8898aaabcc34c37771bf78a4d5e17d3e1f5c30cd0cbc62a"}, - {file = "coverage-7.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f3671662dc4b422b15776cdca89c041a6349b4864a43aa2350b6b0b03bbcc7f"}, - {file = "coverage-7.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780551e47d62095e088f251f5db428473c26db7829884323e56d9c0c3118791a"}, - {file = "coverage-7.2.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:066b44897c493e0dcbc9e6a6d9f8bbb6607ef82367cf6810d387c09f0cd4fe9a"}, - {file = "coverage-7.2.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b9a4ee55174b04f6af539218f9f8083140f61a46eabcaa4234f3c2a452c4ed11"}, - {file = "coverage-7.2.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:706ec567267c96717ab9363904d846ec009a48d5f832140b6ad08aad3791b1f5"}, - {file = "coverage-7.2.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ae453f655640157d76209f42c62c64c4d4f2c7f97256d3567e3b439bd5c9b06c"}, - {file = "coverage-7.2.5-cp310-cp310-win32.whl", hash = "sha256:f81c9b4bd8aa747d417407a7f6f0b1469a43b36a85748145e144ac4e8d303cb5"}, - {file = "coverage-7.2.5-cp310-cp310-win_amd64.whl", hash = "sha256:dc945064a8783b86fcce9a0a705abd7db2117d95e340df8a4333f00be5efb64c"}, - {file = "coverage-7.2.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:40cc0f91c6cde033da493227797be2826cbf8f388eaa36a0271a97a332bfd7ce"}, - {file = "coverage-7.2.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a66e055254a26c82aead7ff420d9fa8dc2da10c82679ea850d8feebf11074d88"}, - {file = "coverage-7.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c10fbc8a64aa0f3ed136b0b086b6b577bc64d67d5581acd7cc129af52654384e"}, - {file = "coverage-7.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a22cbb5ede6fade0482111fa7f01115ff04039795d7092ed0db43522431b4f2"}, - {file = "coverage-7.2.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:292300f76440651529b8ceec283a9370532f4ecba9ad67d120617021bb5ef139"}, - {file = "coverage-7.2.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7ff8f3fb38233035028dbc93715551d81eadc110199e14bbbfa01c5c4a43f8d8"}, - {file = "coverage-7.2.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:a08c7401d0b24e8c2982f4e307124b671c6736d40d1c39e09d7a8687bddf83ed"}, - {file = "coverage-7.2.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ef9659d1cda9ce9ac9585c045aaa1e59223b143f2407db0eaee0b61a4f266fb6"}, - {file = "coverage-7.2.5-cp311-cp311-win32.whl", hash = "sha256:30dcaf05adfa69c2a7b9f7dfd9f60bc8e36b282d7ed25c308ef9e114de7fc23b"}, - {file = "coverage-7.2.5-cp311-cp311-win_amd64.whl", hash = "sha256:97072cc90f1009386c8a5b7de9d4fc1a9f91ba5ef2146c55c1f005e7b5c5e068"}, - {file = "coverage-7.2.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:bebea5f5ed41f618797ce3ffb4606c64a5de92e9c3f26d26c2e0aae292f015c1"}, - {file = "coverage-7.2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828189fcdda99aae0d6bf718ea766b2e715eabc1868670a0a07bf8404bf58c33"}, - {file = "coverage-7.2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e8a95f243d01ba572341c52f89f3acb98a3b6d1d5d830efba86033dd3687ade"}, - {file = "coverage-7.2.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8834e5f17d89e05697c3c043d3e58a8b19682bf365048837383abfe39adaed5"}, - {file = "coverage-7.2.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d1f25ee9de21a39b3a8516f2c5feb8de248f17da7eead089c2e04aa097936b47"}, - {file = "coverage-7.2.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1637253b11a18f453e34013c665d8bf15904c9e3c44fbda34c643fbdc9d452cd"}, - {file = "coverage-7.2.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8e575a59315a91ccd00c7757127f6b2488c2f914096077c745c2f1ba5b8c0969"}, - {file = "coverage-7.2.5-cp37-cp37m-win32.whl", hash = "sha256:509ecd8334c380000d259dc66feb191dd0a93b21f2453faa75f7f9cdcefc0718"}, - {file = "coverage-7.2.5-cp37-cp37m-win_amd64.whl", hash = "sha256:12580845917b1e59f8a1c2ffa6af6d0908cb39220f3019e36c110c943dc875b0"}, - {file = "coverage-7.2.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b5016e331b75310610c2cf955d9f58a9749943ed5f7b8cfc0bb89c6134ab0a84"}, - {file = "coverage-7.2.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:373ea34dca98f2fdb3e5cb33d83b6d801007a8074f992b80311fc589d3e6b790"}, - {file = "coverage-7.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a063aad9f7b4c9f9da7b2550eae0a582ffc7623dca1c925e50c3fbde7a579771"}, - {file = "coverage-7.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38c0a497a000d50491055805313ed83ddba069353d102ece8aef5d11b5faf045"}, - {file = "coverage-7.2.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2b3b05e22a77bb0ae1a3125126a4e08535961c946b62f30985535ed40e26614"}, - {file = "coverage-7.2.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0342a28617e63ad15d96dca0f7ae9479a37b7d8a295f749c14f3436ea59fdcb3"}, - {file = "coverage-7.2.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:cf97ed82ca986e5c637ea286ba2793c85325b30f869bf64d3009ccc1a31ae3fd"}, - {file = "coverage-7.2.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c2c41c1b1866b670573657d584de413df701f482574bad7e28214a2362cb1fd1"}, - {file = "coverage-7.2.5-cp38-cp38-win32.whl", hash = "sha256:10b15394c13544fce02382360cab54e51a9e0fd1bd61ae9ce012c0d1e103c813"}, - {file = "coverage-7.2.5-cp38-cp38-win_amd64.whl", hash = "sha256:a0b273fe6dc655b110e8dc89b8ec7f1a778d78c9fd9b4bda7c384c8906072212"}, - {file = "coverage-7.2.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5c587f52c81211d4530fa6857884d37f514bcf9453bdeee0ff93eaaf906a5c1b"}, - {file = "coverage-7.2.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4436cc9ba5414c2c998eaedee5343f49c02ca93b21769c5fdfa4f9d799e84200"}, - {file = "coverage-7.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6599bf92f33ab041e36e06d25890afbdf12078aacfe1f1d08c713906e49a3fe5"}, - {file = "coverage-7.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:857abe2fa6a4973f8663e039ead8d22215d31db613ace76e4a98f52ec919068e"}, - {file = "coverage-7.2.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6f5cab2d7f0c12f8187a376cc6582c477d2df91d63f75341307fcdcb5d60303"}, - {file = "coverage-7.2.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:aa387bd7489f3e1787ff82068b295bcaafbf6f79c3dad3cbc82ef88ce3f48ad3"}, - {file = "coverage-7.2.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:156192e5fd3dbbcb11cd777cc469cf010a294f4c736a2b2c891c77618cb1379a"}, - {file = "coverage-7.2.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bd3b4b8175c1db502adf209d06136c000df4d245105c8839e9d0be71c94aefe1"}, - {file = "coverage-7.2.5-cp39-cp39-win32.whl", hash = "sha256:ddc5a54edb653e9e215f75de377354e2455376f416c4378e1d43b08ec50acc31"}, - {file = "coverage-7.2.5-cp39-cp39-win_amd64.whl", hash = "sha256:338aa9d9883aaaad53695cb14ccdeb36d4060485bb9388446330bef9c361c252"}, - {file = "coverage-7.2.5-pp37.pp38.pp39-none-any.whl", hash = "sha256:8877d9b437b35a85c18e3c6499b23674684bf690f5d96c1006a1ef61f9fdf0f3"}, - {file = "coverage-7.2.5.tar.gz", hash = "sha256:f99ef080288f09ffc687423b8d60978cf3a465d3f404a18d1a05474bd8575a47"}, + {file = "coverage-7.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d872145f3a3231a5f20fd48500274d7df222e291d90baa2026cc5152b7ce86bf"}, + {file = "coverage-7.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:310b3bb9c91ea66d59c53fa4989f57d2436e08f18fb2f421a1b0b6b8cc7fffda"}, + {file = "coverage-7.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f47d39359e2c3779c5331fc740cf4bce6d9d680a7b4b4ead97056a0ae07cb49a"}, + {file = "coverage-7.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aa72dbaf2c2068404b9870d93436e6d23addd8bbe9295f49cbca83f6e278179c"}, + {file = "coverage-7.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:beaa5c1b4777f03fc63dfd2a6bd820f73f036bfb10e925fce067b00a340d0f3f"}, + {file = "coverage-7.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:dbc1b46b92186cc8074fee9d9fbb97a9dd06c6cbbef391c2f59d80eabdf0faa6"}, + {file = "coverage-7.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:315a989e861031334d7bee1f9113c8770472db2ac484e5b8c3173428360a9148"}, + {file = "coverage-7.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d1bc430677773397f64a5c88cb522ea43175ff16f8bfcc89d467d974cb2274f9"}, + {file = "coverage-7.3.2-cp310-cp310-win32.whl", hash = "sha256:a889ae02f43aa45032afe364c8ae84ad3c54828c2faa44f3bfcafecb5c96b02f"}, + {file = "coverage-7.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:c0ba320de3fb8c6ec16e0be17ee1d3d69adcda99406c43c0409cb5c41788a611"}, + {file = "coverage-7.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ac8c802fa29843a72d32ec56d0ca792ad15a302b28ca6203389afe21f8fa062c"}, + {file = "coverage-7.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:89a937174104339e3a3ffcf9f446c00e3a806c28b1841c63edb2b369310fd074"}, + {file = "coverage-7.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e267e9e2b574a176ddb983399dec325a80dbe161f1a32715c780b5d14b5f583a"}, + {file = "coverage-7.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2443cbda35df0d35dcfb9bf8f3c02c57c1d6111169e3c85fc1fcc05e0c9f39a3"}, + {file = "coverage-7.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4175e10cc8dda0265653e8714b3174430b07c1dca8957f4966cbd6c2b1b8065a"}, + {file = "coverage-7.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0cbf38419fb1a347aaf63481c00f0bdc86889d9fbf3f25109cf96c26b403fda1"}, + {file = "coverage-7.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:5c913b556a116b8d5f6ef834038ba983834d887d82187c8f73dec21049abd65c"}, + {file = "coverage-7.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1981f785239e4e39e6444c63a98da3a1db8e971cb9ceb50a945ba6296b43f312"}, + {file = "coverage-7.3.2-cp311-cp311-win32.whl", hash = "sha256:43668cabd5ca8258f5954f27a3aaf78757e6acf13c17604d89648ecc0cc66640"}, + {file = "coverage-7.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10c39c0452bf6e694511c901426d6b5ac005acc0f78ff265dbe36bf81f808a2"}, + {file = "coverage-7.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4cbae1051ab791debecc4a5dcc4a1ff45fc27b91b9aee165c8a27514dd160836"}, + {file = "coverage-7.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12d15ab5833a997716d76f2ac1e4b4d536814fc213c85ca72756c19e5a6b3d63"}, + {file = "coverage-7.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c7bba973ebee5e56fe9251300c00f1579652587a9f4a5ed8404b15a0471f216"}, + {file = "coverage-7.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe494faa90ce6381770746077243231e0b83ff3f17069d748f645617cefe19d4"}, + {file = "coverage-7.3.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6e9589bd04d0461a417562649522575d8752904d35c12907d8c9dfeba588faf"}, + {file = "coverage-7.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d51ac2a26f71da1b57f2dc81d0e108b6ab177e7d30e774db90675467c847bbdf"}, + {file = "coverage-7.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:99b89d9f76070237975b315b3d5f4d6956ae354a4c92ac2388a5695516e47c84"}, + {file = "coverage-7.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fa28e909776dc69efb6ed975a63691bc8172b64ff357e663a1bb06ff3c9b589a"}, + {file = "coverage-7.3.2-cp312-cp312-win32.whl", hash = "sha256:289fe43bf45a575e3ab10b26d7b6f2ddb9ee2dba447499f5401cfb5ecb8196bb"}, + {file = "coverage-7.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:7dbc3ed60e8659bc59b6b304b43ff9c3ed858da2839c78b804973f613d3e92ed"}, + {file = "coverage-7.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f94b734214ea6a36fe16e96a70d941af80ff3bfd716c141300d95ebc85339738"}, + {file = "coverage-7.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:af3d828d2c1cbae52d34bdbb22fcd94d1ce715d95f1a012354a75e5913f1bda2"}, + {file = "coverage-7.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:630b13e3036e13c7adc480ca42fa7afc2a5d938081d28e20903cf7fd687872e2"}, + {file = "coverage-7.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9eacf273e885b02a0273bb3a2170f30e2d53a6d53b72dbe02d6701b5296101c"}, + {file = "coverage-7.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8f17966e861ff97305e0801134e69db33b143bbfb36436efb9cfff6ec7b2fd9"}, + {file = "coverage-7.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b4275802d16882cf9c8b3d057a0839acb07ee9379fa2749eca54efbce1535b82"}, + {file = "coverage-7.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:72c0cfa5250f483181e677ebc97133ea1ab3eb68645e494775deb6a7f6f83901"}, + {file = "coverage-7.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:cb536f0dcd14149425996821a168f6e269d7dcd2c273a8bff8201e79f5104e76"}, + {file = "coverage-7.3.2-cp38-cp38-win32.whl", hash = "sha256:307adb8bd3abe389a471e649038a71b4eb13bfd6b7dd9a129fa856f5c695cf92"}, + {file = "coverage-7.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:88ed2c30a49ea81ea3b7f172e0269c182a44c236eb394718f976239892c0a27a"}, + {file = "coverage-7.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b631c92dfe601adf8f5ebc7fc13ced6bb6e9609b19d9a8cd59fa47c4186ad1ce"}, + {file = "coverage-7.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d3d9df4051c4a7d13036524b66ecf7a7537d14c18a384043f30a303b146164e9"}, + {file = "coverage-7.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f7363d3b6a1119ef05015959ca24a9afc0ea8a02c687fe7e2d557705375c01f"}, + {file = "coverage-7.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2f11cc3c967a09d3695d2a6f03fb3e6236622b93be7a4b5dc09166a861be6d25"}, + {file = "coverage-7.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:149de1d2401ae4655c436a3dced6dd153f4c3309f599c3d4bd97ab172eaf02d9"}, + {file = "coverage-7.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3a4006916aa6fee7cd38db3bfc95aa9c54ebb4ffbfc47c677c8bba949ceba0a6"}, + {file = "coverage-7.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9028a3871280110d6e1aa2df1afd5ef003bab5fb1ef421d6dc748ae1c8ef2ebc"}, + {file = "coverage-7.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9f805d62aec8eb92bab5b61c0f07329275b6f41c97d80e847b03eb894f38d083"}, + {file = "coverage-7.3.2-cp39-cp39-win32.whl", hash = "sha256:d1c88ec1a7ff4ebca0219f5b1ef863451d828cccf889c173e1253aa84b1e07ce"}, + {file = "coverage-7.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b4767da59464bb593c07afceaddea61b154136300881844768037fd5e859353f"}, + {file = "coverage-7.3.2-pp38.pp39.pp310-none-any.whl", hash = "sha256:ae97af89f0fbf373400970c0a21eef5aa941ffeed90aee43650b81f7d7f47637"}, + {file = "coverage-7.3.2.tar.gz", hash = "sha256:be32ad29341b0170e795ca590e1c07e81fc061cb5b10c74ce7203491484404ef"}, ] [package.dependencies] @@ -901,6 +927,7 @@ toml = ["tomli"] name = "crcmod" version = "1.7" description = "CRC Generator" +category = "main" optional = true python-versions = "*" files = [ @@ -911,6 +938,7 @@ files = [ name = "cryptography" version = "36.0.2" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -949,13 +977,14 @@ test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0 [[package]] name = "dateparser" -version = "1.1.8" +version = "1.2.0" description = "Date parsing library designed to parse dates from HTML pages" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "dateparser-1.1.8-py2.py3-none-any.whl", hash = "sha256:070b29b5bbf4b1ec2cd51c96ea040dc68a614de703910a91ad1abba18f9f379f"}, - {file = "dateparser-1.1.8.tar.gz", hash = "sha256:86b8b7517efcc558f085a142cdb7620f0921543fcabdb538c8a4c4001d8178e3"}, + {file = "dateparser-1.2.0-py2.py3-none-any.whl", hash = "sha256:0b21ad96534e562920a0083e97fd45fa959882d4162acc358705144520a35830"}, + {file = "dateparser-1.2.0.tar.gz", hash = "sha256:7975b43a4222283e0ae15be7b4999d08c9a70e2d378ac87385b1ccf2cffbbb30"}, ] [package.dependencies] @@ -971,35 +1000,37 @@ langdetect = ["langdetect"] [[package]] name = "debugpy" -version = "1.6.7" +version = "1.8.0" description = "An implementation of the Debug Adapter Protocol for Python" +category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "debugpy-1.6.7-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:b3e7ac809b991006ad7f857f016fa92014445085711ef111fdc3f74f66144096"}, - {file = "debugpy-1.6.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3876611d114a18aafef6383695dfc3f1217c98a9168c1aaf1a02b01ec7d8d1e"}, - {file = "debugpy-1.6.7-cp310-cp310-win32.whl", hash = "sha256:33edb4afa85c098c24cc361d72ba7c21bb92f501104514d4ffec1fb36e09c01a"}, - {file = "debugpy-1.6.7-cp310-cp310-win_amd64.whl", hash = "sha256:ed6d5413474e209ba50b1a75b2d9eecf64d41e6e4501977991cdc755dc83ab0f"}, - {file = "debugpy-1.6.7-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:38ed626353e7c63f4b11efad659be04c23de2b0d15efff77b60e4740ea685d07"}, - {file = "debugpy-1.6.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:279d64c408c60431c8ee832dfd9ace7c396984fd7341fa3116aee414e7dcd88d"}, - {file = "debugpy-1.6.7-cp37-cp37m-win32.whl", hash = "sha256:dbe04e7568aa69361a5b4c47b4493d5680bfa3a911d1e105fbea1b1f23f3eb45"}, - {file = "debugpy-1.6.7-cp37-cp37m-win_amd64.whl", hash = "sha256:f90a2d4ad9a035cee7331c06a4cf2245e38bd7c89554fe3b616d90ab8aab89cc"}, - {file = "debugpy-1.6.7-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:5224eabbbeddcf1943d4e2821876f3e5d7d383f27390b82da5d9558fd4eb30a9"}, - {file = "debugpy-1.6.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bae1123dff5bfe548ba1683eb972329ba6d646c3a80e6b4c06cd1b1dd0205e9b"}, - {file = "debugpy-1.6.7-cp38-cp38-win32.whl", hash = "sha256:9cd10cf338e0907fdcf9eac9087faa30f150ef5445af5a545d307055141dd7a4"}, - {file = "debugpy-1.6.7-cp38-cp38-win_amd64.whl", hash = "sha256:aaf6da50377ff4056c8ed470da24632b42e4087bc826845daad7af211e00faad"}, - {file = "debugpy-1.6.7-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:0679b7e1e3523bd7d7869447ec67b59728675aadfc038550a63a362b63029d2c"}, - {file = "debugpy-1.6.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de86029696e1b3b4d0d49076b9eba606c226e33ae312a57a46dca14ff370894d"}, - {file = "debugpy-1.6.7-cp39-cp39-win32.whl", hash = "sha256:d71b31117779d9a90b745720c0eab54ae1da76d5b38c8026c654f4a066b0130a"}, - {file = "debugpy-1.6.7-cp39-cp39-win_amd64.whl", hash = "sha256:c0ff93ae90a03b06d85b2c529eca51ab15457868a377c4cc40a23ab0e4e552a3"}, - {file = "debugpy-1.6.7-py2.py3-none-any.whl", hash = "sha256:53f7a456bc50706a0eaabecf2d3ce44c4d5010e46dfc65b6b81a518b42866267"}, - {file = "debugpy-1.6.7.zip", hash = "sha256:c4c2f0810fa25323abfdfa36cbbbb24e5c3b1a42cb762782de64439c575d67f2"}, + {file = "debugpy-1.8.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:7fb95ca78f7ac43393cd0e0f2b6deda438ec7c5e47fa5d38553340897d2fbdfb"}, + {file = "debugpy-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef9ab7df0b9a42ed9c878afd3eaaff471fce3fa73df96022e1f5c9f8f8c87ada"}, + {file = "debugpy-1.8.0-cp310-cp310-win32.whl", hash = "sha256:a8b7a2fd27cd9f3553ac112f356ad4ca93338feadd8910277aff71ab24d8775f"}, + {file = "debugpy-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:5d9de202f5d42e62f932507ee8b21e30d49aae7e46d5b1dd5c908db1d7068637"}, + {file = "debugpy-1.8.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:ef54404365fae8d45cf450d0544ee40cefbcb9cb85ea7afe89a963c27028261e"}, + {file = "debugpy-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60009b132c91951354f54363f8ebdf7457aeb150e84abba5ae251b8e9f29a8a6"}, + {file = "debugpy-1.8.0-cp311-cp311-win32.whl", hash = "sha256:8cd0197141eb9e8a4566794550cfdcdb8b3db0818bdf8c49a8e8f8053e56e38b"}, + {file = "debugpy-1.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:a64093656c4c64dc6a438e11d59369875d200bd5abb8f9b26c1f5f723622e153"}, + {file = "debugpy-1.8.0-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:b05a6b503ed520ad58c8dc682749113d2fd9f41ffd45daec16e558ca884008cd"}, + {file = "debugpy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c6fb41c98ec51dd010d7ed650accfd07a87fe5e93eca9d5f584d0578f28f35f"}, + {file = "debugpy-1.8.0-cp38-cp38-win32.whl", hash = "sha256:46ab6780159eeabb43c1495d9c84cf85d62975e48b6ec21ee10c95767c0590aa"}, + {file = "debugpy-1.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:bdc5ef99d14b9c0fcb35351b4fbfc06ac0ee576aeab6b2511702e5a648a2e595"}, + {file = "debugpy-1.8.0-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:61eab4a4c8b6125d41a34bad4e5fe3d2cc145caecd63c3fe953be4cc53e65bf8"}, + {file = "debugpy-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:125b9a637e013f9faac0a3d6a82bd17c8b5d2c875fb6b7e2772c5aba6d082332"}, + {file = "debugpy-1.8.0-cp39-cp39-win32.whl", hash = "sha256:57161629133113c97b387382045649a2b985a348f0c9366e22217c87b68b73c6"}, + {file = "debugpy-1.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:e3412f9faa9ade82aa64a50b602544efcba848c91384e9f93497a458767e6926"}, + {file = "debugpy-1.8.0-py2.py3-none-any.whl", hash = "sha256:9c9b0ac1ce2a42888199df1a1906e45e6f3c9555497643a85e0bf2406e3ffbc4"}, + {file = "debugpy-1.8.0.zip", hash = "sha256:12af2c55b419521e33d5fb21bd022df0b5eb267c3e178f1d374a63a2a6bdccd0"}, ] [[package]] name = "decorator" version = "5.1.1" description = "Decorators for Humans" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1009,27 +1040,28 @@ files = [ [[package]] name = "demisto-py" -version = "3.2.10" -description = "A Python library for the Demisto API" +version = "3.2.13" +description = "\"A Python library for the Demisto API\"" +category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.8,<3.11" files = [ - {file = "demisto-py-3.2.10.tar.gz", hash = "sha256:ae3ee25afe2fabee1e6120aafbb84615aa583ebe407b54ff10f2747bbdcc6514"}, - {file = "demisto_py-3.2.10-py3-none-any.whl", hash = "sha256:70bd630374fc2c238e5aed1bedebdd8e8105161a62b696fd327ff2ed8893dca3"}, + {file = "demisto_py-3.2.13-py3-none-any.whl", hash = "sha256:46881ed6bb0a0be78aefa81dade55271b18a50b277b03f3127b0a7d7ba0454e4"}, + {file = "demisto_py-3.2.13.tar.gz", hash = "sha256:3cf8779c0a37d57b9c3317abfbd6f2c021980675f294652c70488f24cc162146"}, ] [package.dependencies] certifi = ">=2017.4.17" python-dateutil = ">=2.5.3" -setuptools = ">=21.0.0" six = ">=1.10" -tzlocal = "==4.*" +tzlocal = ">=4.0.0,<5.0.0" urllib3 = ">=1.26.7" [[package]] name = "dictdiffer" version = "0.9.0" description = "Dictdiffer is a library that helps you to diff and patch dictionaries." +category = "main" optional = false python-versions = "*" files = [ @@ -1045,29 +1077,32 @@ tests = ["check-manifest (>=0.42)", "mock (>=1.3.0)", "pytest (==5.4.3)", "pytes [[package]] name = "dictor" -version = "0.1.11" +version = "0.1.12" description = "an elegant dictionary and JSON handler" +category = "main" optional = false python-versions = "*" files = [ - {file = "dictor-0.1.11.tar.gz", hash = "sha256:4a8b1c2226f992d4cef4bad7435ffb5c647f982c8de9345d7cd1dcca25d1636d"}, + {file = "dictor-0.1.12.tar.gz", hash = "sha256:6db48375ae1e53dc9ed844e85b38f4e3fbfbf6a4e60beca377515ad14453b91b"}, ] [[package]] name = "distlib" -version = "0.3.6" +version = "0.3.7" description = "Distribution utilities" +category = "dev" optional = false python-versions = "*" files = [ - {file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"}, - {file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"}, + {file = "distlib-0.3.7-py2.py3-none-any.whl", hash = "sha256:2e24928bc811348f0feb63014e97aaae3037f2cf48712d51ae61df7fd6075057"}, + {file = "distlib-0.3.7.tar.gz", hash = "sha256:9dafe54b34a028eafd95039d5e5d4851a13734540f1331060d31c9916e7147a8"}, ] [[package]] name = "docker" version = "5.0.3" description = "A Python library for the Docker Engine API." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1088,6 +1123,7 @@ tls = ["cryptography (>=3.4.7)", "idna (>=2.0.0)", "pyOpenSSL (>=17.5.0)"] name = "docopt" version = "0.6.2" description = "Pythonic argument parser, that will make you smile" +category = "main" optional = false python-versions = "*" files = [ @@ -1096,13 +1132,14 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.1.1" +version = "1.1.3" description = "Backport of PEP 654 (exception groups)" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, - {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, + {file = "exceptiongroup-1.1.3-py3-none-any.whl", hash = "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3"}, + {file = "exceptiongroup-1.1.3.tar.gz", hash = "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9"}, ] [package.extras] @@ -1110,48 +1147,53 @@ test = ["pytest (>=6)"] [[package]] name = "executing" -version = "1.2.0" +version = "2.0.1" description = "Get the currently executing AST node of a frame, and other information" +category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.5" files = [ - {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, - {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, + {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"}, + {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"}, ] [package.extras] -tests = ["asttokens", "littleutils", "pytest", "rich"] +tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] [[package]] name = "fasteners" -version = "0.18" +version = "0.19" description = "A python package that provides useful locks" +category = "main" optional = true python-versions = ">=3.6" files = [ - {file = "fasteners-0.18-py3-none-any.whl", hash = "sha256:1d4caf5f8db57b0e4107d94fd5a1d02510a450dced6ca77d1839064c1bacf20c"}, - {file = "fasteners-0.18.tar.gz", hash = "sha256:cb7c13ef91e0c7e4fe4af38ecaf6b904ec3f5ce0dda06d34924b6b74b869d953"}, + {file = "fasteners-0.19-py3-none-any.whl", hash = "sha256:758819cb5d94cdedf4e836988b74de396ceacb8e2794d21f82d131fd9ee77237"}, + {file = "fasteners-0.19.tar.gz", hash = "sha256:b4f37c3ac52d8a445af3a66bce57b33b5e90b97c696b7b984f530cf8f0ded09c"}, ] [[package]] name = "filelock" -version = "3.12.0" +version = "3.13.1" description = "A platform independent file lock." +category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "filelock-3.12.0-py3-none-any.whl", hash = "sha256:ad98852315c2ab702aeb628412cbf7e95b7ce8c3bf9565670b4eaecf1db370a9"}, - {file = "filelock-3.12.0.tar.gz", hash = "sha256:fc03ae43288c013d2ea83c8597001b1129db351aad9c57fe2409327916b8e718"}, + {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, + {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, ] [package.extras] -docs = ["furo (>=2023.3.27)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "diff-cover (>=7.5)", "pytest (>=7.3.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)", "pytest-timeout (>=2.1)"] +docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.24)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"] +typing = ["typing-extensions (>=4.8)"] [[package]] name = "flask" version = "2.0.3" description = "A simple framework for building complex web applications." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1173,6 +1215,7 @@ dotenv = ["python-dotenv"] name = "flatten-dict" version = "0.4.2" description = "A flexible utility for flattening and unflattening dict-like objects in Python." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1187,6 +1230,7 @@ six = ">=1.12,<2.0" name = "freezegun" version = "1.2.2" description = "Let your Python tests travel through time" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1199,91 +1243,80 @@ python-dateutil = ">=2.7" [[package]] name = "frozenlist" -version = "1.3.3" +version = "1.4.0" description = "A list-like structure which implements collections.abc.MutableSequence" +category = "main" optional = true -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "frozenlist-1.3.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ff8bf625fe85e119553b5383ba0fb6aa3d0ec2ae980295aaefa552374926b3f4"}, - {file = "frozenlist-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dfbac4c2dfcc082fcf8d942d1e49b6aa0766c19d3358bd86e2000bf0fa4a9cf0"}, - {file = "frozenlist-1.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b1c63e8d377d039ac769cd0926558bb7068a1f7abb0f003e3717ee003ad85530"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fdfc24dcfce5b48109867c13b4cb15e4660e7bd7661741a391f821f23dfdca7"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c926450857408e42f0bbc295e84395722ce74bae69a3b2aa2a65fe22cb14b99"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1841e200fdafc3d51f974d9d377c079a0694a8f06de2e67b48150328d66d5483"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f470c92737afa7d4c3aacc001e335062d582053d4dbe73cda126f2d7031068dd"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:783263a4eaad7c49983fe4b2e7b53fa9770c136c270d2d4bbb6d2192bf4d9caf"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:924620eef691990dfb56dc4709f280f40baee568c794b5c1885800c3ecc69816"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ae4dc05c465a08a866b7a1baf360747078b362e6a6dbeb0c57f234db0ef88ae0"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:bed331fe18f58d844d39ceb398b77d6ac0b010d571cba8267c2e7165806b00ce"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:02c9ac843e3390826a265e331105efeab489ffaf4dd86384595ee8ce6d35ae7f"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9545a33965d0d377b0bc823dcabf26980e77f1b6a7caa368a365a9497fb09420"}, - {file = "frozenlist-1.3.3-cp310-cp310-win32.whl", hash = "sha256:d5cd3ab21acbdb414bb6c31958d7b06b85eeb40f66463c264a9b343a4e238642"}, - {file = "frozenlist-1.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:b756072364347cb6aa5b60f9bc18e94b2f79632de3b0190253ad770c5df17db1"}, - {file = "frozenlist-1.3.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b4395e2f8d83fbe0c627b2b696acce67868793d7d9750e90e39592b3626691b7"}, - {file = "frozenlist-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:14143ae966a6229350021384870458e4777d1eae4c28d1a7aa47f24d030e6678"}, - {file = "frozenlist-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5d8860749e813a6f65bad8285a0520607c9500caa23fea6ee407e63debcdbef6"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23d16d9f477bb55b6154654e0e74557040575d9d19fe78a161bd33d7d76808e8"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb82dbba47a8318e75f679690190c10a5e1f447fbf9df41cbc4c3afd726d88cb"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9309869032abb23d196cb4e4db574232abe8b8be1339026f489eeb34a4acfd91"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a97b4fe50b5890d36300820abd305694cb865ddb7885049587a5678215782a6b"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c188512b43542b1e91cadc3c6c915a82a5eb95929134faf7fd109f14f9892ce4"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:303e04d422e9b911a09ad499b0368dc551e8c3cd15293c99160c7f1f07b59a48"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0771aed7f596c7d73444c847a1c16288937ef988dc04fb9f7be4b2aa91db609d"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:66080ec69883597e4d026f2f71a231a1ee9887835902dbe6b6467d5a89216cf6"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:41fe21dc74ad3a779c3d73a2786bdf622ea81234bdd4faf90b8b03cad0c2c0b4"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f20380df709d91525e4bee04746ba612a4df0972c1b8f8e1e8af997e678c7b81"}, - {file = "frozenlist-1.3.3-cp311-cp311-win32.whl", hash = "sha256:f30f1928162e189091cf4d9da2eac617bfe78ef907a761614ff577ef4edfb3c8"}, - {file = "frozenlist-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:a6394d7dadd3cfe3f4b3b186e54d5d8504d44f2d58dcc89d693698e8b7132b32"}, - {file = "frozenlist-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8df3de3a9ab8325f94f646609a66cbeeede263910c5c0de0101079ad541af332"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0693c609e9742c66ba4870bcee1ad5ff35462d5ffec18710b4ac89337ff16e27"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cd4210baef299717db0a600d7a3cac81d46ef0e007f88c9335db79f8979c0d3d"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:394c9c242113bfb4b9aa36e2b80a05ffa163a30691c7b5a29eba82e937895d5e"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6327eb8e419f7d9c38f333cde41b9ae348bec26d840927332f17e887a8dcb70d"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e24900aa13212e75e5b366cb9065e78bbf3893d4baab6052d1aca10d46d944c"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3843f84a6c465a36559161e6c59dce2f2ac10943040c2fd021cfb70d58c4ad56"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:84610c1502b2461255b4c9b7d5e9c48052601a8957cd0aea6ec7a7a1e1fb9420"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:c21b9aa40e08e4f63a2f92ff3748e6b6c84d717d033c7b3438dd3123ee18f70e"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:efce6ae830831ab6a22b9b4091d411698145cb9b8fc869e1397ccf4b4b6455cb"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:40de71985e9042ca00b7953c4f41eabc3dc514a2d1ff534027f091bc74416401"}, - {file = "frozenlist-1.3.3-cp37-cp37m-win32.whl", hash = "sha256:180c00c66bde6146a860cbb81b54ee0df350d2daf13ca85b275123bbf85de18a"}, - {file = "frozenlist-1.3.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9bbbcedd75acdfecf2159663b87f1bb5cfc80e7cd99f7ddd9d66eb98b14a8411"}, - {file = "frozenlist-1.3.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:034a5c08d36649591be1cbb10e09da9f531034acfe29275fc5454a3b101ce41a"}, - {file = "frozenlist-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ba64dc2b3b7b158c6660d49cdb1d872d1d0bf4e42043ad8d5006099479a194e5"}, - {file = "frozenlist-1.3.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:47df36a9fe24054b950bbc2db630d508cca3aa27ed0566c0baf661225e52c18e"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:008a054b75d77c995ea26629ab3a0c0d7281341f2fa7e1e85fa6153ae29ae99c"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:841ea19b43d438a80b4de62ac6ab21cfe6827bb8a9dc62b896acc88eaf9cecba"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e235688f42b36be2b6b06fc37ac2126a73b75fb8d6bc66dd632aa35286238703"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca713d4af15bae6e5d79b15c10c8522859a9a89d3b361a50b817c98c2fb402a2"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ac5995f2b408017b0be26d4a1d7c61bce106ff3d9e3324374d66b5964325448"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a4ae8135b11652b08a8baf07631d3ebfe65a4c87909dbef5fa0cdde440444ee4"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4ea42116ceb6bb16dbb7d526e242cb6747b08b7710d9782aa3d6732bd8d27649"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:810860bb4bdce7557bc0febb84bbd88198b9dbc2022d8eebe5b3590b2ad6c842"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:ee78feb9d293c323b59a6f2dd441b63339a30edf35abcb51187d2fc26e696d13"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0af2e7c87d35b38732e810befb9d797a99279cbb85374d42ea61c1e9d23094b3"}, - {file = "frozenlist-1.3.3-cp38-cp38-win32.whl", hash = "sha256:899c5e1928eec13fd6f6d8dc51be23f0d09c5281e40d9cf4273d188d9feeaf9b"}, - {file = "frozenlist-1.3.3-cp38-cp38-win_amd64.whl", hash = "sha256:7f44e24fa70f6fbc74aeec3e971f60a14dde85da364aa87f15d1be94ae75aeef"}, - {file = "frozenlist-1.3.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2b07ae0c1edaa0a36339ec6cce700f51b14a3fc6545fdd32930d2c83917332cf"}, - {file = "frozenlist-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ebb86518203e12e96af765ee89034a1dbb0c3c65052d1b0c19bbbd6af8a145e1"}, - {file = "frozenlist-1.3.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5cf820485f1b4c91e0417ea0afd41ce5cf5965011b3c22c400f6d144296ccbc0"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c11e43016b9024240212d2a65043b70ed8dfd3b52678a1271972702d990ac6d"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8fa3c6e3305aa1146b59a09b32b2e04074945ffcfb2f0931836d103a2c38f936"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:352bd4c8c72d508778cf05ab491f6ef36149f4d0cb3c56b1b4302852255d05d5"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65a5e4d3aa679610ac6e3569e865425b23b372277f89b5ef06cf2cdaf1ebf22b"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e2c1185858d7e10ff045c496bbf90ae752c28b365fef2c09cf0fa309291669"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f163d2fd041c630fed01bc48d28c3ed4a3b003c00acd396900e11ee5316b56bb"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:05cdb16d09a0832eedf770cb7bd1fe57d8cf4eaf5aced29c4e41e3f20b30a784"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8bae29d60768bfa8fb92244b74502b18fae55a80eac13c88eb0b496d4268fd2d"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eedab4c310c0299961ac285591acd53dc6723a1ebd90a57207c71f6e0c2153ab"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3bbdf44855ed8f0fbcd102ef05ec3012d6a4fd7c7562403f76ce6a52aeffb2b1"}, - {file = "frozenlist-1.3.3-cp39-cp39-win32.whl", hash = "sha256:efa568b885bca461f7c7b9e032655c0c143d305bf01c30caf6db2854a4532b38"}, - {file = "frozenlist-1.3.3-cp39-cp39-win_amd64.whl", hash = "sha256:cfe33efc9cb900a4c46f91a5ceba26d6df370ffddd9ca386eb1d4f0ad97b9ea9"}, - {file = "frozenlist-1.3.3.tar.gz", hash = "sha256:58bcc55721e8a90b88332d6cd441261ebb22342e238296bb330968952fbb3a6a"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, ] [[package]] name = "future" version = "0.18.3" description = "Clean single-source support for Python 3 and 2" +category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1294,6 +1327,7 @@ files = [ name = "gcs-oauth2-boto-plugin" version = "3.0" description = "Auth plugin allowing use the use of OAuth 2.0 credentials for Google Cloud Storage in the Boto library." +category = "main" optional = true python-versions = "*" files = [ @@ -1315,13 +1349,14 @@ dev = ["freezegun", "mock"] [[package]] name = "gitdb" -version = "4.0.10" +version = "4.0.11" description = "Git Object Database" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "gitdb-4.0.10-py3-none-any.whl", hash = "sha256:c286cf298426064079ed96a9e4a9d39e7f3e9bf15ba60701e95f5492f28415c7"}, - {file = "gitdb-4.0.10.tar.gz", hash = "sha256:6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"}, + {file = "gitdb-4.0.11-py3-none-any.whl", hash = "sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4"}, + {file = "gitdb-4.0.11.tar.gz", hash = "sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b"}, ] [package.dependencies] @@ -1329,25 +1364,27 @@ smmap = ">=3.0.1,<6" [[package]] name = "gitpython" -version = "3.1.37" +version = "3.1.40" description = "GitPython is a Python library used to interact with Git repositories" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "GitPython-3.1.37-py3-none-any.whl", hash = "sha256:5f4c4187de49616d710a77e98ddf17b4782060a1788df441846bddefbb89ab33"}, - {file = "GitPython-3.1.37.tar.gz", hash = "sha256:f9b9ddc0761c125d5780eab2d64be4873fc6817c2899cbcb34b02344bdc7bc54"}, + {file = "GitPython-3.1.40-py3-none-any.whl", hash = "sha256:cf14627d5a8049ffbf49915732e5eddbe8134c3bdb9d476e6182b676fc573f8a"}, + {file = "GitPython-3.1.40.tar.gz", hash = "sha256:22b126e9ffb671fdd0c129796343a02bf67bf2994b35449ffc9321aa755e18a4"}, ] [package.dependencies] gitdb = ">=4.0.1,<5" [package.extras] -test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-sugar"] +test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-instafail", "pytest-subtests", "pytest-sugar"] [[package]] name = "giturlparse" version = "0.10.0" description = "A Git URL parsing module (supports parsing and rewriting)" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1357,32 +1394,34 @@ files = [ [[package]] name = "google-api-core" -version = "2.11.0" +version = "2.14.0" description = "Google API client core library" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "google-api-core-2.11.0.tar.gz", hash = "sha256:4b9bb5d5a380a0befa0573b302651b8a9a89262c1730e37bf423cec511804c22"}, - {file = "google_api_core-2.11.0-py3-none-any.whl", hash = "sha256:ce222e27b0de0d7bc63eb043b956996d6dccab14cc3b690aaea91c9cc99dc16e"}, + {file = "google-api-core-2.14.0.tar.gz", hash = "sha256:5368a4502b793d9bbf812a5912e13e4e69f9bd87f6efb508460c43f5bbd1ce41"}, + {file = "google_api_core-2.14.0-py3-none-any.whl", hash = "sha256:de2fb50ed34d47ddbb2bd2dcf680ee8fead46279f4ed6b16de362aca23a18952"}, ] [package.dependencies] -google-auth = ">=2.14.1,<3.0dev" -googleapis-common-protos = ">=1.56.2,<2.0dev" +google-auth = ">=2.14.1,<3.0.dev0" +googleapis-common-protos = ">=1.56.2,<2.0.dev0" grpcio = {version = ">=1.33.2,<2.0dev", optional = true, markers = "extra == \"grpc\""} -grpcio-status = {version = ">=1.33.2,<2.0dev", optional = true, markers = "extra == \"grpc\""} -protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" -requests = ">=2.18.0,<3.0.0dev" +grpcio-status = {version = ">=1.33.2,<2.0.dev0", optional = true, markers = "extra == \"grpc\""} +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" +requests = ">=2.18.0,<3.0.0.dev0" [package.extras] -grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0dev)", "grpcio-status (>=1.49.1,<2.0dev)"] -grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] -grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] +grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] +grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] [[package]] name = "google-apitools" version = "0.5.32" description = "client libraries for humans" +category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1404,6 +1443,7 @@ testing = ["mock (>=1.0.1)"] name = "google-auth" version = "2.23.4" description = "Google Authentication Library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1427,17 +1467,18 @@ requests = ["requests (>=2.20.0,<3.0.0.dev0)"] [[package]] name = "google-cloud-core" -version = "2.3.2" +version = "2.3.3" description = "Google Cloud API client core library" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "google-cloud-core-2.3.2.tar.gz", hash = "sha256:b9529ee7047fd8d4bf4a2182de619154240df17fbe60ead399078c1ae152af9a"}, - {file = "google_cloud_core-2.3.2-py2.py3-none-any.whl", hash = "sha256:8417acf6466be2fa85123441696c4badda48db314c607cf1e5d543fa8bdc22fe"}, + {file = "google-cloud-core-2.3.3.tar.gz", hash = "sha256:37b80273c8d7eee1ae816b3a20ae43585ea50506cb0e60f3cf5be5f87f1373cb"}, + {file = "google_cloud_core-2.3.3-py2.py3-none-any.whl", hash = "sha256:fbd11cad3e98a7e5b0343dc07cb1039a5ffd7a5bb96e1f1e27cee4bda4a90863"}, ] [package.dependencies] -google-api-core = ">=1.31.6,<2.0.dev0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev" google-auth = ">=1.25.0,<3.0dev" [package.extras] @@ -1447,6 +1488,7 @@ grpc = ["grpcio (>=1.38.0,<2.0dev)"] name = "google-cloud-secret-manager" version = "2.16.4" description = "Google Cloud Secret Manager API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1455,7 +1497,7 @@ files = [ ] [package.dependencies] -google-api-core = {version = ">=1.34.0,<2.0.dev0 || >=2.11.dev0,<3.0.0dev", extras = ["grpc"]} +google-api-core = {version = ">=1.34.0,<2.0.0 || >=2.11.0,<3.0.0dev", extras = ["grpc"]} grpc-google-iam-v1 = ">=0.12.4,<1.0.0dev" proto-plus = ">=1.22.0,<2.0.0dev" protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" @@ -1464,6 +1506,7 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4 name = "google-cloud-storage" version = "2.13.0" description = "Google Cloud Storage API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1472,7 +1515,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev" google-auth = ">=2.23.3,<3.0dev" google-cloud-core = ">=2.3.0,<3.0dev" google-crc32c = ">=1.0,<2.0dev" @@ -1486,6 +1529,7 @@ protobuf = ["protobuf (<5.0.0dev)"] name = "google-crc32c" version = "1.5.0" description = "A python wrapper of the C library 'Google CRC32C'" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1566,6 +1610,7 @@ testing = ["pytest"] name = "google-reauth" version = "0.1.1" description = "Google Reauth Library" +category = "main" optional = true python-versions = "*" files = [ @@ -1583,6 +1628,7 @@ oauth2client = ["oauth2client (>=2.0.0)"] name = "google-resumable-media" version = "2.6.0" description = "Utilities for Google Media Downloads and Resumable Uploads" +category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -1599,26 +1645,28 @@ requests = ["requests (>=2.18.0,<3.0.0dev)"] [[package]] name = "googleapis-common-protos" -version = "1.59.0" +version = "1.61.0" description = "Common protobufs used in Google APIs" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "googleapis-common-protos-1.59.0.tar.gz", hash = "sha256:4168fcb568a826a52f23510412da405abd93f4d23ba544bb68d943b14ba3cb44"}, - {file = "googleapis_common_protos-1.59.0-py2.py3-none-any.whl", hash = "sha256:b287dc48449d1d41af0c69f4ea26242b5ae4c3d7249a38b0984c86a4caffff1f"}, + {file = "googleapis-common-protos-1.61.0.tar.gz", hash = "sha256:8a64866a97f6304a7179873a465d6eee97b7a24ec6cfd78e0f575e96b821240b"}, + {file = "googleapis_common_protos-1.61.0-py2.py3-none-any.whl", hash = "sha256:22f1915393bb3245343f6efe87f6fe868532efc12aa26b391b15132e1279f1c0"}, ] [package.dependencies] -grpcio = {version = ">=1.44.0,<2.0.0dev", optional = true, markers = "extra == \"grpc\""} -protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" +grpcio = {version = ">=1.44.0,<2.0.0.dev0", optional = true, markers = "extra == \"grpc\""} +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" [package.extras] -grpc = ["grpcio (>=1.44.0,<2.0.0dev)"] +grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "grpc-google-iam-v1" version = "0.12.7" description = "IAM API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1633,74 +1681,76 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4 [[package]] name = "grpcio" -version = "1.59.2" +version = "1.59.3" description = "HTTP/2-based RPC framework" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "grpcio-1.59.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:d2fa68a96a30dd240be80bbad838a0ac81a61770611ff7952b889485970c4c71"}, - {file = "grpcio-1.59.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:cf0dead5a2c5a3347af2cfec7131d4f2a2e03c934af28989c9078f8241a491fa"}, - {file = "grpcio-1.59.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:e420ced29b5904cdf9ee5545e23f9406189d8acb6750916c2db4793dada065c6"}, - {file = "grpcio-1.59.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b230028a008ae1d0f430acb227d323ff8a619017415cf334c38b457f814119f"}, - {file = "grpcio-1.59.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a4a3833c0e067f3558538727235cd8a49709bff1003200bbdefa2f09334e4b1"}, - {file = "grpcio-1.59.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6b25ed37c27e652db01be341af93fbcea03d296c024d8a0e680017a268eb85dd"}, - {file = "grpcio-1.59.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:73abb8584b0cf74d37f5ef61c10722adc7275502ab71789a8fe3cb7ef04cf6e2"}, - {file = "grpcio-1.59.2-cp310-cp310-win32.whl", hash = "sha256:d6f70406695e3220f09cd7a2f879333279d91aa4a8a1d34303b56d61a8180137"}, - {file = "grpcio-1.59.2-cp310-cp310-win_amd64.whl", hash = "sha256:3c61d641d4f409c5ae46bfdd89ea42ce5ea233dcf69e74ce9ba32b503c727e29"}, - {file = "grpcio-1.59.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:3059668df17627f0e0fa680e9ef8c995c946c792612e9518f5cc1503be14e90b"}, - {file = "grpcio-1.59.2-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:72ca2399097c0b758198f2ff30f7178d680de8a5cfcf3d9b73a63cf87455532e"}, - {file = "grpcio-1.59.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c978f864b35f2261e0819f5cd88b9830b04dc51bcf055aac3c601e525a10d2ba"}, - {file = "grpcio-1.59.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9411e24328a2302e279e70cae6e479f1fddde79629fcb14e03e6d94b3956eabf"}, - {file = "grpcio-1.59.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb7e0fe6ad73b7f06d7e2b689c19a71cf5cc48f0c2bf8608469e51ffe0bd2867"}, - {file = "grpcio-1.59.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c2504eed520958a5b77cc99458297cb7906308cb92327f35fb7fbbad4e9b2188"}, - {file = "grpcio-1.59.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2171c39f355ba5b551c5d5928d65aa6c69807fae195b86ef4a7d125bcdb860a9"}, - {file = "grpcio-1.59.2-cp311-cp311-win32.whl", hash = "sha256:d2794f0e68b3085d99b4f6ff9c089f6fdd02b32b9d3efdfbb55beac1bf22d516"}, - {file = "grpcio-1.59.2-cp311-cp311-win_amd64.whl", hash = "sha256:2067274c88bc6de89c278a672a652b4247d088811ece781a4858b09bdf8448e3"}, - {file = "grpcio-1.59.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:535561990e075fa6bd4b16c4c3c1096b9581b7bb35d96fac4650f1181e428268"}, - {file = "grpcio-1.59.2-cp312-cp312-macosx_10_10_universal2.whl", hash = "sha256:a213acfbf186b9f35803b52e4ca9addb153fc0b67f82a48f961be7000ecf6721"}, - {file = "grpcio-1.59.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:6959fb07e8351e20501ffb8cc4074c39a0b7ef123e1c850a7f8f3afdc3a3da01"}, - {file = "grpcio-1.59.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e82c5cf1495244adf5252f925ac5932e5fd288b3e5ab6b70bec5593074b7236c"}, - {file = "grpcio-1.59.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023088764012411affe7db183d1ada3ad9daf2e23ddc719ff46d7061de661340"}, - {file = "grpcio-1.59.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:da2d94c15f88cd40d7e67f7919d4f60110d2b9d5b1e08cf354c2be773ab13479"}, - {file = "grpcio-1.59.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6009386a2df66159f64ac9f20425ae25229b29b9dd0e1d3dd60043f037e2ad7e"}, - {file = "grpcio-1.59.2-cp312-cp312-win32.whl", hash = "sha256:75c6ecb70e809cf1504465174343113f51f24bc61e22a80ae1c859f3f7034c6d"}, - {file = "grpcio-1.59.2-cp312-cp312-win_amd64.whl", hash = "sha256:cbe946b3e6e60a7b4618f091e62a029cb082b109a9d6b53962dd305087c6e4fd"}, - {file = "grpcio-1.59.2-cp37-cp37m-linux_armv7l.whl", hash = "sha256:f8753a6c88d1d0ba64302309eecf20f70d2770f65ca02d83c2452279085bfcd3"}, - {file = "grpcio-1.59.2-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:f1ef0d39bc1feb420caf549b3c657c871cad4ebbcf0580c4d03816b0590de0cf"}, - {file = "grpcio-1.59.2-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:4c93f4abbb54321ee6471e04a00139c80c754eda51064187963ddf98f5cf36a4"}, - {file = "grpcio-1.59.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:08d77e682f2bf730a4961eea330e56d2f423c6a9b91ca222e5b1eb24a357b19f"}, - {file = "grpcio-1.59.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ff16d68bf453275466a9a46739061a63584d92f18a0f5b33d19fc97eb69867c"}, - {file = "grpcio-1.59.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4abb717e320e74959517dc8e84a9f48fbe90e9abe19c248541e9418b1ce60acd"}, - {file = "grpcio-1.59.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:36f53c2b3449c015880e7d55a89c992c357f176327b0d2873cdaaf9628a37c69"}, - {file = "grpcio-1.59.2-cp37-cp37m-win_amd64.whl", hash = "sha256:cc3e4cd087f07758b16bef8f31d88dbb1b5da5671d2f03685ab52dece3d7a16e"}, - {file = "grpcio-1.59.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:27f879ae604a7fcf371e59fba6f3ff4635a4c2a64768bd83ff0cac503142fef4"}, - {file = "grpcio-1.59.2-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:7cf05053242f61ba94014dd3a986e11a083400a32664058f80bf4cf817c0b3a1"}, - {file = "grpcio-1.59.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:e1727c1c0e394096bb9af185c6923e8ea55a5095b8af44f06903bcc0e06800a2"}, - {file = "grpcio-1.59.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5d573e70a6fe77555fb6143c12d3a7d3fa306632a3034b4e7c59ca09721546f8"}, - {file = "grpcio-1.59.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31176aa88f36020055ace9adff2405a33c8bdbfa72a9c4980e25d91b2f196873"}, - {file = "grpcio-1.59.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:11168ef43e4a43ff1b1a65859f3e0ef1a173e277349e7fb16923ff108160a8cd"}, - {file = "grpcio-1.59.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:53c9aa5ddd6857c0a1cd0287225a2a25873a8e09727c2e95c4aebb1be83a766a"}, - {file = "grpcio-1.59.2-cp38-cp38-win32.whl", hash = "sha256:3b4368b33908f683a363f376dfb747d40af3463a6e5044afee07cf9436addf96"}, - {file = "grpcio-1.59.2-cp38-cp38-win_amd64.whl", hash = "sha256:0a754aff9e3af63bdc4c75c234b86b9d14e14a28a30c4e324aed1a9b873d755f"}, - {file = "grpcio-1.59.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:1f9524d1d701e399462d2c90ba7c193e49d1711cf429c0d3d97c966856e03d00"}, - {file = "grpcio-1.59.2-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:f93dbf58f03146164048be5426ffde298b237a5e059144847e4940f5b80172c3"}, - {file = "grpcio-1.59.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:6da6dea3a1bacf99b3c2187e296db9a83029ed9c38fd4c52b7c9b7326d13c828"}, - {file = "grpcio-1.59.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5f09cffa619adfb44799fa4a81c2a1ad77c887187613fb0a8f201ab38d89ba1"}, - {file = "grpcio-1.59.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c35aa9657f5d5116d23b934568e0956bd50c615127810fffe3ac356a914c176a"}, - {file = "grpcio-1.59.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:74100fecaec8a535e380cf5f2fb556ff84957d481c13e54051c52e5baac70541"}, - {file = "grpcio-1.59.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:128e20f57c5f27cb0157e73756d1586b83c1b513ebecc83ea0ac37e4b0e4e758"}, - {file = "grpcio-1.59.2-cp39-cp39-win32.whl", hash = "sha256:686e975a5d16602dc0982c7c703948d17184bd1397e16c8ee03511ecb8c4cdda"}, - {file = "grpcio-1.59.2-cp39-cp39-win_amd64.whl", hash = "sha256:242adc47725b9a499ee77c6a2e36688fa6c96484611f33b1be4c57ab075a92dd"}, - {file = "grpcio-1.59.2.tar.gz", hash = "sha256:d8f9cd4ad1be90b0cf350a2f04a38a36e44a026cac1e036ac593dc48efe91d52"}, + {file = "grpcio-1.59.3-cp310-cp310-linux_armv7l.whl", hash = "sha256:aca028a6c7806e5b61e5f9f4232432c52856f7fcb98e330b20b6bc95d657bdcc"}, + {file = "grpcio-1.59.3-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:19ad26a7967f7999c8960d2b9fe382dae74c55b0c508c613a6c2ba21cddf2354"}, + {file = "grpcio-1.59.3-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:72b71dad2a3d1650e69ad42a5c4edbc59ee017f08c32c95694172bc501def23c"}, + {file = "grpcio-1.59.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c0f0a11d82d0253656cc42e04b6a149521e02e755fe2e4edd21123de610fd1d4"}, + {file = "grpcio-1.59.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60cddafb70f9a2c81ba251b53b4007e07cca7389e704f86266e22c4bffd8bf1d"}, + {file = "grpcio-1.59.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6c75a1fa0e677c1d2b6d4196ad395a5c381dfb8385f07ed034ef667cdcdbcc25"}, + {file = "grpcio-1.59.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e1d8e01438d5964a11167eec1edb5f85ed8e475648f36c834ed5db4ffba24ac8"}, + {file = "grpcio-1.59.3-cp310-cp310-win32.whl", hash = "sha256:c4b0076f0bf29ee62335b055a9599f52000b7941f577daa001c7ef961a1fbeab"}, + {file = "grpcio-1.59.3-cp310-cp310-win_amd64.whl", hash = "sha256:b1f00a3e6e0c3dccccffb5579fc76ebfe4eb40405ba308505b41ef92f747746a"}, + {file = "grpcio-1.59.3-cp311-cp311-linux_armv7l.whl", hash = "sha256:3996aaa21231451161dc29df6a43fcaa8b332042b6150482c119a678d007dd86"}, + {file = "grpcio-1.59.3-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:cb4e9cbd9b7388fcb06412da9f188c7803742d06d6f626304eb838d1707ec7e3"}, + {file = "grpcio-1.59.3-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:8022ca303d6c694a0d7acfb2b472add920217618d3a99eb4b14edc7c6a7e8fcf"}, + {file = "grpcio-1.59.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b36683fad5664283755a7f4e2e804e243633634e93cd798a46247b8e54e3cb0d"}, + {file = "grpcio-1.59.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8239b853226e4824e769517e1b5232e7c4dda3815b200534500338960fcc6118"}, + {file = "grpcio-1.59.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0511af8653fbda489ff11d542a08505d56023e63cafbda60e6e00d4e0bae86ea"}, + {file = "grpcio-1.59.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e78dc982bda74cef2ddfce1c91d29b96864c4c680c634e279ed204d51e227473"}, + {file = "grpcio-1.59.3-cp311-cp311-win32.whl", hash = "sha256:6a5c3a96405966c023e139c3bcccb2c7c776a6f256ac6d70f8558c9041bdccc3"}, + {file = "grpcio-1.59.3-cp311-cp311-win_amd64.whl", hash = "sha256:ed26826ee423b11477297b187371cdf4fa1eca874eb1156422ef3c9a60590dd9"}, + {file = "grpcio-1.59.3-cp312-cp312-linux_armv7l.whl", hash = "sha256:45dddc5cb5227d30fa43652d8872dc87f086d81ab4b500be99413bad0ae198d7"}, + {file = "grpcio-1.59.3-cp312-cp312-macosx_10_10_universal2.whl", hash = "sha256:1736496d74682e53dd0907fd515f2694d8e6a96c9a359b4080b2504bf2b2d91b"}, + {file = "grpcio-1.59.3-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:ddbd1a16138e52e66229047624de364f88a948a4d92ba20e4e25ad7d22eef025"}, + {file = "grpcio-1.59.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcfa56f8d031ffda902c258c84c4b88707f3a4be4827b4e3ab8ec7c24676320d"}, + {file = "grpcio-1.59.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2eb8f0c7c0c62f7a547ad7a91ba627a5aa32a5ae8d930783f7ee61680d7eb8d"}, + {file = "grpcio-1.59.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8d993399cc65e3a34f8fd48dd9ad7a376734564b822e0160dd18b3d00c1a33f9"}, + {file = "grpcio-1.59.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c0bd141f4f41907eb90bda74d969c3cb21c1c62779419782a5b3f5e4b5835718"}, + {file = "grpcio-1.59.3-cp312-cp312-win32.whl", hash = "sha256:33b8fd65d4e97efa62baec6171ce51f9cf68f3a8ba9f866f4abc9d62b5c97b79"}, + {file = "grpcio-1.59.3-cp312-cp312-win_amd64.whl", hash = "sha256:0e735ed002f50d4f3cb9ecfe8ac82403f5d842d274c92d99db64cfc998515e07"}, + {file = "grpcio-1.59.3-cp37-cp37m-linux_armv7l.whl", hash = "sha256:ea40ce4404e7cca0724c91a7404da410f0144148fdd58402a5942971e3469b94"}, + {file = "grpcio-1.59.3-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:83113bcc393477b6f7342b9f48e8a054330c895205517edc66789ceea0796b53"}, + {file = "grpcio-1.59.3-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:73afbac602b8f1212a50088193601f869b5073efa9855b3e51aaaec97848fc8a"}, + {file = "grpcio-1.59.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:575d61de1950b0b0699917b686b1ca108690702fcc2df127b8c9c9320f93e069"}, + {file = "grpcio-1.59.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cd76057b5c9a4d68814610ef9226925f94c1231bbe533fdf96f6181f7d2ff9e"}, + {file = "grpcio-1.59.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:95d6fd804c81efe4879e38bfd84d2b26e339a0a9b797e7615e884ef4686eb47b"}, + {file = "grpcio-1.59.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0d42048b8a3286ea4134faddf1f9a59cf98192b94aaa10d910a25613c5eb5bfb"}, + {file = "grpcio-1.59.3-cp37-cp37m-win_amd64.whl", hash = "sha256:4619fea15c64bcdd9d447cdbdde40e3d5f1da3a2e8ae84103d94a9c1df210d7e"}, + {file = "grpcio-1.59.3-cp38-cp38-linux_armv7l.whl", hash = "sha256:95b5506e70284ac03b2005dd9ffcb6708c9ae660669376f0192a710687a22556"}, + {file = "grpcio-1.59.3-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:9e17660947660ccfce56c7869032910c179a5328a77b73b37305cd1ee9301c2e"}, + {file = "grpcio-1.59.3-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:00912ce19914d038851be5cd380d94a03f9d195643c28e3ad03d355cc02ce7e8"}, + {file = "grpcio-1.59.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e58b3cadaa3c90f1efca26ba33e0d408b35b497307027d3d707e4bcd8de862a6"}, + {file = "grpcio-1.59.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d787ecadea865bdf78f6679f6f5bf4b984f18f659257ba612979df97a298b3c3"}, + {file = "grpcio-1.59.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0814942ba1bba269db4e760a34388640c601dece525c6a01f3b4ff030cc0db69"}, + {file = "grpcio-1.59.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fb111aa99d3180c361a35b5ae1e2c63750220c584a1344229abc139d5c891881"}, + {file = "grpcio-1.59.3-cp38-cp38-win32.whl", hash = "sha256:eb8ba504c726befe40a356ecbe63c6c3c64c9a439b3164f5a718ec53c9874da0"}, + {file = "grpcio-1.59.3-cp38-cp38-win_amd64.whl", hash = "sha256:cdbc6b32fadab9bebc6f49d3e7ec4c70983c71e965497adab7f87de218e84391"}, + {file = "grpcio-1.59.3-cp39-cp39-linux_armv7l.whl", hash = "sha256:c82ca1e4be24a98a253d6dbaa216542e4163f33f38163fc77964b0f0d255b552"}, + {file = "grpcio-1.59.3-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:36636babfda14f9e9687f28d5b66d349cf88c1301154dc71c6513de2b6c88c59"}, + {file = "grpcio-1.59.3-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:5f9b2e591da751ac7fdd316cc25afafb7a626dededa9b414f90faad7f3ccebdb"}, + {file = "grpcio-1.59.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a93a82876a4926bf451db82ceb725bd87f42292bacc94586045261f501a86994"}, + {file = "grpcio-1.59.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce31fa0bfdd1f2bb15b657c16105c8652186eab304eb512e6ae3b99b2fdd7d13"}, + {file = "grpcio-1.59.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:16da0e40573962dab6cba16bec31f25a4f468e6d05b658e589090fe103b03e3d"}, + {file = "grpcio-1.59.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d1d1a17372fd425addd5812049fa7374008ffe689585f27f802d0935522cf4b7"}, + {file = "grpcio-1.59.3-cp39-cp39-win32.whl", hash = "sha256:52cc38a7241b5f7b4a91aaf9000fdd38e26bb00d5e8a71665ce40cfcee716281"}, + {file = "grpcio-1.59.3-cp39-cp39-win_amd64.whl", hash = "sha256:b491e5bbcad3020a96842040421e508780cade35baba30f402df9d321d1c423e"}, + {file = "grpcio-1.59.3.tar.gz", hash = "sha256:7800f99568a74a06ebdccd419dd1b6e639b477dcaf6da77ea702f8fb14ce5f80"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.59.2)"] +protobuf = ["grpcio-tools (>=1.59.3)"] [[package]] name = "grpcio-status" version = "1.48.2" description = "Status proto mapping for gRPC" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1717,6 +1767,7 @@ protobuf = ">=3.12.0" name = "gsutil" version = "5.17" description = "A command line tool for interacting with cloud storage services." +category = "main" optional = true python-versions = "!=2.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" files = [ @@ -1741,6 +1792,7 @@ six = ">=1.12.0" name = "h11" version = "0.13.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1752,6 +1804,7 @@ files = [ name = "h2" version = "4.1.0" description = "HTTP/2 State-Machine based protocol implementation" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1767,6 +1820,7 @@ hyperframe = ">=6.0,<7" name = "hpack" version = "4.0.0" description = "Pure-Python HPACK header compression" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1778,6 +1832,7 @@ files = [ name = "httplib2" version = "0.20.4" description = "A comprehensive HTTP client library." +category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1792,6 +1847,7 @@ pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0 name = "humanfriendly" version = "10.0" description = "Human friendly output for text interfaces using Python" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1806,6 +1862,7 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve name = "hyperframe" version = "6.0.1" description = "HTTP/2 framing layer for Python" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1815,13 +1872,14 @@ files = [ [[package]] name = "identify" -version = "2.5.24" +version = "2.5.32" description = "File identification library for Python" +category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "identify-2.5.24-py2.py3-none-any.whl", hash = "sha256:986dbfb38b1140e763e413e6feb44cd731faf72d1909543178aa79b0e258265d"}, - {file = "identify-2.5.24.tar.gz", hash = "sha256:0aac67d5b4812498056d28a9a512a483f5085cc28640b02b258a59dac34301d4"}, + {file = "identify-2.5.32-py2.py3-none-any.whl", hash = "sha256:0b7656ef6cba81664b783352c73f8c24b39cf82f926f78f4550eda928e5e0545"}, + {file = "identify-2.5.32.tar.gz", hash = "sha256:5d9979348ec1a21c768ae07e0a652924538e8bce67313a73cb0f681cf08ba407"}, ] [package.extras] @@ -1831,6 +1889,7 @@ license = ["ukkonen"] name = "idna" version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1842,6 +1901,7 @@ files = [ name = "imagesize" version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1851,13 +1911,14 @@ files = [ [[package]] name = "importlib-metadata" -version = "6.6.0" +version = "6.8.0" description = "Read metadata from Python packages" +category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "importlib_metadata-6.6.0-py3-none-any.whl", hash = "sha256:43dd286a2cd8995d5eaef7fee2066340423b818ed3fd70adf0bad5f1fac53fed"}, - {file = "importlib_metadata-6.6.0.tar.gz", hash = "sha256:92501cdf9cc66ebd3e612f1b4f0c0765dfa42f0fa38ffb319b6bd84dd675d705"}, + {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, + {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, ] [package.dependencies] @@ -1866,30 +1927,32 @@ zipp = ">=0.5" [package.extras] docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] perf = ["ipython"] -testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] [[package]] name = "importlib-resources" -version = "5.12.0" +version = "5.13.0" description = "Read resources from Python packages" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "importlib_resources-5.12.0-py3-none-any.whl", hash = "sha256:7b1deeebbf351c7578e09bf2f63fa2ce8b5ffec296e0d349139d43cca061a81a"}, - {file = "importlib_resources-5.12.0.tar.gz", hash = "sha256:4be82589bf5c1d7999aedf2a45159d10cb3ca4f19b2271f8792bc8e6da7b22f6"}, + {file = "importlib_resources-5.13.0-py3-none-any.whl", hash = "sha256:9f7bd0c97b79972a6cce36a366356d16d5e13b09679c11a58f1014bfdf8e64b2"}, + {file = "importlib_resources-5.13.0.tar.gz", hash = "sha256:82d5c6cca930697dbbd86c93333bb2c2e72861d4789a11c2662b933e5ad2b528"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [[package]] name = "inflection" version = "0.5.1" description = "A port of Ruby on Rails inflector to Python" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1901,6 +1964,7 @@ files = [ name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1910,13 +1974,14 @@ files = [ [[package]] name = "ipykernel" -version = "6.22.0" +version = "6.26.0" description = "IPython Kernel for Jupyter" +category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "ipykernel-6.22.0-py3-none-any.whl", hash = "sha256:1ae6047c1277508933078163721bbb479c3e7292778a04b4bacf0874550977d6"}, - {file = "ipykernel-6.22.0.tar.gz", hash = "sha256:302558b81f1bc22dc259fb2a0c5c7cf2f4c0bdb21b50484348f7bafe7fb71421"}, + {file = "ipykernel-6.26.0-py3-none-any.whl", hash = "sha256:3ba3dc97424b87b31bb46586b5167b3161b32d7820b9201a9e698c71e271602c"}, + {file = "ipykernel-6.26.0.tar.gz", hash = "sha256:553856658eb8430bbe9653ea041a41bff63e9606fc4628873fc92a6cf3abd404"}, ] [package.dependencies] @@ -1925,7 +1990,7 @@ comm = ">=0.1.1" debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" @@ -1943,13 +2008,14 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio" [[package]] name = "ipython" -version = "8.12.1" +version = "8.12.3" description = "IPython: Productive Interactive Computing" +category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "ipython-8.12.1-py3-none-any.whl", hash = "sha256:e3015a1a4aa09b3984fb81b9cef4f0772af5a549878b81efb094cda8bb121993"}, - {file = "ipython-8.12.1.tar.gz", hash = "sha256:2442915417763b62181009259782975fa50bb5eedb97ae97fb614204bf6ecc21"}, + {file = "ipython-8.12.3-py3-none-any.whl", hash = "sha256:b0340d46a933d27c657b211a329d0be23793c36595acf9e6ef4164bc01a1804c"}, + {file = "ipython-8.12.3.tar.gz", hash = "sha256:3910c4b54543c2ad73d06579aa771041b7d5707b033bd488669b4cf544e3b363"}, ] [package.dependencies] @@ -1984,6 +2050,7 @@ test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pa name = "isort" version = "5.12.0" description = "A Python utility / library to sort Python imports." +category = "main" optional = false python-versions = ">=3.8.0" files = [ @@ -2001,6 +2068,7 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "itsdangerous" version = "2.1.2" description = "Safely pass data to untrusted environments and back." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2010,27 +2078,29 @@ files = [ [[package]] name = "jedi" -version = "0.18.2" +version = "0.19.1" description = "An autocompletion tool for Python that can be used for text editors." +category = "dev" optional = false python-versions = ">=3.6" files = [ - {file = "jedi-0.18.2-py2.py3-none-any.whl", hash = "sha256:203c1fd9d969ab8f2119ec0a3342e0b49910045abe6af0a3ae83a5764d54639e"}, - {file = "jedi-0.18.2.tar.gz", hash = "sha256:bae794c30d07f6d910d32a7048af09b5a39ed740918da923c6b780790ebac612"}, + {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"}, + {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"}, ] [package.dependencies] -parso = ">=0.8.0,<0.9.0" +parso = ">=0.8.3,<0.9.0" [package.extras] docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] -qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] +testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2046,19 +2116,21 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "joblib" -version = "1.2.0" +version = "1.3.2" description = "Lightweight pipelining with Python functions" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "joblib-1.2.0-py3-none-any.whl", hash = "sha256:091138ed78f800342968c523bdde947e7a305b8594b910a0fea2ab83c3c6d385"}, - {file = "joblib-1.2.0.tar.gz", hash = "sha256:e1cee4a79e4af22881164f218d4311f60074197fb707e082e803b61f6d137018"}, + {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, + {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, ] [[package]] name = "json5" version = "0.9.14" description = "A Python implementation of the JSON5 data format." +category = "main" optional = false python-versions = "*" files = [ @@ -2071,29 +2143,49 @@ dev = ["hypothesis"] [[package]] name = "jsonschema" -version = "4.17.3" +version = "4.20.0" description = "An implementation of JSON Schema validation for Python" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, - {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, + {file = "jsonschema-4.20.0-py3-none-any.whl", hash = "sha256:ed6231f0429ecf966f5bc8dfef245998220549cbbcf140f913b7464c52c3b6b3"}, + {file = "jsonschema-4.20.0.tar.gz", hash = "sha256:4f614fd46d8d61258610998997743ec5492a648b33cf478c1ddc23ed4598a5fa"}, ] [package.dependencies] -attrs = ">=17.4.0" +attrs = ">=22.2.0" importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} +jsonschema-specifications = ">=2023.03.6" pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} -pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] +[[package]] +name = "jsonschema-specifications" +version = "2023.11.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.11.1-py3-none-any.whl", hash = "sha256:f596778ab612b3fd29f72ea0d990393d0540a5aab18bf0407a46632eab540779"}, + {file = "jsonschema_specifications-2023.11.1.tar.gz", hash = "sha256:c9b234904ffe02f079bf91b14d79987faa685fd4b39c377a0996954c0090b9ca"}, +] + +[package.dependencies] +importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} +referencing = ">=0.31.0" + [[package]] name = "junitparser" version = "3.1.0" description = "Manipulates JUnit/xUnit Result XML files" +category = "main" optional = false python-versions = "*" files = [ @@ -2106,18 +2198,19 @@ future = "*" [[package]] name = "jupyter-client" -version = "8.2.0" +version = "8.6.0" description = "Jupyter protocol implementation and client libraries" +category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "jupyter_client-8.2.0-py3-none-any.whl", hash = "sha256:b18219aa695d39e2ad570533e0d71fb7881d35a873051054a84ee2a17c4b7389"}, - {file = "jupyter_client-8.2.0.tar.gz", hash = "sha256:9fe233834edd0e6c0aa5f05ca2ab4bdea1842bfd2d8a932878212fc5301ddaf0"}, + {file = "jupyter_client-8.6.0-py3-none-any.whl", hash = "sha256:909c474dbe62582ae62b758bca86d6518c85234bdee2d908c778db6d72f39d99"}, + {file = "jupyter_client-8.6.0.tar.gz", hash = "sha256:0642244bb83b4764ae60d07e010e15f0e2d275ec4e918a8f7b80fbbef3ca60c7"}, ] [package.dependencies] importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" tornado = ">=6.2" @@ -2131,6 +2224,7 @@ test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pyt name = "jupyter-core" version = "5.2.0" description = "Jupyter core package. A base package on which Jupyter projects rely." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2151,6 +2245,7 @@ test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] name = "kaitaistruct" version = "0.9" description = "Kaitai Struct declarative parser generator for binary data: runtime library for Python" +category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -2161,6 +2256,7 @@ files = [ name = "klara" version = "0.6.3" description = "Automatic test case generation and static analysis library" +category = "main" optional = false python-versions = ">=3.6.2,<4.0" files = [ @@ -2178,6 +2274,7 @@ z3-solver = ">=4.8.12,<5.0.0" name = "lazy-object-proxy" version = "1.9.0" description = "A fast and thorough lazy object proxy." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2223,6 +2320,7 @@ files = [ name = "ldap3" version = "2.9.1" description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library" +category = "dev" optional = false python-versions = "*" files = [ @@ -2235,67 +2333,69 @@ pyasn1 = ">=0.4.6" [[package]] name = "markupsafe" -version = "2.1.2" +version = "2.1.3" description = "Safely add untrusted strings to HTML/XML markup." +category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:665a36ae6f8f20a4676b53224e33d456a6f5a72657d9c83c2aa00765072f31f7"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:340bea174e9761308703ae988e982005aedf427de816d1afe98147668cc03036"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22152d00bf4a9c7c83960521fc558f55a1adbc0631fbb00a9471e097b19d72e1"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28057e985dace2f478e042eaa15606c7efccb700797660629da387eb289b9323"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca244fa73f50a800cf8c3ebf7fd93149ec37f5cb9596aa8873ae2c1d23498601"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9d971ec1e79906046aa3ca266de79eac42f1dbf3612a05dc9368125952bd1a1"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7e007132af78ea9df29495dbf7b5824cb71648d7133cf7848a2a5dd00d36f9ff"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7313ce6a199651c4ed9d7e4cfb4aa56fe923b1adf9af3b420ee14e6d9a73df65"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-win32.whl", hash = "sha256:c4a549890a45f57f1ebf99c067a4ad0cb423a05544accaf2b065246827ed9603"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:835fb5e38fd89328e9c81067fd642b3593c33e1e17e2fdbf77f5676abb14a156"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2ec4f2d48ae59bbb9d1f9d7efb9236ab81429a764dedca114f5fdabbc3788013"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608e7073dfa9e38a85d38474c082d4281f4ce276ac0010224eaba11e929dd53a"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65608c35bfb8a76763f37036547f7adfd09270fbdbf96608be2bead319728fcd"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2bfb563d0211ce16b63c7cb9395d2c682a23187f54c3d79bfec33e6705473c6"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da25303d91526aac3672ee6d49a2f3db2d9502a4a60b55519feb1a4c7714e07d"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9cad97ab29dfc3f0249b483412c85c8ef4766d96cdf9dcf5a1e3caa3f3661cf1"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1bea30e9bf331f3fef67e0a3877b2288593c98a21ccb2cf29b74c581a4eb3af0"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-win32.whl", hash = "sha256:7df70907e00c970c60b9ef2938d894a9381f38e6b9db73c5be35e59d92e06625"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:e55e40ff0cc8cc5c07996915ad367fa47da6b3fc091fdadca7f5403239c5fec3"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a6e40afa7f45939ca356f348c8e23048e02cb109ced1eb8420961b2f40fb373a"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf877ab4ed6e302ec1d04952ca358b381a882fbd9d1b07cccbfd61783561f98a"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63ba06c9941e46fa389d389644e2d8225e0e3e5ebcc4ff1ea8506dce646f8c8a"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1cd098434e83e656abf198f103a8207a8187c0fc110306691a2e94a78d0abb2"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:55f44b440d491028addb3b88f72207d71eeebfb7b5dbf0643f7c023ae1fba619"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a6f2fcca746e8d5910e18782f976489939d54a91f9411c32051b4aab2bd7c513"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b462104ba25f1ac006fdab8b6a01ebbfbce9ed37fd37fd4acd70c67c973e460"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-win32.whl", hash = "sha256:7668b52e102d0ed87cb082380a7e2e1e78737ddecdde129acadb0eccc5423859"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6d6607f98fcf17e534162f0709aaad3ab7a96032723d8ac8750ffe17ae5a0666"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a806db027852538d2ad7555b203300173dd1b77ba116de92da9afbc3a3be3eed"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a4abaec6ca3ad8660690236d11bfe28dfd707778e2442b45addd2f086d6ef094"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f03a532d7dee1bed20bc4884194a16160a2de9ffc6354b3878ec9682bb623c54"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cf06cdc1dda95223e9d2d3c58d3b178aa5dacb35ee7e3bbac10e4e1faacb419"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22731d79ed2eb25059ae3df1dfc9cb1546691cc41f4e3130fe6bfbc3ecbbecfa"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f8ffb705ffcf5ddd0e80b65ddf7bed7ee4f5a441ea7d3419e861a12eaf41af58"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8db032bf0ce9022a8e41a22598eefc802314e81b879ae093f36ce9ddf39ab1ba"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2298c859cfc5463f1b64bd55cb3e602528db6fa0f3cfd568d3605c50678f8f03"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-win32.whl", hash = "sha256:50c42830a633fa0cf9e7d27664637532791bfc31c731a87b202d2d8ac40c3ea2"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:bb06feb762bade6bf3c8b844462274db0c76acc95c52abe8dbed28ae3d44a147"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99625a92da8229df6d44335e6fcc558a5037dd0a760e11d84be2260e6f37002f"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bca7e26c1dd751236cfb0c6c72d4ad61d986e9a41bbf76cb445f69488b2a2bd"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40627dcf047dadb22cd25ea7ecfe9cbf3bbbad0482ee5920b582f3809c97654f"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40dfd3fefbef579ee058f139733ac336312663c6706d1163b82b3003fb1925c4"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:090376d812fb6ac5f171e5938e82e7f2d7adc2b629101cec0db8b267815c85e2"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2e7821bffe00aa6bd07a23913b7f4e01328c3d5cc0b40b36c0bd81d362faeb65"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c0a33bc9f02c2b17c3ea382f91b4db0e6cde90b63b296422a939886a7a80de1c"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8526c6d437855442cdd3d87eede9c425c4445ea011ca38d937db299382e6fa3"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-win32.whl", hash = "sha256:137678c63c977754abe9086a3ec011e8fd985ab90631145dfb9294ad09c102a7"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed"}, - {file = "MarkupSafe-2.1.2.tar.gz", hash = "sha256:abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, ] [[package]] name = "matplotlib-inline" version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" +category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2310,6 +2410,7 @@ traitlets = "*" name = "mccabe" version = "0.6.1" description = "McCabe checker, plugin for flake8" +category = "main" optional = false python-versions = "*" files = [ @@ -2321,6 +2422,7 @@ files = [ name = "mergedeep" version = "1.3.4" description = "A deep merge function for 🐍." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2332,6 +2434,7 @@ files = [ name = "mitmproxy" version = "8.0.0" description = "An interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2373,6 +2476,7 @@ dev = ["click (>=7.0,<8.1)", "hypothesis (>=5.8,<7)", "parver (>=0.1,<2.0)", "pd name = "mock" version = "4.0.3" description = "Rolling backport of unittest.mock for all Pythons" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2389,6 +2493,7 @@ test = ["pytest (<5.4)", "pytest-cov"] name = "monotonic" version = "1.6" description = "An implementation of time.monotonic() for Python 2 & < 3.3" +category = "main" optional = true python-versions = "*" files = [ @@ -2400,6 +2505,7 @@ files = [ name = "more-itertools" version = "9.1.0" description = "More routines for operating on iterables, beyond itertools" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2409,80 +2515,75 @@ files = [ [[package]] name = "msgpack" -version = "1.0.5" +version = "1.0.7" description = "MessagePack serializer" +category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "msgpack-1.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:525228efd79bb831cf6830a732e2e80bc1b05436b086d4264814b4b2955b2fa9"}, - {file = "msgpack-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4f8d8b3bf1ff2672567d6b5c725a1b347fe838b912772aa8ae2bf70338d5a198"}, - {file = "msgpack-1.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdc793c50be3f01106245a61b739328f7dccc2c648b501e237f0699fe1395b81"}, - {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cb47c21a8a65b165ce29f2bec852790cbc04936f502966768e4aae9fa763cb7"}, - {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e42b9594cc3bf4d838d67d6ed62b9e59e201862a25e9a157019e171fbe672dd3"}, - {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:55b56a24893105dc52c1253649b60f475f36b3aa0fc66115bffafb624d7cb30b"}, - {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:1967f6129fc50a43bfe0951c35acbb729be89a55d849fab7686004da85103f1c"}, - {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20a97bf595a232c3ee6d57ddaadd5453d174a52594bf9c21d10407e2a2d9b3bd"}, - {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d25dd59bbbbb996eacf7be6b4ad082ed7eacc4e8f3d2df1ba43822da9bfa122a"}, - {file = "msgpack-1.0.5-cp310-cp310-win32.whl", hash = "sha256:382b2c77589331f2cb80b67cc058c00f225e19827dbc818d700f61513ab47bea"}, - {file = "msgpack-1.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:4867aa2df9e2a5fa5f76d7d5565d25ec76e84c106b55509e78c1ede0f152659a"}, - {file = "msgpack-1.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9f5ae84c5c8a857ec44dc180a8b0cc08238e021f57abdf51a8182e915e6299f0"}, - {file = "msgpack-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9e6ca5d5699bcd89ae605c150aee83b5321f2115695e741b99618f4856c50898"}, - {file = "msgpack-1.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5494ea30d517a3576749cad32fa27f7585c65f5f38309c88c6d137877fa28a5a"}, - {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ab2f3331cb1b54165976a9d976cb251a83183631c88076613c6c780f0d6e45a"}, - {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28592e20bbb1620848256ebc105fc420436af59515793ed27d5c77a217477705"}, - {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe5c63197c55bce6385d9aee16c4d0641684628f63ace85f73571e65ad1c1e8d"}, - {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ed40e926fa2f297e8a653c954b732f125ef97bdd4c889f243182299de27e2aa9"}, - {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b2de4c1c0538dcb7010902a2b97f4e00fc4ddf2c8cda9749af0e594d3b7fa3d7"}, - {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bf22a83f973b50f9d38e55c6aade04c41ddda19b00c4ebc558930d78eecc64ed"}, - {file = "msgpack-1.0.5-cp311-cp311-win32.whl", hash = "sha256:c396e2cc213d12ce017b686e0f53497f94f8ba2b24799c25d913d46c08ec422c"}, - {file = "msgpack-1.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c4c68d87497f66f96d50142a2b73b97972130d93677ce930718f68828b382e2"}, - {file = "msgpack-1.0.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:a2b031c2e9b9af485d5e3c4520f4220d74f4d222a5b8dc8c1a3ab9448ca79c57"}, - {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f837b93669ce4336e24d08286c38761132bc7ab29782727f8557e1eb21b2080"}, - {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1d46dfe3832660f53b13b925d4e0fa1432b00f5f7210eb3ad3bb9a13c6204a6"}, - {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:366c9a7b9057e1547f4ad51d8facad8b406bab69c7d72c0eb6f529cf76d4b85f"}, - {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:4c075728a1095efd0634a7dccb06204919a2f67d1893b6aa8e00497258bf926c"}, - {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:f933bbda5a3ee63b8834179096923b094b76f0c7a73c1cfe8f07ad608c58844b"}, - {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:36961b0568c36027c76e2ae3ca1132e35123dcec0706c4b7992683cc26c1320c"}, - {file = "msgpack-1.0.5-cp36-cp36m-win32.whl", hash = "sha256:b5ef2f015b95f912c2fcab19c36814963b5463f1fb9049846994b007962743e9"}, - {file = "msgpack-1.0.5-cp36-cp36m-win_amd64.whl", hash = "sha256:288e32b47e67f7b171f86b030e527e302c91bd3f40fd9033483f2cacc37f327a"}, - {file = "msgpack-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:137850656634abddfb88236008339fdaba3178f4751b28f270d2ebe77a563b6c"}, - {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c05a4a96585525916b109bb85f8cb6511db1c6f5b9d9cbcbc940dc6b4be944b"}, - {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56a62ec00b636583e5cb6ad313bbed36bb7ead5fa3a3e38938503142c72cba4f"}, - {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef8108f8dedf204bb7b42994abf93882da1159728a2d4c5e82012edd92c9da9f"}, - {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1835c84d65f46900920b3708f5ba829fb19b1096c1800ad60bae8418652a951d"}, - {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e57916ef1bd0fee4f21c4600e9d1da352d8816b52a599c46460e93a6e9f17086"}, - {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:17358523b85973e5f242ad74aa4712b7ee560715562554aa2134d96e7aa4cbbf"}, - {file = "msgpack-1.0.5-cp37-cp37m-win32.whl", hash = "sha256:cb5aaa8c17760909ec6cb15e744c3ebc2ca8918e727216e79607b7bbce9c8f77"}, - {file = "msgpack-1.0.5-cp37-cp37m-win_amd64.whl", hash = "sha256:ab31e908d8424d55601ad7075e471b7d0140d4d3dd3272daf39c5c19d936bd82"}, - {file = "msgpack-1.0.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b72d0698f86e8d9ddf9442bdedec15b71df3598199ba33322d9711a19f08145c"}, - {file = "msgpack-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:379026812e49258016dd84ad79ac8446922234d498058ae1d415f04b522d5b2d"}, - {file = "msgpack-1.0.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:332360ff25469c346a1c5e47cbe2a725517919892eda5cfaffe6046656f0b7bb"}, - {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:476a8fe8fae289fdf273d6d2a6cb6e35b5a58541693e8f9f019bfe990a51e4ba"}, - {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9985b214f33311df47e274eb788a5893a761d025e2b92c723ba4c63936b69b1"}, - {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48296af57cdb1d885843afd73c4656be5c76c0c6328db3440c9601a98f303d87"}, - {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:addab7e2e1fcc04bd08e4eb631c2a90960c340e40dfc4a5e24d2ff0d5a3b3edb"}, - {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:916723458c25dfb77ff07f4c66aed34e47503b2eb3188b3adbec8d8aa6e00f48"}, - {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:821c7e677cc6acf0fd3f7ac664c98803827ae6de594a9f99563e48c5a2f27eb0"}, - {file = "msgpack-1.0.5-cp38-cp38-win32.whl", hash = "sha256:1c0f7c47f0087ffda62961d425e4407961a7ffd2aa004c81b9c07d9269512f6e"}, - {file = "msgpack-1.0.5-cp38-cp38-win_amd64.whl", hash = "sha256:bae7de2026cbfe3782c8b78b0db9cbfc5455e079f1937cb0ab8d133496ac55e1"}, - {file = "msgpack-1.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:20c784e66b613c7f16f632e7b5e8a1651aa5702463d61394671ba07b2fc9e025"}, - {file = "msgpack-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:266fa4202c0eb94d26822d9bfd7af25d1e2c088927fe8de9033d929dd5ba24c5"}, - {file = "msgpack-1.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18334484eafc2b1aa47a6d42427da7fa8f2ab3d60b674120bce7a895a0a85bdd"}, - {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57e1f3528bd95cc44684beda696f74d3aaa8a5e58c816214b9046512240ef437"}, - {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:586d0d636f9a628ddc6a17bfd45aa5b5efaf1606d2b60fa5d87b8986326e933f"}, - {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a740fa0e4087a734455f0fc3abf5e746004c9da72fbd541e9b113013c8dc3282"}, - {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3055b0455e45810820db1f29d900bf39466df96ddca11dfa6d074fa47054376d"}, - {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a61215eac016f391129a013c9e46f3ab308db5f5ec9f25811e811f96962599a8"}, - {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:362d9655cd369b08fda06b6657a303eb7172d5279997abe094512e919cf74b11"}, - {file = "msgpack-1.0.5-cp39-cp39-win32.whl", hash = "sha256:ac9dd47af78cae935901a9a500104e2dea2e253207c924cc95de149606dc43cc"}, - {file = "msgpack-1.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:06f5174b5f8ed0ed919da0e62cbd4ffde676a374aba4020034da05fab67b9164"}, - {file = "msgpack-1.0.5.tar.gz", hash = "sha256:c075544284eadc5cddc70f4757331d99dcbc16b2bbd4849d15f8aae4cf36d31c"}, + {file = "msgpack-1.0.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:04ad6069c86e531682f9e1e71b71c1c3937d6014a7c3e9edd2aa81ad58842862"}, + {file = "msgpack-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cca1b62fe70d761a282496b96a5e51c44c213e410a964bdffe0928e611368329"}, + {file = "msgpack-1.0.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e50ebce52f41370707f1e21a59514e3375e3edd6e1832f5e5235237db933c98b"}, + {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a7b4f35de6a304b5533c238bee86b670b75b03d31b7797929caa7a624b5dda6"}, + {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28efb066cde83c479dfe5a48141a53bc7e5f13f785b92ddde336c716663039ee"}, + {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4cb14ce54d9b857be9591ac364cb08dc2d6a5c4318c1182cb1d02274029d590d"}, + {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b573a43ef7c368ba4ea06050a957c2a7550f729c31f11dd616d2ac4aba99888d"}, + {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ccf9a39706b604d884d2cb1e27fe973bc55f2890c52f38df742bc1d79ab9f5e1"}, + {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cb70766519500281815dfd7a87d3a178acf7ce95390544b8c90587d76b227681"}, + {file = "msgpack-1.0.7-cp310-cp310-win32.whl", hash = "sha256:b610ff0f24e9f11c9ae653c67ff8cc03c075131401b3e5ef4b82570d1728f8a9"}, + {file = "msgpack-1.0.7-cp310-cp310-win_amd64.whl", hash = "sha256:a40821a89dc373d6427e2b44b572efc36a2778d3f543299e2f24eb1a5de65415"}, + {file = "msgpack-1.0.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:576eb384292b139821c41995523654ad82d1916da6a60cff129c715a6223ea84"}, + {file = "msgpack-1.0.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:730076207cb816138cf1af7f7237b208340a2c5e749707457d70705715c93b93"}, + {file = "msgpack-1.0.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:85765fdf4b27eb5086f05ac0491090fc76f4f2b28e09d9350c31aac25a5aaff8"}, + {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3476fae43db72bd11f29a5147ae2f3cb22e2f1a91d575ef130d2bf49afd21c46"}, + {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d4c80667de2e36970ebf74f42d1088cc9ee7ef5f4e8c35eee1b40eafd33ca5b"}, + {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b0bf0effb196ed76b7ad883848143427a73c355ae8e569fa538365064188b8e"}, + {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f9a7c509542db4eceed3dcf21ee5267ab565a83555c9b88a8109dcecc4709002"}, + {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:84b0daf226913133f899ea9b30618722d45feffa67e4fe867b0b5ae83a34060c"}, + {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ec79ff6159dffcc30853b2ad612ed572af86c92b5168aa3fc01a67b0fa40665e"}, + {file = "msgpack-1.0.7-cp311-cp311-win32.whl", hash = "sha256:3e7bf4442b310ff154b7bb9d81eb2c016b7d597e364f97d72b1acc3817a0fdc1"}, + {file = "msgpack-1.0.7-cp311-cp311-win_amd64.whl", hash = "sha256:3f0c8c6dfa6605ab8ff0611995ee30d4f9fcff89966cf562733b4008a3d60d82"}, + {file = "msgpack-1.0.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f0936e08e0003f66bfd97e74ee530427707297b0d0361247e9b4f59ab78ddc8b"}, + {file = "msgpack-1.0.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:98bbd754a422a0b123c66a4c341de0474cad4a5c10c164ceed6ea090f3563db4"}, + {file = "msgpack-1.0.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b291f0ee7961a597cbbcc77709374087fa2a9afe7bdb6a40dbbd9b127e79afee"}, + {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebbbba226f0a108a7366bf4b59bf0f30a12fd5e75100c630267d94d7f0ad20e5"}, + {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e2d69948e4132813b8d1131f29f9101bc2c915f26089a6d632001a5c1349672"}, + {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bdf38ba2d393c7911ae989c3bbba510ebbcdf4ecbdbfec36272abe350c454075"}, + {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:993584fc821c58d5993521bfdcd31a4adf025c7d745bbd4d12ccfecf695af5ba"}, + {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:52700dc63a4676669b341ba33520f4d6e43d3ca58d422e22ba66d1736b0a6e4c"}, + {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e45ae4927759289c30ccba8d9fdce62bb414977ba158286b5ddaf8df2cddb5c5"}, + {file = "msgpack-1.0.7-cp312-cp312-win32.whl", hash = "sha256:27dcd6f46a21c18fa5e5deed92a43d4554e3df8d8ca5a47bf0615d6a5f39dbc9"}, + {file = "msgpack-1.0.7-cp312-cp312-win_amd64.whl", hash = "sha256:7687e22a31e976a0e7fc99c2f4d11ca45eff652a81eb8c8085e9609298916dcf"}, + {file = "msgpack-1.0.7-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5b6ccc0c85916998d788b295765ea0e9cb9aac7e4a8ed71d12e7d8ac31c23c95"}, + {file = "msgpack-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:235a31ec7db685f5c82233bddf9858748b89b8119bf4538d514536c485c15fe0"}, + {file = "msgpack-1.0.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cab3db8bab4b7e635c1c97270d7a4b2a90c070b33cbc00c99ef3f9be03d3e1f7"}, + {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bfdd914e55e0d2c9e1526de210f6fe8ffe9705f2b1dfcc4aecc92a4cb4b533d"}, + {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36e17c4592231a7dbd2ed09027823ab295d2791b3b1efb2aee874b10548b7524"}, + {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38949d30b11ae5f95c3c91917ee7a6b239f5ec276f271f28638dec9156f82cfc"}, + {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ff1d0899f104f3921d94579a5638847f783c9b04f2d5f229392ca77fba5b82fc"}, + {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dc43f1ec66eb8440567186ae2f8c447d91e0372d793dfe8c222aec857b81a8cf"}, + {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dd632777ff3beaaf629f1ab4396caf7ba0bdd075d948a69460d13d44357aca4c"}, + {file = "msgpack-1.0.7-cp38-cp38-win32.whl", hash = "sha256:4e71bc4416de195d6e9b4ee93ad3f2f6b2ce11d042b4d7a7ee00bbe0358bd0c2"}, + {file = "msgpack-1.0.7-cp38-cp38-win_amd64.whl", hash = "sha256:8f5b234f567cf76ee489502ceb7165c2a5cecec081db2b37e35332b537f8157c"}, + {file = "msgpack-1.0.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfef2bb6ef068827bbd021017a107194956918ab43ce4d6dc945ffa13efbc25f"}, + {file = "msgpack-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:484ae3240666ad34cfa31eea7b8c6cd2f1fdaae21d73ce2974211df099a95d81"}, + {file = "msgpack-1.0.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3967e4ad1aa9da62fd53e346ed17d7b2e922cba5ab93bdd46febcac39be636fc"}, + {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dd178c4c80706546702c59529ffc005681bd6dc2ea234c450661b205445a34d"}, + {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6ffbc252eb0d229aeb2f9ad051200668fc3a9aaa8994e49f0cb2ffe2b7867e7"}, + {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:822ea70dc4018c7e6223f13affd1c5c30c0f5c12ac1f96cd8e9949acddb48a61"}, + {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:384d779f0d6f1b110eae74cb0659d9aa6ff35aaf547b3955abf2ab4c901c4819"}, + {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f64e376cd20d3f030190e8c32e1c64582eba56ac6dc7d5b0b49a9d44021b52fd"}, + {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5ed82f5a7af3697b1c4786053736f24a0efd0a1b8a130d4c7bfee4b9ded0f08f"}, + {file = "msgpack-1.0.7-cp39-cp39-win32.whl", hash = "sha256:f26a07a6e877c76a88e3cecac8531908d980d3d5067ff69213653649ec0f60ad"}, + {file = "msgpack-1.0.7-cp39-cp39-win_amd64.whl", hash = "sha256:1dc93e8e4653bdb5910aed79f11e165c85732067614f180f70534f056da97db3"}, + {file = "msgpack-1.0.7.tar.gz", hash = "sha256:572efc93db7a4d27e404501975ca6d2d9775705c2d922390d878fcf768d92c87"}, ] [[package]] name = "multidict" version = "6.0.4" description = "multidict implementation" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2566,6 +2667,7 @@ files = [ name = "mypy" version = "0.982" description = "Optional static typing for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2609,6 +2711,7 @@ reports = ["lxml"] name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -2620,6 +2723,7 @@ files = [ name = "neo4j" version = "5.14.1" description = "Neo4j Bolt driver for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2636,19 +2740,21 @@ pyarrow = ["pyarrow (>=1.0.0)"] [[package]] name = "nest-asyncio" -version = "1.5.6" +version = "1.5.8" description = "Patch asyncio to allow nested event loops" +category = "dev" optional = false python-versions = ">=3.5" files = [ - {file = "nest_asyncio-1.5.6-py3-none-any.whl", hash = "sha256:b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8"}, - {file = "nest_asyncio-1.5.6.tar.gz", hash = "sha256:d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290"}, + {file = "nest_asyncio-1.5.8-py3-none-any.whl", hash = "sha256:accda7a339a70599cb08f9dd09a67e0c2ef8d8d6f4c07f96ab203f2ae254e48d"}, + {file = "nest_asyncio-1.5.8.tar.gz", hash = "sha256:25aa2ca0d2a5b5531956b9e273b45cf664cae2b145101d73b86b199978d48fdb"}, ] [[package]] name = "networkx" version = "2.8.8" description = "Python package for creating and manipulating graphs and networks" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -2667,6 +2773,7 @@ test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] name = "nltk" version = "3.8.1" description = "Natural Language Toolkit" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2690,13 +2797,14 @@ twitter = ["twython"] [[package]] name = "nodeenv" -version = "1.7.0" +version = "1.8.0" description = "Node.js virtual environment builder" +category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ - {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"}, - {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"}, + {file = "nodeenv-1.8.0-py2.py3-none-any.whl", hash = "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec"}, + {file = "nodeenv-1.8.0.tar.gz", hash = "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2"}, ] [package.dependencies] @@ -2706,6 +2814,7 @@ setuptools = "*" name = "oauth2client" version = "4.1.3" description = "OAuth 2.0 client library" +category = "main" optional = true python-versions = "*" files = [ @@ -2724,6 +2833,7 @@ six = ">=1.6.1" name = "ordered-set" version = "4.1.0" description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2736,79 +2846,81 @@ dev = ["black", "mypy", "pytest"] [[package]] name = "orjson" -version = "3.8.11" +version = "3.9.10" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" +category = "main" optional = false -python-versions = ">= 3.7" +python-versions = ">=3.8" files = [ - {file = "orjson-3.8.11-cp310-cp310-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:9fa900bdd84b4576c8dd6f3e2a00b35797f29283af328c6e3d70addfa4c2d599"}, - {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1103e597c16f82c241e1b02beadc9c91cecd93e60433ca73cb6464dcc235f37c"}, - {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d70b6db9d4e1e6057829cd7fe119c217cebaf989f88d14b2445fa69fc568d03e"}, - {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3afccf7f8684dca7f017837a315de0a1ab5c095de22a4eed206d079f9325ed72"}, - {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1fedcc428416e23a6c9de62a000c22ae33bbe0108302ad5d5935e29ea739bf37"}, - {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf48ed8d4b6ab9f23b7ee642462369d7133412d72824bad89f9bf4311c06c6a1"}, - {file = "orjson-3.8.11-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:3c55065bc2075a5ea6ffb30462d84fd3aa5bbb7ae600855c325ee5753feec715"}, - {file = "orjson-3.8.11-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:08729e339ff3146e6de56c1166f014c3d2ec3e79ffb76d6c55d52cc892e5e477"}, - {file = "orjson-3.8.11-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:358e515b8b19a275b259f5ee1e0efa2859b1d976b5ed5d016ac59f9e6c8788a3"}, - {file = "orjson-3.8.11-cp310-none-win_amd64.whl", hash = "sha256:62eb8bdcf6f4cdbe12743e88ad98696277a75f91a35e8fb93a7ea2b9f4a7000c"}, - {file = "orjson-3.8.11-cp311-cp311-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:982ab319b7a5ece4199caf2a2b3a28e62a8e289cb6418548ef98bced7e2a6cfe"}, - {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e14903bfeb591a9117b7d40d81e3ebca9700b4e77bd829d6f22ea57941bb0ebf"}, - {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:58c068f93d701f9466f667bf3b5cb4e4946aee940df2b07ca5101f1cf1b60ce4"}, - {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9486963d2e65482c565dacb366adb36d22aa22acf7274b61490244c3d87fa631"}, - {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c3b5405edc3a5f9e34516ee1a729f6c46aecf6de960ae07a7b3e95ebdd0e1d9"}, - {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b65424ceee82b94e3613233b67ef110dc58f9d83b0076ec47a506289552a861"}, - {file = "orjson-3.8.11-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:173b8f8c750590f432757292cfb197582e5c14347b913b4017561d47af0e759b"}, - {file = "orjson-3.8.11-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:37f38c8194ce086e6a9816b4b8dde5e7f383feeed92feec0385d99baf64f9b6e"}, - {file = "orjson-3.8.11-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:553fdaf9f4b5060a0dcc517ae0c511c289c184a83d6719d03c5602ed0eef0390"}, - {file = "orjson-3.8.11-cp311-none-win_amd64.whl", hash = "sha256:12f647d4da0aab1997e25bed4fa2b76782b5b9d2d1bf3066b5f0a57d34d833c4"}, - {file = "orjson-3.8.11-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:71a656f1c62e84c69060093e20cedff6a92e472d53ff5b8b9026b1b298542a68"}, - {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:176d742f53434541e50a5e659694073aa51dcbd8f29a1708a4fa1a320193c615"}, - {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b369019e597b59c4b97e9f925a3b725321fa1481c129d76c74c6ea3823f5d1e8"}, - {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a53b3c02a38aadc5302661c2ca18645093971488992df77ce14fef16f598b2e"}, - {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6d7b050135669d2335e40120215ad4120e29958c139f8bab68ce06a1cb1a1b2c"}, - {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66f0c9e4e8f6641497a7dc50591af3704b11468e9fc90cfb5874f28b0a61edb5"}, - {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:235926b38ed9b76ab2bca99ff26ece79c1c46bc10079b06e660b087aecffbe69"}, - {file = "orjson-3.8.11-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c2d3e6b65458ed71b6797f321d6e8bfeeadee9d3d31cac47806a608ea745edd7"}, - {file = "orjson-3.8.11-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4118dcd2b5a27a22af5ad92414073f25d93bca1868f1f580056003c84841062f"}, - {file = "orjson-3.8.11-cp37-none-win_amd64.whl", hash = "sha256:b68a07794834b7bd53ae2a8b4fe4bf010734cae3f0917d434c83b97acf8e5bce"}, - {file = "orjson-3.8.11-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:98befa717efaab7ddb847ebe47d473f6bd6f0cb53e98e6c3d487c7c58ba2e174"}, - {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f9415b86ef154bf247fa78a6918aac50089c296e26fb6cf15bc9d7e6402a1f8"}, - {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f7aeefac55848aeb29f20b91fa55f9e488f446201bb1bb31dc17480d113d8955"}, - {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d47f97b99beb9bcac6e288a76b559543a61e0187443d8089204b757726b1d000"}, - {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d7d5aecccfaf2052cd07ed5bec8efba9ddfea055682fcd346047b1a3e9da3034"}, - {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04b60dfc1251742e79bb075d7a7c4e37078b932a02e6f005c45761bd90c69189"}, - {file = "orjson-3.8.11-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:ef52f1d5a2f89ef9049781c90ea35d5edf74374ed6ed515c286a706d1b290267"}, - {file = "orjson-3.8.11-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7c7b4fae3b8fc69c8e76f1c0694f3decfe8a57f87e7ac7779ebb59cd71135438"}, - {file = "orjson-3.8.11-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f4e4a1001933166fd1c257b920b241b35322bef99ed7329338bf266ac053abe7"}, - {file = "orjson-3.8.11-cp38-none-win_amd64.whl", hash = "sha256:5ff10789cbc08a9fd94507c907ba55b9315e99f20345ff8ef34fac432dacd948"}, - {file = "orjson-3.8.11-cp39-cp39-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:c67ac094a4dde914297543af19f22532d7124f3a35245580d8b756c4ff2f5884"}, - {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdf201e77d3fac9d8d6f68d872ef45dccfe46f30b268bb88b6c5af5065b433aa"}, - {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3485c458670c0edb79ca149fe201f199dd9ccfe7ca3acbdef617e3c683e7b97f"}, - {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e97fdbb779a3b8f5d9fc7dfddef5325f81ee45897eb7cb4638d5d9734d42514"}, - {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2fc050f8e7f2e4061c8c9968ad0be745b11b03913b77ffa8ceca65914696886c"}, - {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2ef933da50b31c112b252be03d1ef59e0d0552c1a08e48295bd529ce42aaab8"}, - {file = "orjson-3.8.11-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:714c3e2be6ed7e4ff6e887926d6e171bfd94fdee76d7d3bfa74ee19237a2d49d"}, - {file = "orjson-3.8.11-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7e4ded77ac7432a155d1d27a83bcadf722750aea3b9e6c4d47f2a92054ab71cb"}, - {file = "orjson-3.8.11-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:382f15861a4bf447ab9d07106010e61b217ef6d4245c6cf64af0c12c4c5e2346"}, - {file = "orjson-3.8.11-cp39-none-win_amd64.whl", hash = "sha256:0bc3d1b93a73b46a698c054697eb2d27bdedbc5ea0d11ec5f1a6bfbec36346b5"}, - {file = "orjson-3.8.11.tar.gz", hash = "sha256:882c77126c42dd93bb35288632d69b1e393863a2b752de3e5fe0112833609496"}, + {file = "orjson-3.9.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c18a4da2f50050a03d1da5317388ef84a16013302a5281d6f64e4a3f406aabc4"}, + {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5148bab4d71f58948c7c39d12b14a9005b6ab35a0bdf317a8ade9a9e4d9d0bd5"}, + {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4cf7837c3b11a2dfb589f8530b3cff2bd0307ace4c301e8997e95c7468c1378e"}, + {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c62b6fa2961a1dcc51ebe88771be5319a93fd89bd247c9ddf732bc250507bc2b"}, + {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deeb3922a7a804755bbe6b5be9b312e746137a03600f488290318936c1a2d4dc"}, + {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1234dc92d011d3554d929b6cf058ac4a24d188d97be5e04355f1b9223e98bbe9"}, + {file = "orjson-3.9.10-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:06ad5543217e0e46fd7ab7ea45d506c76f878b87b1b4e369006bdb01acc05a83"}, + {file = "orjson-3.9.10-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4fd72fab7bddce46c6826994ce1e7de145ae1e9e106ebb8eb9ce1393ca01444d"}, + {file = "orjson-3.9.10-cp310-none-win32.whl", hash = "sha256:b5b7d4a44cc0e6ff98da5d56cde794385bdd212a86563ac321ca64d7f80c80d1"}, + {file = "orjson-3.9.10-cp310-none-win_amd64.whl", hash = "sha256:61804231099214e2f84998316f3238c4c2c4aaec302df12b21a64d72e2a135c7"}, + {file = "orjson-3.9.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:cff7570d492bcf4b64cc862a6e2fb77edd5e5748ad715f487628f102815165e9"}, + {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed8bc367f725dfc5cabeed1ae079d00369900231fbb5a5280cf0736c30e2adf7"}, + {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c812312847867b6335cfb264772f2a7e85b3b502d3a6b0586aa35e1858528ab1"}, + {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9edd2856611e5050004f4722922b7b1cd6268da34102667bd49d2a2b18bafb81"}, + {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:674eb520f02422546c40401f4efaf8207b5e29e420c17051cddf6c02783ff5ca"}, + {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d0dc4310da8b5f6415949bd5ef937e60aeb0eb6b16f95041b5e43e6200821fb"}, + {file = "orjson-3.9.10-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e99c625b8c95d7741fe057585176b1b8783d46ed4b8932cf98ee145c4facf499"}, + {file = "orjson-3.9.10-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ec6f18f96b47299c11203edfbdc34e1b69085070d9a3d1f302810cc23ad36bf3"}, + {file = "orjson-3.9.10-cp311-none-win32.whl", hash = "sha256:ce0a29c28dfb8eccd0f16219360530bc3cfdf6bf70ca384dacd36e6c650ef8e8"}, + {file = "orjson-3.9.10-cp311-none-win_amd64.whl", hash = "sha256:cf80b550092cc480a0cbd0750e8189247ff45457e5a023305f7ef1bcec811616"}, + {file = "orjson-3.9.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:602a8001bdf60e1a7d544be29c82560a7b49319a0b31d62586548835bbe2c862"}, + {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f295efcd47b6124b01255d1491f9e46f17ef40d3d7eabf7364099e463fb45f0f"}, + {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:92af0d00091e744587221e79f68d617b432425a7e59328ca4c496f774a356071"}, + {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5a02360e73e7208a872bf65a7554c9f15df5fe063dc047f79738998b0506a14"}, + {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858379cbb08d84fe7583231077d9a36a1a20eb72f8c9076a45df8b083724ad1d"}, + {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666c6fdcaac1f13eb982b649e1c311c08d7097cbda24f32612dae43648d8db8d"}, + {file = "orjson-3.9.10-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3fb205ab52a2e30354640780ce4587157a9563a68c9beaf52153e1cea9aa0921"}, + {file = "orjson-3.9.10-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7ec960b1b942ee3c69323b8721df2a3ce28ff40e7ca47873ae35bfafeb4555ca"}, + {file = "orjson-3.9.10-cp312-none-win_amd64.whl", hash = "sha256:3e892621434392199efb54e69edfff9f699f6cc36dd9553c5bf796058b14b20d"}, + {file = "orjson-3.9.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8b9ba0ccd5a7f4219e67fbbe25e6b4a46ceef783c42af7dbc1da548eb28b6531"}, + {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e2ecd1d349e62e3960695214f40939bbfdcaeaaa62ccc638f8e651cf0970e5f"}, + {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f433be3b3f4c66016d5a20e5b4444ef833a1f802ced13a2d852c637f69729c1"}, + {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4689270c35d4bb3102e103ac43c3f0b76b169760aff8bcf2d401a3e0e58cdb7f"}, + {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4bd176f528a8151a6efc5359b853ba3cc0e82d4cd1fab9c1300c5d957dc8f48c"}, + {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a2ce5ea4f71681623f04e2b7dadede3c7435dfb5e5e2d1d0ec25b35530e277b"}, + {file = "orjson-3.9.10-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:49f8ad582da6e8d2cf663c4ba5bf9f83cc052570a3a767487fec6af839b0e777"}, + {file = "orjson-3.9.10-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2a11b4b1a8415f105d989876a19b173f6cdc89ca13855ccc67c18efbd7cbd1f8"}, + {file = "orjson-3.9.10-cp38-none-win32.whl", hash = "sha256:a353bf1f565ed27ba71a419b2cd3db9d6151da426b61b289b6ba1422a702e643"}, + {file = "orjson-3.9.10-cp38-none-win_amd64.whl", hash = "sha256:e28a50b5be854e18d54f75ef1bb13e1abf4bc650ab9d635e4258c58e71eb6ad5"}, + {file = "orjson-3.9.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ee5926746232f627a3be1cc175b2cfad24d0170d520361f4ce3fa2fd83f09e1d"}, + {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a73160e823151f33cdc05fe2cea557c5ef12fdf276ce29bb4f1c571c8368a60"}, + {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c338ed69ad0b8f8f8920c13f529889fe0771abbb46550013e3c3d01e5174deef"}, + {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5869e8e130e99687d9e4be835116c4ebd83ca92e52e55810962446d841aba8de"}, + {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d2c1e559d96a7f94a4f581e2a32d6d610df5840881a8cba8f25e446f4d792df3"}, + {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81a3a3a72c9811b56adf8bcc829b010163bb2fc308877e50e9910c9357e78521"}, + {file = "orjson-3.9.10-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7f8fb7f5ecf4f6355683ac6881fd64b5bb2b8a60e3ccde6ff799e48791d8f864"}, + {file = "orjson-3.9.10-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c943b35ecdf7123b2d81d225397efddf0bce2e81db2f3ae633ead38e85cd5ade"}, + {file = "orjson-3.9.10-cp39-none-win32.whl", hash = "sha256:fb0b361d73f6b8eeceba47cd37070b5e6c9de5beaeaa63a1cb35c7e1a73ef088"}, + {file = "orjson-3.9.10-cp39-none-win_amd64.whl", hash = "sha256:b90f340cb6397ec7a854157fac03f0c82b744abdd1c0941a024c3c29d1340aff"}, + {file = "orjson-3.9.10.tar.gz", hash = "sha256:9ebbdbd6a046c304b1845e96fbcc5559cd296b4dfd3ad2509e33c4d9ce07d6a1"}, ] [[package]] name = "packaging" -version = "23.1" +version = "23.2" description = "Core utilities for Python packages" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, - {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] [[package]] name = "paramiko" version = "2.12.0" description = "SSH2 protocol library" +category = "main" optional = false python-versions = "*" files = [ @@ -2832,6 +2944,7 @@ invoke = ["invoke (>=1.3)"] name = "parso" version = "0.8.3" description = "A Python Parser" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2847,6 +2960,7 @@ testing = ["docopt", "pytest (<6.0.0)"] name = "passlib" version = "1.7.4" description = "comprehensive password hashing framework supporting over 30 schemes" +category = "dev" optional = false python-versions = "*" files = [ @@ -2862,30 +2976,33 @@ totp = ["cryptography"] [[package]] name = "pathspec" -version = "0.11.1" +version = "0.11.2" description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, - {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, ] [[package]] name = "pbr" -version = "5.11.1" +version = "6.0.0" description = "Python Build Reasonableness" +category = "main" optional = false python-versions = ">=2.6" files = [ - {file = "pbr-5.11.1-py2.py3-none-any.whl", hash = "sha256:567f09558bae2b3ab53cb3c1e2e33e726ff3338e7bae3db5dc954b3a44eef12b"}, - {file = "pbr-5.11.1.tar.gz", hash = "sha256:aefc51675b0b533d56bb5fd1c8c6c0522fe31896679882e1c4c63d5e4a0fccb3"}, + {file = "pbr-6.0.0-py2.py3-none-any.whl", hash = "sha256:4a7317d5e3b17a3dccb6a8cfe67dab65b20551404c52c8ed41279fa4f0cb4cda"}, + {file = "pbr-6.0.0.tar.gz", hash = "sha256:d1377122a5a00e2f940ee482999518efe16d745d423a670c27773dfbc3c9a7d9"}, ] [[package]] name = "pebble" version = "5.0.3" description = "Threading and multiprocessing eye-candy." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2897,6 +3014,7 @@ files = [ name = "pexpect" version = "4.8.0" description = "Pexpect allows easy control of interactive console applications." +category = "dev" optional = false python-versions = "*" files = [ @@ -2911,6 +3029,7 @@ ptyprocess = ">=0.5" name = "pickleshare" version = "0.7.5" description = "Tiny 'shelve'-like database with concurrency support" +category = "dev" optional = false python-versions = "*" files = [ @@ -2922,6 +3041,7 @@ files = [ name = "pkgutil-resolve-name" version = "1.3.10" description = "Resolve a name to an object." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2931,28 +3051,30 @@ files = [ [[package]] name = "platformdirs" -version = "3.5.0" +version = "3.11.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "platformdirs-3.5.0-py3-none-any.whl", hash = "sha256:47692bc24c1958e8b0f13dd727307cff1db103fca36399f457da8e05f222fdc4"}, - {file = "platformdirs-3.5.0.tar.gz", hash = "sha256:7954a68d0ba23558d753f73437c55f89027cf8f5108c19844d4b82e5af396335"}, + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, ] [package.extras] -docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] [[package]] name = "pluggy" -version = "1.0.0" +version = "1.3.0" description = "plugin and hook calling mechanisms for python" +category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, - {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, + {file = "pluggy-1.3.0-py3-none-any.whl", hash = "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7"}, + {file = "pluggy-1.3.0.tar.gz", hash = "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"}, ] [package.extras] @@ -2963,6 +3085,7 @@ testing = ["pytest", "pytest-benchmark"] name = "pre-commit" version = "2.21.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2979,13 +3102,14 @@ virtualenv = ">=20.10.0" [[package]] name = "prettytable" -version = "3.7.0" +version = "3.9.0" description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "prettytable-3.7.0-py3-none-any.whl", hash = "sha256:f4aaf2ed6e6062a82fd2e6e5289bbbe705ec2788fe401a3a1f62a1cea55526d2"}, - {file = "prettytable-3.7.0.tar.gz", hash = "sha256:ef8334ee40b7ec721651fc4d37ecc7bb2ef55fde5098d994438f0dfdaa385c0c"}, + {file = "prettytable-3.9.0-py3-none-any.whl", hash = "sha256:a71292ab7769a5de274b146b276ce938786f56c31cf7cea88b6f3775d82fe8c8"}, + {file = "prettytable-3.9.0.tar.gz", hash = "sha256:f4ed94803c23073a90620b201965e5dc0bccf1760b7a7eaf3158cab8aaffdf34"}, ] [package.dependencies] @@ -2996,13 +3120,14 @@ tests = ["pytest", "pytest-cov", "pytest-lazy-fixture"] [[package]] name = "prompt-toolkit" -version = "3.0.38" +version = "3.0.41" description = "Library for building powerful interactive command lines in Python" +category = "dev" optional = false python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.38-py3-none-any.whl", hash = "sha256:45ea77a2f7c60418850331366c81cf6b5b9cf4c7fd34616f733c5427e6abbb1f"}, - {file = "prompt_toolkit-3.0.38.tar.gz", hash = "sha256:23ac5d50538a9a38c8bde05fecb47d0b403ecd0662857a86f886f798563d5b9b"}, + {file = "prompt_toolkit-3.0.41-py3-none-any.whl", hash = "sha256:f36fe301fafb7470e86aaf90f036eef600a3210be4decf461a5b1ca8403d3cb2"}, + {file = "prompt_toolkit-3.0.41.tar.gz", hash = "sha256:941367d97fc815548822aa26c2a269fdc4eb21e9ec05fc5d447cf09bad5d75f0"}, ] [package.dependencies] @@ -3012,6 +3137,7 @@ wcwidth = "*" name = "proto-plus" version = "1.22.3" description = "Beautiful, Pythonic protocol buffers." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3029,6 +3155,7 @@ testing = ["google-api-core[grpc] (>=1.31.5)"] name = "protobuf" version = "3.19.6" description = "Protocol Buffers" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3061,25 +3188,28 @@ files = [ [[package]] name = "psutil" -version = "5.9.5" +version = "5.9.6" description = "Cross-platform lib for process and system monitoring in Python." +category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ - {file = "psutil-5.9.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:be8929ce4313f9f8146caad4272f6abb8bf99fc6cf59344a3167ecd74f4f203f"}, - {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ab8ed1a1d77c95453db1ae00a3f9c50227ebd955437bcf2a574ba8adbf6a74d5"}, - {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4aef137f3345082a3d3232187aeb4ac4ef959ba3d7c10c33dd73763fbc063da4"}, - {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ea8518d152174e1249c4f2a1c89e3e6065941df2fa13a1ab45327716a23c2b48"}, - {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:acf2aef9391710afded549ff602b5887d7a2349831ae4c26be7c807c0a39fac4"}, - {file = "psutil-5.9.5-cp27-none-win32.whl", hash = "sha256:5b9b8cb93f507e8dbaf22af6a2fd0ccbe8244bf30b1baad6b3954e935157ae3f"}, - {file = "psutil-5.9.5-cp27-none-win_amd64.whl", hash = "sha256:8c5f7c5a052d1d567db4ddd231a9d27a74e8e4a9c3f44b1032762bd7b9fdcd42"}, - {file = "psutil-5.9.5-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3c6f686f4225553615612f6d9bc21f1c0e305f75d7d8454f9b46e901778e7217"}, - {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a7dd9997128a0d928ed4fb2c2d57e5102bb6089027939f3b722f3a210f9a8da"}, - {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89518112647f1276b03ca97b65cc7f64ca587b1eb0278383017c2a0dcc26cbe4"}, - {file = "psutil-5.9.5-cp36-abi3-win32.whl", hash = "sha256:104a5cc0e31baa2bcf67900be36acde157756b9c44017b86b2c049f11957887d"}, - {file = "psutil-5.9.5-cp36-abi3-win_amd64.whl", hash = "sha256:b258c0c1c9d145a1d5ceffab1134441c4c5113b2417fafff7315a917a026c3c9"}, - {file = "psutil-5.9.5-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:c607bb3b57dc779d55e1554846352b4e358c10fff3abf3514a7a6601beebdb30"}, - {file = "psutil-5.9.5.tar.gz", hash = "sha256:5410638e4df39c54d957fc51ce03048acd8e6d60abc0f5107af51e5fb566eb3c"}, + {file = "psutil-5.9.6-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:fb8a697f11b0f5994550555fcfe3e69799e5b060c8ecf9e2f75c69302cc35c0d"}, + {file = "psutil-5.9.6-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:91ecd2d9c00db9817a4b4192107cf6954addb5d9d67a969a4f436dbc9200f88c"}, + {file = "psutil-5.9.6-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:10e8c17b4f898d64b121149afb136c53ea8b68c7531155147867b7b1ac9e7e28"}, + {file = "psutil-5.9.6-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:18cd22c5db486f33998f37e2bb054cc62fd06646995285e02a51b1e08da97017"}, + {file = "psutil-5.9.6-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:ca2780f5e038379e520281e4c032dddd086906ddff9ef0d1b9dcf00710e5071c"}, + {file = "psutil-5.9.6-cp27-none-win32.whl", hash = "sha256:70cb3beb98bc3fd5ac9ac617a327af7e7f826373ee64c80efd4eb2856e5051e9"}, + {file = "psutil-5.9.6-cp27-none-win_amd64.whl", hash = "sha256:51dc3d54607c73148f63732c727856f5febec1c7c336f8f41fcbd6315cce76ac"}, + {file = "psutil-5.9.6-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c69596f9fc2f8acd574a12d5f8b7b1ba3765a641ea5d60fb4736bf3c08a8214a"}, + {file = "psutil-5.9.6-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92e0cc43c524834af53e9d3369245e6cc3b130e78e26100d1f63cdb0abeb3d3c"}, + {file = "psutil-5.9.6-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748c9dd2583ed86347ed65d0035f45fa8c851e8d90354c122ab72319b5f366f4"}, + {file = "psutil-5.9.6-cp36-cp36m-win32.whl", hash = "sha256:3ebf2158c16cc69db777e3c7decb3c0f43a7af94a60d72e87b2823aebac3d602"}, + {file = "psutil-5.9.6-cp36-cp36m-win_amd64.whl", hash = "sha256:ff18b8d1a784b810df0b0fff3bcb50ab941c3b8e2c8de5726f9c71c601c611aa"}, + {file = "psutil-5.9.6-cp37-abi3-win32.whl", hash = "sha256:a6f01f03bf1843280f4ad16f4bde26b817847b4c1a0db59bf6419807bc5ce05c"}, + {file = "psutil-5.9.6-cp37-abi3-win_amd64.whl", hash = "sha256:6e5fb8dc711a514da83098bc5234264e551ad980cec5f85dabf4d38ed6f15e9a"}, + {file = "psutil-5.9.6-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:daecbcbd29b289aac14ece28eca6a3e60aa361754cf6da3dfb20d4d32b6c7f57"}, + {file = "psutil-5.9.6.tar.gz", hash = "sha256:e4b92ddcd7dd4cdd3f900180ea1e104932c7bce234fb88976e2a3b296441225a"}, ] [package.extras] @@ -3089,6 +3219,7 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" +category = "dev" optional = false python-versions = "*" files = [ @@ -3100,6 +3231,7 @@ files = [ name = "publicsuffix2" version = "2.20191221" description = "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package." +category = "dev" optional = false python-versions = "*" files = [ @@ -3111,6 +3243,7 @@ files = [ name = "pure-eval" version = "0.2.2" description = "Safely evaluate AST nodes without side effects" +category = "dev" optional = false python-versions = "*" files = [ @@ -3123,19 +3256,21 @@ tests = ["pytest"] [[package]] name = "pyasn1" -version = "0.5.0" +version = "0.5.1" description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, - {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, + {file = "pyasn1-0.5.1-py2.py3-none-any.whl", hash = "sha256:4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58"}, + {file = "pyasn1-0.5.1.tar.gz", hash = "sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"}, ] [[package]] name = "pyasn1-modules" version = "0.3.0" description = "A collection of ASN.1-based protocols modules" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3148,19 +3283,21 @@ pyasn1 = ">=0.4.6,<0.6.0" [[package]] name = "pycodestyle" -version = "2.10.0" +version = "2.11.1" description = "Python style guide checker" +category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pycodestyle-2.10.0-py2.py3-none-any.whl", hash = "sha256:8a4eaf0d0495c7395bdab3589ac2db602797d76207242c17d470186815706610"}, - {file = "pycodestyle-2.10.0.tar.gz", hash = "sha256:347187bdb476329d98f695c213d7295a846d1152ff4fe9bacb8a9590b8ee7053"}, + {file = "pycodestyle-2.11.1-py2.py3-none-any.whl", hash = "sha256:44fe31000b2d866f2e41841b18528a505fbd7fef9017b04eff4e2648a0fadc67"}, + {file = "pycodestyle-2.11.1.tar.gz", hash = "sha256:41ba0e7afc9752dfb53ced5489e89f8186be00e599e712660695b7a75ff2663f"}, ] [[package]] name = "pycparser" version = "2.21" description = "C parser in Python" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3170,47 +3307,48 @@ files = [ [[package]] name = "pydantic" -version = "1.10.7" +version = "1.10.13" description = "Data validation and settings management using python type hints" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic-1.10.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e79e999e539872e903767c417c897e729e015872040e56b96e67968c3b918b2d"}, - {file = "pydantic-1.10.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:01aea3a42c13f2602b7ecbbea484a98169fb568ebd9e247593ea05f01b884b2e"}, - {file = "pydantic-1.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:516f1ed9bc2406a0467dd777afc636c7091d71f214d5e413d64fef45174cfc7a"}, - {file = "pydantic-1.10.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae150a63564929c675d7f2303008d88426a0add46efd76c3fc797cd71cb1b46f"}, - {file = "pydantic-1.10.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ecbbc51391248116c0a055899e6c3e7ffbb11fb5e2a4cd6f2d0b93272118a209"}, - {file = "pydantic-1.10.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f4a2b50e2b03d5776e7f21af73e2070e1b5c0d0df255a827e7c632962f8315af"}, - {file = "pydantic-1.10.7-cp310-cp310-win_amd64.whl", hash = "sha256:a7cd2251439988b413cb0a985c4ed82b6c6aac382dbaff53ae03c4b23a70e80a"}, - {file = "pydantic-1.10.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:68792151e174a4aa9e9fc1b4e653e65a354a2fa0fed169f7b3d09902ad2cb6f1"}, - {file = "pydantic-1.10.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe2507b8ef209da71b6fb5f4e597b50c5a34b78d7e857c4f8f3115effaef5fe"}, - {file = "pydantic-1.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10a86d8c8db68086f1e30a530f7d5f83eb0685e632e411dbbcf2d5c0150e8dcd"}, - {file = "pydantic-1.10.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d75ae19d2a3dbb146b6f324031c24f8a3f52ff5d6a9f22f0683694b3afcb16fb"}, - {file = "pydantic-1.10.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:464855a7ff7f2cc2cf537ecc421291b9132aa9c79aef44e917ad711b4a93163b"}, - {file = "pydantic-1.10.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:193924c563fae6ddcb71d3f06fa153866423ac1b793a47936656e806b64e24ca"}, - {file = "pydantic-1.10.7-cp311-cp311-win_amd64.whl", hash = "sha256:b4a849d10f211389502059c33332e91327bc154acc1845f375a99eca3afa802d"}, - {file = "pydantic-1.10.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cc1dde4e50a5fc1336ee0581c1612215bc64ed6d28d2c7c6f25d2fe3e7c3e918"}, - {file = "pydantic-1.10.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e0cfe895a504c060e5d36b287ee696e2fdad02d89e0d895f83037245218a87fe"}, - {file = "pydantic-1.10.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:670bb4683ad1e48b0ecb06f0cfe2178dcf74ff27921cdf1606e527d2617a81ee"}, - {file = "pydantic-1.10.7-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:950ce33857841f9a337ce07ddf46bc84e1c4946d2a3bba18f8280297157a3fd1"}, - {file = "pydantic-1.10.7-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c15582f9055fbc1bfe50266a19771bbbef33dd28c45e78afbe1996fd70966c2a"}, - {file = "pydantic-1.10.7-cp37-cp37m-win_amd64.whl", hash = "sha256:82dffb306dd20bd5268fd6379bc4bfe75242a9c2b79fec58e1041fbbdb1f7914"}, - {file = "pydantic-1.10.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c7f51861d73e8b9ddcb9916ae7ac39fb52761d9ea0df41128e81e2ba42886cd"}, - {file = "pydantic-1.10.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6434b49c0b03a51021ade5c4daa7d70c98f7a79e95b551201fff682fc1661245"}, - {file = "pydantic-1.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64d34ab766fa056df49013bb6e79921a0265204c071984e75a09cbceacbbdd5d"}, - {file = "pydantic-1.10.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:701daea9ffe9d26f97b52f1d157e0d4121644f0fcf80b443248434958fd03dc3"}, - {file = "pydantic-1.10.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:cf135c46099ff3f919d2150a948ce94b9ce545598ef2c6c7bf55dca98a304b52"}, - {file = "pydantic-1.10.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b0f85904f73161817b80781cc150f8b906d521fa11e3cdabae19a581c3606209"}, - {file = "pydantic-1.10.7-cp38-cp38-win_amd64.whl", hash = "sha256:9f6f0fd68d73257ad6685419478c5aece46432f4bdd8d32c7345f1986496171e"}, - {file = "pydantic-1.10.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c230c0d8a322276d6e7b88c3f7ce885f9ed16e0910354510e0bae84d54991143"}, - {file = "pydantic-1.10.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:976cae77ba6a49d80f461fd8bba183ff7ba79f44aa5cfa82f1346b5626542f8e"}, - {file = "pydantic-1.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d45fc99d64af9aaf7e308054a0067fdcd87ffe974f2442312372dfa66e1001d"}, - {file = "pydantic-1.10.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d2a5ebb48958754d386195fe9e9c5106f11275867051bf017a8059410e9abf1f"}, - {file = "pydantic-1.10.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:abfb7d4a7cd5cc4e1d1887c43503a7c5dd608eadf8bc615413fc498d3e4645cd"}, - {file = "pydantic-1.10.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:80b1fab4deb08a8292d15e43a6edccdffa5377a36a4597bb545b93e79c5ff0a5"}, - {file = "pydantic-1.10.7-cp39-cp39-win_amd64.whl", hash = "sha256:d71e69699498b020ea198468e2480a2f1e7433e32a3a99760058c6520e2bea7e"}, - {file = "pydantic-1.10.7-py3-none-any.whl", hash = "sha256:0cd181f1d0b1d00e2b705f1bf1ac7799a2d938cce3376b8007df62b29be3c2c6"}, - {file = "pydantic-1.10.7.tar.gz", hash = "sha256:cfc83c0678b6ba51b0532bea66860617c4cd4251ecf76e9846fa5a9f3454e97e"}, + {file = "pydantic-1.10.13-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:efff03cc7a4f29d9009d1c96ceb1e7a70a65cfe86e89d34e4a5f2ab1e5693737"}, + {file = "pydantic-1.10.13-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ecea2b9d80e5333303eeb77e180b90e95eea8f765d08c3d278cd56b00345d01"}, + {file = "pydantic-1.10.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1740068fd8e2ef6eb27a20e5651df000978edce6da6803c2bef0bc74540f9548"}, + {file = "pydantic-1.10.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84bafe2e60b5e78bc64a2941b4c071a4b7404c5c907f5f5a99b0139781e69ed8"}, + {file = "pydantic-1.10.13-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bc0898c12f8e9c97f6cd44c0ed70d55749eaf783716896960b4ecce2edfd2d69"}, + {file = "pydantic-1.10.13-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:654db58ae399fe6434e55325a2c3e959836bd17a6f6a0b6ca8107ea0571d2e17"}, + {file = "pydantic-1.10.13-cp310-cp310-win_amd64.whl", hash = "sha256:75ac15385a3534d887a99c713aa3da88a30fbd6204a5cd0dc4dab3d770b9bd2f"}, + {file = "pydantic-1.10.13-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c553f6a156deb868ba38a23cf0df886c63492e9257f60a79c0fd8e7173537653"}, + {file = "pydantic-1.10.13-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5e08865bc6464df8c7d61439ef4439829e3ab62ab1669cddea8dd00cd74b9ffe"}, + {file = "pydantic-1.10.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e31647d85a2013d926ce60b84f9dd5300d44535a9941fe825dc349ae1f760df9"}, + {file = "pydantic-1.10.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:210ce042e8f6f7c01168b2d84d4c9eb2b009fe7bf572c2266e235edf14bacd80"}, + {file = "pydantic-1.10.13-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8ae5dd6b721459bfa30805f4c25880e0dd78fc5b5879f9f7a692196ddcb5a580"}, + {file = "pydantic-1.10.13-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f8e81fc5fb17dae698f52bdd1c4f18b6ca674d7068242b2aff075f588301bbb0"}, + {file = "pydantic-1.10.13-cp311-cp311-win_amd64.whl", hash = "sha256:61d9dce220447fb74f45e73d7ff3b530e25db30192ad8d425166d43c5deb6df0"}, + {file = "pydantic-1.10.13-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4b03e42ec20286f052490423682016fd80fda830d8e4119f8ab13ec7464c0132"}, + {file = "pydantic-1.10.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f59ef915cac80275245824e9d771ee939133be38215555e9dc90c6cb148aaeb5"}, + {file = "pydantic-1.10.13-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a1f9f747851338933942db7af7b6ee8268568ef2ed86c4185c6ef4402e80ba8"}, + {file = "pydantic-1.10.13-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:97cce3ae7341f7620a0ba5ef6cf043975cd9d2b81f3aa5f4ea37928269bc1b87"}, + {file = "pydantic-1.10.13-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854223752ba81e3abf663d685f105c64150873cc6f5d0c01d3e3220bcff7d36f"}, + {file = "pydantic-1.10.13-cp37-cp37m-win_amd64.whl", hash = "sha256:b97c1fac8c49be29486df85968682b0afa77e1b809aff74b83081cc115e52f33"}, + {file = "pydantic-1.10.13-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c958d053453a1c4b1c2062b05cd42d9d5c8eb67537b8d5a7e3c3032943ecd261"}, + {file = "pydantic-1.10.13-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c5370a7edaac06daee3af1c8b1192e305bc102abcbf2a92374b5bc793818599"}, + {file = "pydantic-1.10.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d6f6e7305244bddb4414ba7094ce910560c907bdfa3501e9db1a7fd7eaea127"}, + {file = "pydantic-1.10.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3a3c792a58e1622667a2837512099eac62490cdfd63bd407993aaf200a4cf1f"}, + {file = "pydantic-1.10.13-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c636925f38b8db208e09d344c7aa4f29a86bb9947495dd6b6d376ad10334fb78"}, + {file = "pydantic-1.10.13-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:678bcf5591b63cc917100dc50ab6caebe597ac67e8c9ccb75e698f66038ea953"}, + {file = "pydantic-1.10.13-cp38-cp38-win_amd64.whl", hash = "sha256:6cf25c1a65c27923a17b3da28a0bdb99f62ee04230c931d83e888012851f4e7f"}, + {file = "pydantic-1.10.13-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8ef467901d7a41fa0ca6db9ae3ec0021e3f657ce2c208e98cd511f3161c762c6"}, + {file = "pydantic-1.10.13-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:968ac42970f57b8344ee08837b62f6ee6f53c33f603547a55571c954a4225691"}, + {file = "pydantic-1.10.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9849f031cf8a2f0a928fe885e5a04b08006d6d41876b8bbd2fc68a18f9f2e3fd"}, + {file = "pydantic-1.10.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:56e3ff861c3b9c6857579de282ce8baabf443f42ffba355bf070770ed63e11e1"}, + {file = "pydantic-1.10.13-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f00790179497767aae6bcdc36355792c79e7bbb20b145ff449700eb076c5f96"}, + {file = "pydantic-1.10.13-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:75b297827b59bc229cac1a23a2f7a4ac0031068e5be0ce385be1462e7e17a35d"}, + {file = "pydantic-1.10.13-cp39-cp39-win_amd64.whl", hash = "sha256:e70ca129d2053fb8b728ee7d1af8e553a928d7e301a311094b8a0501adc8763d"}, + {file = "pydantic-1.10.13-py3-none-any.whl", hash = "sha256:b87326822e71bd5f313e7d3bfdc77ac3247035ac10b0c0618bd99dcf95b1e687"}, + {file = "pydantic-1.10.13.tar.gz", hash = "sha256:32c8b48dcd3b2ac4e78b0ba4af3a2c2eb6048cb75202f0ea7b34feb740efc340"}, ] [package.dependencies] @@ -3224,6 +3362,7 @@ email = ["email-validator (>=1.0.3)"] name = "pydivert" version = "2.1.0" description = "Python binding to windivert driver" +category = "dev" optional = false python-versions = "*" files = [ @@ -3237,22 +3376,25 @@ test = ["codecov (>=2.0.5)", "hypothesis (>=3.5.3)", "mock (>=1.0.1)", "pytest ( [[package]] name = "pygments" -version = "2.15.1" +version = "2.17.1" description = "Pygments is a syntax highlighting package written in Python." +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "Pygments-2.15.1-py3-none-any.whl", hash = "sha256:db2db3deb4b4179f399a09054b023b6a586b76499d36965813c71aa8ed7b5fd1"}, - {file = "Pygments-2.15.1.tar.gz", hash = "sha256:8ace4d3c1dd481894b2005f560ead0f9f19ee64fe983366be1a21e171d12775c"}, + {file = "pygments-2.17.1-py3-none-any.whl", hash = "sha256:1b37f1b1e1bff2af52ecaf28cc601e2ef7077000b227a0675da25aef85784bc4"}, + {file = "pygments-2.17.1.tar.gz", hash = "sha256:e45a0e74bf9c530f564ca81b8952343be986a29f6afe7f5ad95c5f06b7bdf5e8"}, ] [package.extras] plugins = ["importlib-metadata"] +windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pykwalify" version = "1.8.0" description = "Python lib/cli for JSON/YAML schema validation" +category = "main" optional = false python-versions = "*" files = [ @@ -3269,6 +3411,7 @@ python-dateutil = ">=2.8.0" name = "pylint" version = "2.12.2" description = "python code static checker" +category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -3289,6 +3432,7 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\"" name = "pynacl" version = "1.5.0" description = "Python binding to the Networking and Cryptography (NaCl) library" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3315,6 +3459,7 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] name = "pyopenssl" version = "22.0.0" description = "Python wrapper module around the OpenSSL library" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3333,6 +3478,7 @@ test = ["flaky", "pretend", "pytest (>=3.0.1)"] name = "pyparsing" version = "3.0.9" description = "pyparsing module - Classes and methods to define and execute parsing grammars" +category = "main" optional = false python-versions = ">=3.6.8" files = [ @@ -3347,6 +3493,7 @@ diagrams = ["jinja2", "railroad-diagrams"] name = "pypdf2" version = "1.28.6" description = "A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files" +category = "main" optional = false python-versions = ">=2.7" files = [ @@ -3358,6 +3505,7 @@ files = [ name = "pyperclip" version = "1.8.2" description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" +category = "dev" optional = false python-versions = "*" files = [ @@ -3368,6 +3516,7 @@ files = [ name = "pyreadline3" version = "3.4.1" description = "A python implementation of GNU readline." +category = "main" optional = false python-versions = "*" files = [ @@ -3375,46 +3524,11 @@ files = [ {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, ] -[[package]] -name = "pyrsistent" -version = "0.19.3" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, - {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, - {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, - {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, - {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, - {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, -] - [[package]] name = "pyspellchecker" version = "0.6.3" description = "Pure python spell checker based on work by Peter Norvig" +category = "main" optional = false python-versions = "*" files = [ @@ -3424,13 +3538,14 @@ files = [ [[package]] name = "pytest" -version = "7.3.1" +version = "7.4.3" description = "pytest: simple powerful testing with Python" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.3.1-py3-none-any.whl", hash = "sha256:3799fa815351fea3a5e96ac7e503a96fa51cc9942c3753cda7651b93c1cfa362"}, - {file = "pytest-7.3.1.tar.gz", hash = "sha256:434afafd78b1d78ed0addf160ad2b77a30d35d4bdf8af234fe621919d9ed15e3"}, + {file = "pytest-7.4.3-py3-none-any.whl", hash = "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac"}, + {file = "pytest-7.4.3.tar.gz", hash = "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5"}, ] [package.dependencies] @@ -3442,17 +3557,18 @@ pluggy = ">=0.12,<2.0" tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] +testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] name = "pytest-cov" -version = "4.0.0" +version = "4.1.0" description = "Pytest plugin for measuring coverage." +category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "pytest-cov-4.0.0.tar.gz", hash = "sha256:996b79efde6433cdbd0088872dbc5fb3ed7fe1578b68cdbba634f14bb8dd0470"}, - {file = "pytest_cov-4.0.0-py3-none-any.whl", hash = "sha256:2feb1b751d66a8bd934e5edfa2e961d11309dc37b73b0eabe73b5945fee20f6b"}, + {file = "pytest-cov-4.1.0.tar.gz", hash = "sha256:3904b13dfbfec47f003b8e77fd5b589cd11904a21ddf1ab38a64f204d6a10ef6"}, + {file = "pytest_cov-4.1.0-py3-none-any.whl", hash = "sha256:6ba70b9e97e69fcc3fb45bfeab2d0a138fb65c4d0d6a41ef33983ad114be8c3a"}, ] [package.dependencies] @@ -3466,6 +3582,7 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-datadir-ng" version = "1.1.1" description = "Fixtures for pytest allowing test functions/methods to easily retrieve test resources from the local filesystem." +category = "dev" optional = false python-versions = "*" files = [ @@ -3480,6 +3597,7 @@ pytest = "*" name = "pytest-freezegun" version = "0.4.2" description = "Wrap tests with fixtures in freeze_time" +category = "main" optional = false python-versions = "*" files = [ @@ -3493,13 +3611,14 @@ pytest = ">=3.0.0" [[package]] name = "pytest-mock" -version = "3.10.0" +version = "3.12.0" description = "Thin-wrapper around the mock package for easier use with pytest" +category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pytest-mock-3.10.0.tar.gz", hash = "sha256:fbbdb085ef7c252a326fd8cdcac0aa3b1333d8811f131bdcc701002e1be7ed4f"}, - {file = "pytest_mock-3.10.0-py3-none-any.whl", hash = "sha256:f4c973eeae0282963eb293eb173ce91b091a79c1334455acfac9ddee8a1c784b"}, + {file = "pytest-mock-3.12.0.tar.gz", hash = "sha256:31a40f038c22cad32287bb43932054451ff5583ff094bca6f675df2f8bc1a6e9"}, + {file = "pytest_mock-3.12.0-py3-none-any.whl", hash = "sha256:0972719a7263072da3a21c7f4773069bcc7486027d7e8e1f81d98a47e701bc4f"}, ] [package.dependencies] @@ -3508,10 +3627,26 @@ 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." +category = "dev" +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" description = "A plugin to fake subprocess for pytest" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3531,6 +3666,7 @@ test = ["Pygments (>=2.0)", "anyio", "coverage", "docutils (>=0.12)", "pytest (> name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ @@ -3545,6 +3681,7 @@ six = ">=1.5" name = "python-dotenv" version = "0.20.0" description = "Read key-value pairs from a .env file and set them as environment variables" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3557,19 +3694,21 @@ cli = ["click (>=5.0)"] [[package]] name = "pytz" -version = "2023.3" +version = "2023.3.post1" description = "World timezone definitions, modern and historical" +category = "main" optional = false python-versions = "*" files = [ - {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, - {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, + {file = "pytz-2023.3.post1-py2.py3-none-any.whl", hash = "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7"}, + {file = "pytz-2023.3.post1.tar.gz", hash = "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b"}, ] [[package]] name = "pytz-deprecation-shim" version = "0.1.0.post0" description = "Shims to make deprecation of pytz easier" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3585,6 +3724,7 @@ tzdata = {version = "*", markers = "python_version >= \"3.6\""} name = "pyu2f" version = "0.1.5" description = "U2F host library for interacting with a U2F device over USB." +category = "main" optional = true python-versions = "*" files = [ @@ -3598,6 +3738,7 @@ six = "*" name = "pywin32" version = "227" description = "Python for Window Extensions" +category = "main" optional = false python-versions = "*" files = [ @@ -3617,255 +3758,291 @@ files = [ [[package]] name = "pyyaml" -version = "6.0" +version = "6.0.1" description = "YAML parser and emitter for Python" +category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, - {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, - {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, - {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, - {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, - {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, - {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, - {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, - {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, - {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, - {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, - {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, - {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, - {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, - {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, - {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, - {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, - {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, ] [[package]] name = "pyzmq" -version = "25.0.2" +version = "25.1.1" description = "Python bindings for 0MQ" +category = "dev" optional = false python-versions = ">=3.6" files = [ - {file = "pyzmq-25.0.2-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ac178e666c097c8d3deb5097b58cd1316092fc43e8ef5b5fdb259b51da7e7315"}, - {file = "pyzmq-25.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:659e62e1cbb063151c52f5b01a38e1df6b54feccfa3e2509d44c35ca6d7962ee"}, - {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8280ada89010735a12b968ec3ea9a468ac2e04fddcc1cede59cb7f5178783b9c"}, - {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9b5eeb5278a8a636bb0abdd9ff5076bcbb836cd2302565df53ff1fa7d106d54"}, - {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a2e5fe42dfe6b73ca120b97ac9f34bfa8414feb15e00e37415dbd51cf227ef6"}, - {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:827bf60e749e78acb408a6c5af6688efbc9993e44ecc792b036ec2f4b4acf485"}, - {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7b504ae43d37e282301da586529e2ded8b36d4ee2cd5e6db4386724ddeaa6bbc"}, - {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:cb1f69a0a2a2b1aae8412979dd6293cc6bcddd4439bf07e4758d864ddb112354"}, - {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2b9c9cc965cdf28381e36da525dcb89fc1571d9c54800fdcd73e3f73a2fc29bd"}, - {file = "pyzmq-25.0.2-cp310-cp310-win32.whl", hash = "sha256:24abbfdbb75ac5039205e72d6c75f10fc39d925f2df8ff21ebc74179488ebfca"}, - {file = "pyzmq-25.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6a821a506822fac55d2df2085a52530f68ab15ceed12d63539adc32bd4410f6e"}, - {file = "pyzmq-25.0.2-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:9af0bb0277e92f41af35e991c242c9c71920169d6aa53ade7e444f338f4c8128"}, - {file = "pyzmq-25.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:54a96cf77684a3a537b76acfa7237b1e79a8f8d14e7f00e0171a94b346c5293e"}, - {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88649b19ede1cab03b96b66c364cbbf17c953615cdbc844f7f6e5f14c5e5261c"}, - {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:715cff7644a80a7795953c11b067a75f16eb9fc695a5a53316891ebee7f3c9d5"}, - {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:312b3f0f066b4f1d17383aae509bacf833ccaf591184a1f3c7a1661c085063ae"}, - {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d488c5c8630f7e782e800869f82744c3aca4aca62c63232e5d8c490d3d66956a"}, - {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:38d9f78d69bcdeec0c11e0feb3bc70f36f9b8c44fc06e5d06d91dc0a21b453c7"}, - {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3059a6a534c910e1d5d068df42f60d434f79e6cc6285aa469b384fa921f78cf8"}, - {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6526d097b75192f228c09d48420854d53dfbc7abbb41b0e26f363ccb26fbc177"}, - {file = "pyzmq-25.0.2-cp311-cp311-win32.whl", hash = "sha256:5c5fbb229e40a89a2fe73d0c1181916f31e30f253cb2d6d91bea7927c2e18413"}, - {file = "pyzmq-25.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:ed15e3a2c3c2398e6ae5ce86d6a31b452dfd6ad4cd5d312596b30929c4b6e182"}, - {file = "pyzmq-25.0.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:032f5c8483c85bf9c9ca0593a11c7c749d734ce68d435e38c3f72e759b98b3c9"}, - {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:374b55516393bfd4d7a7daa6c3b36d6dd6a31ff9d2adad0838cd6a203125e714"}, - {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:08bfcc21b5997a9be4fefa405341320d8e7f19b4d684fb9c0580255c5bd6d695"}, - {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1a843d26a8da1b752c74bc019c7b20e6791ee813cd6877449e6a1415589d22ff"}, - {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:b48616a09d7df9dbae2f45a0256eee7b794b903ddc6d8657a9948669b345f220"}, - {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d4427b4a136e3b7f85516c76dd2e0756c22eec4026afb76ca1397152b0ca8145"}, - {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:26b0358e8933990502f4513c991c9935b6c06af01787a36d133b7c39b1df37fa"}, - {file = "pyzmq-25.0.2-cp36-cp36m-win32.whl", hash = "sha256:c8fedc3ccd62c6b77dfe6f43802057a803a411ee96f14e946f4a76ec4ed0e117"}, - {file = "pyzmq-25.0.2-cp36-cp36m-win_amd64.whl", hash = "sha256:2da6813b7995b6b1d1307329c73d3e3be2fd2d78e19acfc4eff2e27262732388"}, - {file = "pyzmq-25.0.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a35960c8b2f63e4ef67fd6731851030df68e4b617a6715dd11b4b10312d19fef"}, - {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eef2a0b880ab40aca5a878933376cb6c1ec483fba72f7f34e015c0f675c90b20"}, - {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:85762712b74c7bd18e340c3639d1bf2f23735a998d63f46bb6584d904b5e401d"}, - {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:64812f29d6eee565e129ca14b0c785744bfff679a4727137484101b34602d1a7"}, - {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:510d8e55b3a7cd13f8d3e9121edf0a8730b87d925d25298bace29a7e7bc82810"}, - {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b164cc3c8acb3d102e311f2eb6f3c305865ecb377e56adc015cb51f721f1dda6"}, - {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:28fdb9224a258134784a9cf009b59265a9dde79582fb750d4e88a6bcbc6fa3dc"}, - {file = "pyzmq-25.0.2-cp37-cp37m-win32.whl", hash = "sha256:dd771a440effa1c36d3523bc6ba4e54ff5d2e54b4adcc1e060d8f3ca3721d228"}, - {file = "pyzmq-25.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:9bdc40efb679b9dcc39c06d25629e55581e4c4f7870a5e88db4f1c51ce25e20d"}, - {file = "pyzmq-25.0.2-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:1f82906a2d8e4ee310f30487b165e7cc8ed09c009e4502da67178b03083c4ce0"}, - {file = "pyzmq-25.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:21ec0bf4831988af43c8d66ba3ccd81af2c5e793e1bf6790eb2d50e27b3c570a"}, - {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abbce982a17c88d2312ec2cf7673985d444f1beaac6e8189424e0a0e0448dbb3"}, - {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9e1d2f2d86fc75ed7f8845a992c5f6f1ab5db99747fb0d78b5e4046d041164d2"}, - {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2e92ff20ad5d13266bc999a29ed29a3b5b101c21fdf4b2cf420c09db9fb690e"}, - {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:edbbf06cc2719889470a8d2bf5072bb00f423e12de0eb9ffec946c2c9748e149"}, - {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:77942243ff4d14d90c11b2afd8ee6c039b45a0be4e53fb6fa7f5e4fd0b59da39"}, - {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ab046e9cb902d1f62c9cc0eca055b1d11108bdc271caf7c2171487298f229b56"}, - {file = "pyzmq-25.0.2-cp38-cp38-win32.whl", hash = "sha256:ad761cfbe477236802a7ab2c080d268c95e784fe30cafa7e055aacd1ca877eb0"}, - {file = "pyzmq-25.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:8560756318ec7c4c49d2c341012167e704b5a46d9034905853c3d1ade4f55bee"}, - {file = "pyzmq-25.0.2-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:ab2c056ac503f25a63f6c8c6771373e2a711b98b304614151dfb552d3d6c81f6"}, - {file = "pyzmq-25.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cca8524b61c0eaaa3505382dc9b9a3bc8165f1d6c010fdd1452c224225a26689"}, - {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cfb9f7eae02d3ac42fbedad30006b7407c984a0eb4189a1322241a20944d61e5"}, - {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5eaeae038c68748082137d6896d5c4db7927e9349237ded08ee1bbd94f7361c9"}, - {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a31992a8f8d51663ebf79df0df6a04ffb905063083d682d4380ab8d2c67257c"}, - {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6a979e59d2184a0c8f2ede4b0810cbdd86b64d99d9cc8a023929e40dce7c86cc"}, - {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1f124cb73f1aa6654d31b183810febc8505fd0c597afa127c4f40076be4574e0"}, - {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:65c19a63b4a83ae45d62178b70223adeee5f12f3032726b897431b6553aa25af"}, - {file = "pyzmq-25.0.2-cp39-cp39-win32.whl", hash = "sha256:83d822e8687621bed87404afc1c03d83fa2ce39733d54c2fd52d8829edb8a7ff"}, - {file = "pyzmq-25.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:24683285cc6b7bf18ad37d75b9db0e0fefe58404e7001f1d82bf9e721806daa7"}, - {file = "pyzmq-25.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4a4b4261eb8f9ed71f63b9eb0198dd7c934aa3b3972dac586d0ef502ba9ab08b"}, - {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:62ec8d979f56c0053a92b2b6a10ff54b9ec8a4f187db2b6ec31ee3dd6d3ca6e2"}, - {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:affec1470351178e892121b3414c8ef7803269f207bf9bef85f9a6dd11cde264"}, - {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffc71111433bd6ec8607a37b9211f4ef42e3d3b271c6d76c813669834764b248"}, - {file = "pyzmq-25.0.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:6fadc60970714d86eff27821f8fb01f8328dd36bebd496b0564a500fe4a9e354"}, - {file = "pyzmq-25.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:269968f2a76c0513490aeb3ba0dc3c77b7c7a11daa894f9d1da88d4a0db09835"}, - {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f7c8b8368e84381ae7c57f1f5283b029c888504aaf4949c32e6e6fb256ec9bf0"}, - {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:25e6873a70ad5aa31e4a7c41e5e8c709296edef4a92313e1cd5fc87bbd1874e2"}, - {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b733076ff46e7db5504c5e7284f04a9852c63214c74688bdb6135808531755a3"}, - {file = "pyzmq-25.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:a6f6ae12478fdc26a6d5fdb21f806b08fa5403cd02fd312e4cb5f72df078f96f"}, - {file = "pyzmq-25.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:67da1c213fbd208906ab3470cfff1ee0048838365135a9bddc7b40b11e6d6c89"}, - {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531e36d9fcd66f18de27434a25b51d137eb546931033f392e85674c7a7cea853"}, - {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34a6fddd159ff38aa9497b2e342a559f142ab365576284bc8f77cb3ead1f79c5"}, - {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b491998ef886662c1f3d49ea2198055a9a536ddf7430b051b21054f2a5831800"}, - {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5d496815074e3e3d183fe2c7fcea2109ad67b74084c254481f87b64e04e9a471"}, - {file = "pyzmq-25.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:56a94ab1d12af982b55ca96c6853db6ac85505e820d9458ac76364c1998972f4"}, - {file = "pyzmq-25.0.2.tar.gz", hash = "sha256:6b8c1bbb70e868dc88801aa532cae6bd4e3b5233784692b786f17ad2962e5149"}, + {file = "pyzmq-25.1.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:381469297409c5adf9a0e884c5eb5186ed33137badcbbb0560b86e910a2f1e76"}, + {file = "pyzmq-25.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:955215ed0604dac5b01907424dfa28b40f2b2292d6493445dd34d0dfa72586a8"}, + {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:985bbb1316192b98f32e25e7b9958088431d853ac63aca1d2c236f40afb17c83"}, + {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:afea96f64efa98df4da6958bae37f1cbea7932c35878b185e5982821bc883369"}, + {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76705c9325d72a81155bb6ab48d4312e0032bf045fb0754889133200f7a0d849"}, + {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:77a41c26205d2353a4c94d02be51d6cbdf63c06fbc1295ea57dad7e2d3381b71"}, + {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:12720a53e61c3b99d87262294e2b375c915fea93c31fc2336898c26d7aed34cd"}, + {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:57459b68e5cd85b0be8184382cefd91959cafe79ae019e6b1ae6e2ba8a12cda7"}, + {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:292fe3fc5ad4a75bc8df0dfaee7d0babe8b1f4ceb596437213821f761b4589f9"}, + {file = "pyzmq-25.1.1-cp310-cp310-win32.whl", hash = "sha256:35b5ab8c28978fbbb86ea54958cd89f5176ce747c1fb3d87356cf698048a7790"}, + {file = "pyzmq-25.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:11baebdd5fc5b475d484195e49bae2dc64b94a5208f7c89954e9e354fc609d8f"}, + {file = "pyzmq-25.1.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:d20a0ddb3e989e8807d83225a27e5c2eb2260eaa851532086e9e0fa0d5287d83"}, + {file = "pyzmq-25.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e1c1be77bc5fb77d923850f82e55a928f8638f64a61f00ff18a67c7404faf008"}, + {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d89528b4943d27029a2818f847c10c2cecc79fa9590f3cb1860459a5be7933eb"}, + {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90f26dc6d5f241ba358bef79be9ce06de58d477ca8485e3291675436d3827cf8"}, + {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2b92812bd214018e50b6380ea3ac0c8bb01ac07fcc14c5f86a5bb25e74026e9"}, + {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:2f957ce63d13c28730f7fd6b72333814221c84ca2421298f66e5143f81c9f91f"}, + {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:047a640f5c9c6ade7b1cc6680a0e28c9dd5a0825135acbd3569cc96ea00b2505"}, + {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7f7e58effd14b641c5e4dec8c7dab02fb67a13df90329e61c869b9cc607ef752"}, + {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c2910967e6ab16bf6fbeb1f771c89a7050947221ae12a5b0b60f3bca2ee19bca"}, + {file = "pyzmq-25.1.1-cp311-cp311-win32.whl", hash = "sha256:76c1c8efb3ca3a1818b837aea423ff8a07bbf7aafe9f2f6582b61a0458b1a329"}, + {file = "pyzmq-25.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:44e58a0554b21fc662f2712814a746635ed668d0fbc98b7cb9d74cb798d202e6"}, + {file = "pyzmq-25.1.1-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:e1ffa1c924e8c72778b9ccd386a7067cddf626884fd8277f503c48bb5f51c762"}, + {file = "pyzmq-25.1.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1af379b33ef33757224da93e9da62e6471cf4a66d10078cf32bae8127d3d0d4a"}, + {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cff084c6933680d1f8b2f3b4ff5bbb88538a4aac00d199ac13f49d0698727ecb"}, + {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2400a94f7dd9cb20cd012951a0cbf8249e3d554c63a9c0cdfd5cbb6c01d2dec"}, + {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d81f1ddae3858b8299d1da72dd7d19dd36aab654c19671aa8a7e7fb02f6638a"}, + {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:255ca2b219f9e5a3a9ef3081512e1358bd4760ce77828e1028b818ff5610b87b"}, + {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a882ac0a351288dd18ecae3326b8a49d10c61a68b01419f3a0b9a306190baf69"}, + {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:724c292bb26365659fc434e9567b3f1adbdb5e8d640c936ed901f49e03e5d32e"}, + {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ca1ed0bb2d850aa8471387882247c68f1e62a4af0ce9c8a1dbe0d2bf69e41fb"}, + {file = "pyzmq-25.1.1-cp312-cp312-win32.whl", hash = "sha256:b3451108ab861040754fa5208bca4a5496c65875710f76789a9ad27c801a0075"}, + {file = "pyzmq-25.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:eadbefd5e92ef8a345f0525b5cfd01cf4e4cc651a2cffb8f23c0dd184975d787"}, + {file = "pyzmq-25.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:db0b2af416ba735c6304c47f75d348f498b92952f5e3e8bff449336d2728795d"}, + {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7c133e93b405eb0d36fa430c94185bdd13c36204a8635470cccc200723c13bb"}, + {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:273bc3959bcbff3f48606b28229b4721716598d76b5aaea2b4a9d0ab454ec062"}, + {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:cbc8df5c6a88ba5ae385d8930da02201165408dde8d8322072e3e5ddd4f68e22"}, + {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:18d43df3f2302d836f2a56f17e5663e398416e9dd74b205b179065e61f1a6edf"}, + {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:73461eed88a88c866656e08f89299720a38cb4e9d34ae6bf5df6f71102570f2e"}, + {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:34c850ce7976d19ebe7b9d4b9bb8c9dfc7aac336c0958e2651b88cbd46682123"}, + {file = "pyzmq-25.1.1-cp36-cp36m-win32.whl", hash = "sha256:d2045d6d9439a0078f2a34b57c7b18c4a6aef0bee37f22e4ec9f32456c852c71"}, + {file = "pyzmq-25.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:458dea649f2f02a0b244ae6aef8dc29325a2810aa26b07af8374dc2a9faf57e3"}, + {file = "pyzmq-25.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7cff25c5b315e63b07a36f0c2bab32c58eafbe57d0dce61b614ef4c76058c115"}, + {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1579413ae492b05de5a6174574f8c44c2b9b122a42015c5292afa4be2507f28"}, + {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3d0a409d3b28607cc427aa5c30a6f1e4452cc44e311f843e05edb28ab5e36da0"}, + {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:21eb4e609a154a57c520e3d5bfa0d97e49b6872ea057b7c85257b11e78068222"}, + {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:034239843541ef7a1aee0c7b2cb7f6aafffb005ede965ae9cbd49d5ff4ff73cf"}, + {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f8115e303280ba09f3898194791a153862cbf9eef722ad8f7f741987ee2a97c7"}, + {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1a5d26fe8f32f137e784f768143728438877d69a586ddeaad898558dc971a5ae"}, + {file = "pyzmq-25.1.1-cp37-cp37m-win32.whl", hash = "sha256:f32260e556a983bc5c7ed588d04c942c9a8f9c2e99213fec11a031e316874c7e"}, + {file = "pyzmq-25.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:abf34e43c531bbb510ae7e8f5b2b1f2a8ab93219510e2b287a944432fad135f3"}, + {file = "pyzmq-25.1.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:87e34f31ca8f168c56d6fbf99692cc8d3b445abb5bfd08c229ae992d7547a92a"}, + {file = "pyzmq-25.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c9c6c9b2c2f80747a98f34ef491c4d7b1a8d4853937bb1492774992a120f475d"}, + {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5619f3f5a4db5dbb572b095ea3cb5cc035335159d9da950830c9c4db2fbb6995"}, + {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5a34d2395073ef862b4032343cf0c32a712f3ab49d7ec4f42c9661e0294d106f"}, + {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25f0e6b78220aba09815cd1f3a32b9c7cb3e02cb846d1cfc526b6595f6046618"}, + {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3669cf8ee3520c2f13b2e0351c41fea919852b220988d2049249db10046a7afb"}, + {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:2d163a18819277e49911f7461567bda923461c50b19d169a062536fffe7cd9d2"}, + {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:df27ffddff4190667d40de7beba4a950b5ce78fe28a7dcc41d6f8a700a80a3c0"}, + {file = "pyzmq-25.1.1-cp38-cp38-win32.whl", hash = "sha256:a382372898a07479bd34bda781008e4a954ed8750f17891e794521c3e21c2e1c"}, + {file = "pyzmq-25.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:52533489f28d62eb1258a965f2aba28a82aa747202c8fa5a1c7a43b5db0e85c1"}, + {file = "pyzmq-25.1.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:03b3f49b57264909aacd0741892f2aecf2f51fb053e7d8ac6767f6c700832f45"}, + {file = "pyzmq-25.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:330f9e188d0d89080cde66dc7470f57d1926ff2fb5576227f14d5be7ab30b9fa"}, + {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2ca57a5be0389f2a65e6d3bb2962a971688cbdd30b4c0bd188c99e39c234f414"}, + {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d457aed310f2670f59cc5b57dcfced452aeeed77f9da2b9763616bd57e4dbaae"}, + {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c56d748ea50215abef7030c72b60dd723ed5b5c7e65e7bc2504e77843631c1a6"}, + {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8f03d3f0d01cb5a018debeb412441996a517b11c5c17ab2001aa0597c6d6882c"}, + {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:820c4a08195a681252f46926de10e29b6bbf3e17b30037bd4250d72dd3ddaab8"}, + {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17ef5f01d25b67ca8f98120d5fa1d21efe9611604e8eb03a5147360f517dd1e2"}, + {file = "pyzmq-25.1.1-cp39-cp39-win32.whl", hash = "sha256:04ccbed567171579ec2cebb9c8a3e30801723c575601f9a990ab25bcac6b51e2"}, + {file = "pyzmq-25.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:e61f091c3ba0c3578411ef505992d356a812fb200643eab27f4f70eed34a29ef"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ade6d25bb29c4555d718ac6d1443a7386595528c33d6b133b258f65f963bb0f6"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0c95ddd4f6e9fca4e9e3afaa4f9df8552f0ba5d1004e89ef0a68e1f1f9807c7"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48e466162a24daf86f6b5ca72444d2bf39a5e58da5f96370078be67c67adc978"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:abc719161780932c4e11aaebb203be3d6acc6b38d2f26c0f523b5b59d2fc1996"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ccf825981640b8c34ae54231b7ed00271822ea1c6d8ba1090ebd4943759abf5"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c2f20ce161ebdb0091a10c9ca0372e023ce24980d0e1f810f519da6f79c60800"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:deee9ca4727f53464daf089536e68b13e6104e84a37820a88b0a057b97bba2d2"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:aa8d6cdc8b8aa19ceb319aaa2b660cdaccc533ec477eeb1309e2a291eaacc43a"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019e59ef5c5256a2c7378f2fb8560fc2a9ff1d315755204295b2eab96b254d0a"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:b9af3757495c1ee3b5c4e945c1df7be95562277c6e5bccc20a39aec50f826cd0"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:548d6482dc8aadbe7e79d1b5806585c8120bafa1ef841167bc9090522b610fa6"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:057e824b2aae50accc0f9a0570998adc021b372478a921506fddd6c02e60308e"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2243700cc5548cff20963f0ca92d3e5e436394375ab8a354bbea2b12911b20b0"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79986f3b4af059777111409ee517da24a529bdbd46da578b33f25580adcff728"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:11d58723d44d6ed4dd677c5615b2ffb19d5c426636345567d6af82be4dff8a55"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:49d238cf4b69652257db66d0c623cd3e09b5d2e9576b56bc067a396133a00d4a"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fedbdc753827cf014c01dbbee9c3be17e5a208dcd1bf8641ce2cd29580d1f0d4"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc16ac425cc927d0a57d242589f87ee093884ea4804c05a13834d07c20db203c"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11c1d2aed9079c6b0c9550a7257a836b4a637feb334904610f06d70eb44c56d2"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e8a701123029cc240cea61dd2d16ad57cab4691804143ce80ecd9286b464d180"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:61706a6b6c24bdece85ff177fec393545a3191eeda35b07aaa1458a027ad1304"}, + {file = "pyzmq-25.1.1.tar.gz", hash = "sha256:259c22485b71abacdfa8bf79720cd7bcf4b9d128b30ea554f01ae71fdbfdaa23"}, ] [package.dependencies] cffi = {version = "*", markers = "implementation_name == \"pypy\""} +[[package]] +name = "referencing" +version = "0.31.0" +description = "JSON Referencing + Python" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.31.0-py3-none-any.whl", hash = "sha256:381b11e53dd93babb55696c71cf42aef2d36b8a150c49bf0bc301e36d536c882"}, + {file = "referencing-0.31.0.tar.gz", hash = "sha256:cc28f2c88fbe7b961a7817a0abc034c09a1e36358f82fedb4ffdf29a25398863"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + [[package]] name = "regex" -version = "2023.5.5" +version = "2023.10.3" description = "Alternative regular expression module, to replace re." +category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "regex-2023.5.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:48c9ec56579d4ba1c88f42302194b8ae2350265cb60c64b7b9a88dcb7fbde309"}, - {file = "regex-2023.5.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02f4541550459c08fdd6f97aa4e24c6f1932eec780d58a2faa2068253df7d6ff"}, - {file = "regex-2023.5.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53e22e4460f0245b468ee645156a4f84d0fc35a12d9ba79bd7d79bdcd2f9629d"}, - {file = "regex-2023.5.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b870b6f632fc74941cadc2a0f3064ed8409e6f8ee226cdfd2a85ae50473aa94"}, - {file = "regex-2023.5.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:171c52e320fe29260da550d81c6b99f6f8402450dc7777ef5ced2e848f3b6f8f"}, - {file = "regex-2023.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aad5524c2aedaf9aa14ef1bc9327f8abd915699dea457d339bebbe2f0d218f86"}, - {file = "regex-2023.5.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a0f874ee8c0bc820e649c900243c6d1e6dc435b81da1492046716f14f1a2a96"}, - {file = "regex-2023.5.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e645c757183ee0e13f0bbe56508598e2d9cd42b8abc6c0599d53b0d0b8dd1479"}, - {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a4c5da39bca4f7979eefcbb36efea04471cd68db2d38fcbb4ee2c6d440699833"}, - {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5e3f4468b8c6fd2fd33c218bbd0a1559e6a6fcf185af8bb0cc43f3b5bfb7d636"}, - {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:59e4b729eae1a0919f9e4c0fc635fbcc9db59c74ad98d684f4877be3d2607dd6"}, - {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ba73a14e9c8f9ac409863543cde3290dba39098fc261f717dc337ea72d3ebad2"}, - {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0bbd5dcb19603ab8d2781fac60114fb89aee8494f4505ae7ad141a3314abb1f9"}, - {file = "regex-2023.5.5-cp310-cp310-win32.whl", hash = "sha256:40005cbd383438aecf715a7b47fe1e3dcbc889a36461ed416bdec07e0ef1db66"}, - {file = "regex-2023.5.5-cp310-cp310-win_amd64.whl", hash = "sha256:59597cd6315d3439ed4b074febe84a439c33928dd34396941b4d377692eca810"}, - {file = "regex-2023.5.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8f08276466fedb9e36e5193a96cb944928301152879ec20c2d723d1031cd4ddd"}, - {file = "regex-2023.5.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cd46f30e758629c3ee91713529cfbe107ac50d27110fdcc326a42ce2acf4dafc"}, - {file = "regex-2023.5.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2910502f718828cecc8beff004917dcf577fc5f8f5dd40ffb1ea7612124547b"}, - {file = "regex-2023.5.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:445d6f4fc3bd9fc2bf0416164454f90acab8858cd5a041403d7a11e3356980e8"}, - {file = "regex-2023.5.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18196c16a584619c7c1d843497c069955d7629ad4a3fdee240eb347f4a2c9dbe"}, - {file = "regex-2023.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33d430a23b661629661f1fe8395be2004006bc792bb9fc7c53911d661b69dd7e"}, - {file = "regex-2023.5.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72a28979cc667e5f82ef433db009184e7ac277844eea0f7f4d254b789517941d"}, - {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f764e4dfafa288e2eba21231f455d209f4709436baeebb05bdecfb5d8ddc3d35"}, - {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23d86ad2121b3c4fc78c58f95e19173790e22ac05996df69b84e12da5816cb17"}, - {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:690a17db524ee6ac4a27efc5406530dd90e7a7a69d8360235323d0e5dafb8f5b"}, - {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:1ecf3dcff71f0c0fe3e555201cbe749fa66aae8d18f80d2cc4de8e66df37390a"}, - {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:811040d7f3dd9c55eb0d8b00b5dcb7fd9ae1761c454f444fd9f37fe5ec57143a"}, - {file = "regex-2023.5.5-cp311-cp311-win32.whl", hash = "sha256:c8c143a65ce3ca42e54d8e6fcaf465b6b672ed1c6c90022794a802fb93105d22"}, - {file = "regex-2023.5.5-cp311-cp311-win_amd64.whl", hash = "sha256:586a011f77f8a2da4b888774174cd266e69e917a67ba072c7fc0e91878178a80"}, - {file = "regex-2023.5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b6365703e8cf1644b82104cdd05270d1a9f043119a168d66c55684b1b557d008"}, - {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a56c18f21ac98209da9c54ae3ebb3b6f6e772038681d6cb43b8d53da3b09ee81"}, - {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8b942d8b3ce765dbc3b1dad0a944712a89b5de290ce8f72681e22b3c55f3cc8"}, - {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:844671c9c1150fcdac46d43198364034b961bd520f2c4fdaabfc7c7d7138a2dd"}, - {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2ce65bdeaf0a386bb3b533a28de3994e8e13b464ac15e1e67e4603dd88787fa"}, - {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fee0016cc35a8a91e8cc9312ab26a6fe638d484131a7afa79e1ce6165328a135"}, - {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:18f05d14f14a812fe9723f13afafefe6b74ca042d99f8884e62dbd34dcccf3e2"}, - {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:941b3f1b2392f0bcd6abf1bc7a322787d6db4e7457be6d1ffd3a693426a755f2"}, - {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:921473a93bcea4d00295799ab929522fc650e85c6b9f27ae1e6bb32a790ea7d3"}, - {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:e2205a81f815b5bb17e46e74cc946c575b484e5f0acfcb805fb252d67e22938d"}, - {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:385992d5ecf1a93cb85adff2f73e0402dd9ac29b71b7006d342cc920816e6f32"}, - {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:890a09cb0a62198bff92eda98b2b507305dd3abf974778bae3287f98b48907d3"}, - {file = "regex-2023.5.5-cp36-cp36m-win32.whl", hash = "sha256:821a88b878b6589c5068f4cc2cfeb2c64e343a196bc9d7ac68ea8c2a776acd46"}, - {file = "regex-2023.5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:7918a1b83dd70dc04ab5ed24c78ae833ae8ea228cef84e08597c408286edc926"}, - {file = "regex-2023.5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:338994d3d4ca4cf12f09822e025731a5bdd3a37aaa571fa52659e85ca793fb67"}, - {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a69cf0c00c4d4a929c6c7717fd918414cab0d6132a49a6d8fc3ded1988ed2ea"}, - {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f5e06df94fff8c4c85f98c6487f6636848e1dc85ce17ab7d1931df4a081f657"}, - {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8906669b03c63266b6a7693d1f487b02647beb12adea20f8840c1a087e2dfb5"}, - {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fda3e50abad8d0f48df621cf75adc73c63f7243cbe0e3b2171392b445401550"}, - {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ac2b7d341dc1bd102be849d6dd33b09701223a851105b2754339e390be0627a"}, - {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fb2b495dd94b02de8215625948132cc2ea360ae84fe6634cd19b6567709c8ae2"}, - {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:aa7d032c1d84726aa9edeb6accf079b4caa87151ca9fabacef31fa028186c66d"}, - {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:3d45864693351c15531f7e76f545ec35000d50848daa833cead96edae1665559"}, - {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21e90a288e6ba4bf44c25c6a946cb9b0f00b73044d74308b5e0afd190338297c"}, - {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:10250a093741ec7bf74bcd2039e697f519b028518f605ff2aa7ac1e9c9f97423"}, - {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:6b8d0c153f07a953636b9cdb3011b733cadd4178123ef728ccc4d5969e67f3c2"}, - {file = "regex-2023.5.5-cp37-cp37m-win32.whl", hash = "sha256:10374c84ee58c44575b667310d5bbfa89fb2e64e52349720a0182c0017512f6c"}, - {file = "regex-2023.5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:9b320677521aabf666cdd6e99baee4fb5ac3996349c3b7f8e7c4eee1c00dfe3a"}, - {file = "regex-2023.5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:afb1c70ec1e594a547f38ad6bf5e3d60304ce7539e677c1429eebab115bce56e"}, - {file = "regex-2023.5.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cf123225945aa58b3057d0fba67e8061c62d14cc8a4202630f8057df70189051"}, - {file = "regex-2023.5.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a99757ad7fe5c8a2bb44829fc57ced11253e10f462233c1255fe03888e06bc19"}, - {file = "regex-2023.5.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a623564d810e7a953ff1357f7799c14bc9beeab699aacc8b7ab7822da1e952b8"}, - {file = "regex-2023.5.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ced02e3bd55e16e89c08bbc8128cff0884d96e7f7a5633d3dc366b6d95fcd1d6"}, - {file = "regex-2023.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1cbe6b5be3b9b698d8cc4ee4dee7e017ad655e83361cd0ea8e653d65e469468"}, - {file = "regex-2023.5.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a6e4b0e0531223f53bad07ddf733af490ba2b8367f62342b92b39b29f72735a"}, - {file = "regex-2023.5.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2e9c4f778514a560a9c9aa8e5538bee759b55f6c1dcd35613ad72523fd9175b8"}, - {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:256f7f4c6ba145f62f7a441a003c94b8b1af78cee2cccacfc1e835f93bc09426"}, - {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:bd7b68fd2e79d59d86dcbc1ccd6e2ca09c505343445daaa4e07f43c8a9cc34da"}, - {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4a5059bd585e9e9504ef9c07e4bc15b0a621ba20504388875d66b8b30a5c4d18"}, - {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:6893544e06bae009916a5658ce7207e26ed17385149f35a3125f5259951f1bbe"}, - {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c64d5abe91a3dfe5ff250c6bb267ef00dbc01501518225b45a5f9def458f31fb"}, - {file = "regex-2023.5.5-cp38-cp38-win32.whl", hash = "sha256:7923470d6056a9590247ff729c05e8e0f06bbd4efa6569c916943cb2d9b68b91"}, - {file = "regex-2023.5.5-cp38-cp38-win_amd64.whl", hash = "sha256:4035d6945cb961c90c3e1c1ca2feb526175bcfed44dfb1cc77db4fdced060d3e"}, - {file = "regex-2023.5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:50fd2d9b36938d4dcecbd684777dd12a407add4f9f934f235c66372e630772b0"}, - {file = "regex-2023.5.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d19e57f888b00cd04fc38f5e18d0efbd91ccba2d45039453ab2236e6eec48d4d"}, - {file = "regex-2023.5.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd966475e963122ee0a7118ec9024388c602d12ac72860f6eea119a3928be053"}, - {file = "regex-2023.5.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db09e6c18977a33fea26fe67b7a842f706c67cf8bda1450974d0ae0dd63570df"}, - {file = "regex-2023.5.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6164d4e2a82f9ebd7752a06bd6c504791bedc6418c0196cd0a23afb7f3e12b2d"}, - {file = "regex-2023.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84397d3f750d153ebd7f958efaa92b45fea170200e2df5e0e1fd4d85b7e3f58a"}, - {file = "regex-2023.5.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9c3efee9bb53cbe7b285760c81f28ac80dc15fa48b5fe7e58b52752e642553f1"}, - {file = "regex-2023.5.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:144b5b017646b5a9392a5554a1e5db0000ae637be4971c9747566775fc96e1b2"}, - {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1189fbbb21e2c117fda5303653b61905aeeeea23de4a94d400b0487eb16d2d60"}, - {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f83fe9e10f9d0b6cf580564d4d23845b9d692e4c91bd8be57733958e4c602956"}, - {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:72aa4746993a28c841e05889f3f1b1e5d14df8d3daa157d6001a34c98102b393"}, - {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:de2f780c3242ea114dd01f84848655356af4dd561501896c751d7b885ea6d3a1"}, - {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:290fd35219486dfbc00b0de72f455ecdd63e59b528991a6aec9fdfc0ce85672e"}, - {file = "regex-2023.5.5-cp39-cp39-win32.whl", hash = "sha256:732176f5427e72fa2325b05c58ad0b45af341c459910d766f814b0584ac1f9ac"}, - {file = "regex-2023.5.5-cp39-cp39-win_amd64.whl", hash = "sha256:1307aa4daa1cbb23823d8238e1f61292fd07e4e5d8d38a6efff00b67a7cdb764"}, - {file = "regex-2023.5.5.tar.gz", hash = "sha256:7d76a8a1fc9da08296462a18f16620ba73bcbf5909e42383b253ef34d9d5141e"}, + {file = "regex-2023.10.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4c34d4f73ea738223a094d8e0ffd6d2c1a1b4c175da34d6b0de3d8d69bee6bcc"}, + {file = "regex-2023.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8f4e49fc3ce020f65411432183e6775f24e02dff617281094ba6ab079ef0915"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4cd1bccf99d3ef1ab6ba835308ad85be040e6a11b0977ef7ea8c8005f01a3c29"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:81dce2ddc9f6e8f543d94b05d56e70d03a0774d32f6cca53e978dc01e4fc75b8"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c6b4d23c04831e3ab61717a707a5d763b300213db49ca680edf8bf13ab5d91b"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c15ad0aee158a15e17e0495e1e18741573d04eb6da06d8b84af726cfc1ed02ee"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6239d4e2e0b52c8bd38c51b760cd870069f0bdf99700a62cd509d7a031749a55"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4a8bf76e3182797c6b1afa5b822d1d5802ff30284abe4599e1247be4fd6b03be"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9c727bbcf0065cbb20f39d2b4f932f8fa1631c3e01fcedc979bd4f51fe051c5"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:3ccf2716add72f80714b9a63899b67fa711b654be3fcdd34fa391d2d274ce767"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:107ac60d1bfdc3edb53be75e2a52aff7481b92817cfdddd9b4519ccf0e54a6ff"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:00ba3c9818e33f1fa974693fb55d24cdc8ebafcb2e4207680669d8f8d7cca79a"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f0a47efb1dbef13af9c9a54a94a0b814902e547b7f21acb29434504d18f36e3a"}, + {file = "regex-2023.10.3-cp310-cp310-win32.whl", hash = "sha256:36362386b813fa6c9146da6149a001b7bd063dabc4d49522a1f7aa65b725c7ec"}, + {file = "regex-2023.10.3-cp310-cp310-win_amd64.whl", hash = "sha256:c65a3b5330b54103e7d21cac3f6bf3900d46f6d50138d73343d9e5b2900b2353"}, + {file = "regex-2023.10.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:90a79bce019c442604662d17bf69df99090e24cdc6ad95b18b6725c2988a490e"}, + {file = "regex-2023.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c7964c2183c3e6cce3f497e3a9f49d182e969f2dc3aeeadfa18945ff7bdd7051"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ef80829117a8061f974b2fda8ec799717242353bff55f8a29411794d635d964"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5addc9d0209a9afca5fc070f93b726bf7003bd63a427f65ef797a931782e7edc"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c148bec483cc4b421562b4bcedb8e28a3b84fcc8f0aa4418e10898f3c2c0eb9b"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d1f21af4c1539051049796a0f50aa342f9a27cde57318f2fc41ed50b0dbc4ac"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b9ac09853b2a3e0d0082104036579809679e7715671cfbf89d83c1cb2a30f58"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ebedc192abbc7fd13c5ee800e83a6df252bec691eb2c4bedc9f8b2e2903f5e2a"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d8a993c0a0ffd5f2d3bda23d0cd75e7086736f8f8268de8a82fbc4bd0ac6791e"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:be6b7b8d42d3090b6c80793524fa66c57ad7ee3fe9722b258aec6d0672543fd0"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4023e2efc35a30e66e938de5aef42b520c20e7eda7bb5fb12c35e5d09a4c43f6"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0d47840dc05e0ba04fe2e26f15126de7c755496d5a8aae4a08bda4dd8d646c54"}, + {file = "regex-2023.10.3-cp311-cp311-win32.whl", hash = "sha256:9145f092b5d1977ec8c0ab46e7b3381b2fd069957b9862a43bd383e5c01d18c2"}, + {file = "regex-2023.10.3-cp311-cp311-win_amd64.whl", hash = "sha256:b6104f9a46bd8743e4f738afef69b153c4b8b592d35ae46db07fc28ae3d5fb7c"}, + {file = "regex-2023.10.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:bff507ae210371d4b1fe316d03433ac099f184d570a1a611e541923f78f05037"}, + {file = "regex-2023.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:be5e22bbb67924dea15039c3282fa4cc6cdfbe0cbbd1c0515f9223186fc2ec5f"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a992f702c9be9c72fa46f01ca6e18d131906a7180950958f766c2aa294d4b41"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7434a61b158be563c1362d9071358f8ab91b8d928728cd2882af060481244c9e"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2169b2dcabf4e608416f7f9468737583ce5f0a6e8677c4efbf795ce81109d7c"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9e908ef5889cda4de038892b9accc36d33d72fb3e12c747e2799a0e806ec841"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:12bd4bc2c632742c7ce20db48e0d99afdc05e03f0b4c1af90542e05b809a03d9"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bc72c231f5449d86d6c7d9cc7cd819b6eb30134bb770b8cfdc0765e48ef9c420"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bce8814b076f0ce5766dc87d5a056b0e9437b8e0cd351b9a6c4e1134a7dfbda9"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:ba7cd6dc4d585ea544c1412019921570ebd8a597fabf475acc4528210d7c4a6f"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b0c7d2f698e83f15228ba41c135501cfe7d5740181d5903e250e47f617eb4292"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5a8f91c64f390ecee09ff793319f30a0f32492e99f5dc1c72bc361f23ccd0a9a"}, + {file = "regex-2023.10.3-cp312-cp312-win32.whl", hash = "sha256:ad08a69728ff3c79866d729b095872afe1e0557251da4abb2c5faff15a91d19a"}, + {file = "regex-2023.10.3-cp312-cp312-win_amd64.whl", hash = "sha256:39cdf8d141d6d44e8d5a12a8569d5a227f645c87df4f92179bd06e2e2705e76b"}, + {file = "regex-2023.10.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4a3ee019a9befe84fa3e917a2dd378807e423d013377a884c1970a3c2792d293"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76066d7ff61ba6bf3cb5efe2428fc82aac91802844c022d849a1f0f53820502d"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfe50b61bab1b1ec260fa7cd91106fa9fece57e6beba05630afe27c71259c59b"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fd88f373cb71e6b59b7fa597e47e518282455c2734fd4306a05ca219a1991b0"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3ab05a182c7937fb374f7e946f04fb23a0c0699c0450e9fb02ef567412d2fa3"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dac37cf08fcf2094159922edc7a2784cfcc5c70f8354469f79ed085f0328ebdf"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e54ddd0bb8fb626aa1f9ba7b36629564544954fff9669b15da3610c22b9a0991"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3367007ad1951fde612bf65b0dffc8fd681a4ab98ac86957d16491400d661302"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:16f8740eb6dbacc7113e3097b0a36065a02e37b47c936b551805d40340fb9971"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:f4f2ca6df64cbdd27f27b34f35adb640b5d2d77264228554e68deda54456eb11"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:39807cbcbe406efca2a233884e169d056c35aa7e9f343d4e78665246a332f597"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:7eece6fbd3eae4a92d7c748ae825cbc1ee41a89bb1c3db05b5578ed3cfcfd7cb"}, + {file = "regex-2023.10.3-cp37-cp37m-win32.whl", hash = "sha256:ce615c92d90df8373d9e13acddd154152645c0dc060871abf6bd43809673d20a"}, + {file = "regex-2023.10.3-cp37-cp37m-win_amd64.whl", hash = "sha256:0f649fa32fe734c4abdfd4edbb8381c74abf5f34bc0b3271ce687b23729299ed"}, + {file = "regex-2023.10.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9b98b7681a9437262947f41c7fac567c7e1f6eddd94b0483596d320092004533"}, + {file = "regex-2023.10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:91dc1d531f80c862441d7b66c4505cd6ea9d312f01fb2f4654f40c6fdf5cc37a"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82fcc1f1cc3ff1ab8a57ba619b149b907072e750815c5ba63e7aa2e1163384a4"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7979b834ec7a33aafae34a90aad9f914c41fd6eaa8474e66953f3f6f7cbd4368"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef71561f82a89af6cfcbee47f0fabfdb6e63788a9258e913955d89fdd96902ab"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd829712de97753367153ed84f2de752b86cd1f7a88b55a3a775eb52eafe8a94"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00e871d83a45eee2f8688d7e6849609c2ca2a04a6d48fba3dff4deef35d14f07"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:706e7b739fdd17cb89e1fbf712d9dc21311fc2333f6d435eac2d4ee81985098c"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:cc3f1c053b73f20c7ad88b0d1d23be7e7b3901229ce89f5000a8399746a6e039"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6f85739e80d13644b981a88f529d79c5bdf646b460ba190bffcaf6d57b2a9863"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:741ba2f511cc9626b7561a440f87d658aabb3d6b744a86a3c025f866b4d19e7f"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e77c90ab5997e85901da85131fd36acd0ed2221368199b65f0d11bca44549711"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:979c24cbefaf2420c4e377ecd1f165ea08cc3d1fbb44bdc51bccbbf7c66a2cb4"}, + {file = "regex-2023.10.3-cp38-cp38-win32.whl", hash = "sha256:58837f9d221744d4c92d2cf7201c6acd19623b50c643b56992cbd2b745485d3d"}, + {file = "regex-2023.10.3-cp38-cp38-win_amd64.whl", hash = "sha256:c55853684fe08d4897c37dfc5faeff70607a5f1806c8be148f1695be4a63414b"}, + {file = "regex-2023.10.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2c54e23836650bdf2c18222c87f6f840d4943944146ca479858404fedeb9f9af"}, + {file = "regex-2023.10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:69c0771ca5653c7d4b65203cbfc5e66db9375f1078689459fe196fe08b7b4930"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ac965a998e1388e6ff2e9781f499ad1eaa41e962a40d11c7823c9952c77123e"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c0e8fae5b27caa34177bdfa5a960c46ff2f78ee2d45c6db15ae3f64ecadde14"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c56c3d47da04f921b73ff9415fbaa939f684d47293f071aa9cbb13c94afc17d"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ef1e014eed78ab650bef9a6a9cbe50b052c0aebe553fb2881e0453717573f52"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d29338556a59423d9ff7b6eb0cb89ead2b0875e08fe522f3e068b955c3e7b59b"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9c6d0ced3c06d0f183b73d3c5920727268d2201aa0fe6d55c60d68c792ff3588"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:994645a46c6a740ee8ce8df7911d4aee458d9b1bc5639bc968226763d07f00fa"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:66e2fe786ef28da2b28e222c89502b2af984858091675044d93cb50e6f46d7af"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:11175910f62b2b8c055f2b089e0fedd694fe2be3941b3e2633653bc51064c528"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:06e9abc0e4c9ab4779c74ad99c3fc10d3967d03114449acc2c2762ad4472b8ca"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:fb02e4257376ae25c6dd95a5aec377f9b18c09be6ebdefa7ad209b9137b73d48"}, + {file = "regex-2023.10.3-cp39-cp39-win32.whl", hash = "sha256:3b2c3502603fab52d7619b882c25a6850b766ebd1b18de3df23b2f939360e1bd"}, + {file = "regex-2023.10.3-cp39-cp39-win_amd64.whl", hash = "sha256:adbccd17dcaff65704c856bd29951c58a1bd4b2b0f8ad6b826dbd543fe740988"}, + {file = "regex-2023.10.3.tar.gz", hash = "sha256:3fef4f844d2290ee0ba57addcec17eec9e3df73f10a2748485dfd6a3a188cc0f"}, ] [[package]] name = "requests" -version = "2.29.0" +version = "2.31.0" description = "Python HTTP for Humans." +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "requests-2.29.0-py3-none-any.whl", hash = "sha256:e8f3c9be120d3333921d213eef078af392fba3933ab7ed2d1cba3b56f2568c3b"}, - {file = "requests-2.29.0.tar.gz", hash = "sha256:f2e34a75f4749019bb0e3effb66683630e4ffeaf75819fb51bebef1bf5aef059"}, + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, ] [package.dependencies] certifi = ">=2017.4.17" charset-normalizer = ">=2,<4" idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<1.27" +urllib3 = ">=1.21.1,<3" [package.extras] socks = ["PySocks (>=1.5.6,!=1.5.7)"] @@ -3873,13 +4050,14 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "requests-mock" -version = "1.10.0" +version = "1.11.0" description = "Mock out responses from the requests package" +category = "dev" optional = false python-versions = "*" files = [ - {file = "requests-mock-1.10.0.tar.gz", hash = "sha256:59c9c32419a9fb1ae83ec242d98e889c45bd7d7a65d48375cc243ec08441658b"}, - {file = "requests_mock-1.10.0-py2.py3-none-any.whl", hash = "sha256:2fdbb637ad17ee15c06f33d31169e71bf9fe2bdb7bc9da26185be0dd8d842699"}, + {file = "requests-mock-1.11.0.tar.gz", hash = "sha256:ef10b572b489a5f28e09b708697208c4a3b2b89ef80a9f01584340ea357ec3c4"}, + {file = "requests_mock-1.11.0-py2.py3-none-any.whl", hash = "sha256:f7fae383f228633f6bececebdab236c478ace2284d6292c6e7e2867b9ab74d15"}, ] [package.dependencies] @@ -3888,12 +4066,13 @@ six = "*" [package.extras] fixture = ["fixtures"] -test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "testrepository (>=0.0.18)", "testtools"] +test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "testtools"] [[package]] name = "retry-decorator" version = "1.1.1" description = "Retry Decorator" +category = "main" optional = true python-versions = "*" files = [ @@ -3904,6 +4083,7 @@ files = [ name = "rich" version = "12.6.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +category = "main" optional = false python-versions = ">=3.6.3,<4.0.0" files = [ @@ -3919,10 +4099,120 @@ typing-extensions = {version = ">=4.0.0,<5.0", markers = "python_version < \"3.9 [package.extras] jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] +[[package]] +name = "rpds-py" +version = "0.13.1" +description = "Python bindings to Rust's persistent data structures (rpds)" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.13.1-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:83feb0f682d75a09ddc11aa37ba5c07dd9b824b22915207f6176ea458474ff75"}, + {file = "rpds_py-0.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fa84bbe22ffa108f91631935c28a623001e335d66e393438258501e618fb0dde"}, + {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e04f8c76b8d5c70695b4e8f1d0b391d8ef91df00ef488c6c1ffb910176459bc6"}, + {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:032c242a595629aacace44128f9795110513ad27217b091e834edec2fb09e800"}, + {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91276caef95556faeb4b8f09fe4439670d3d6206fee78d47ddb6e6de837f0b4d"}, + {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d22f2cb82e0b40e427a74a93c9a4231335bbc548aed79955dde0b64ea7f88146"}, + {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63c9e2794329ef070844ff9bfc012004aeddc0468dc26970953709723f76c8a5"}, + {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c797ea56f36c6f248656f0223b11307fdf4a1886f3555eba371f34152b07677f"}, + {file = "rpds_py-0.13.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:82dbcd6463e580bcfb7561cece35046aaabeac5a9ddb775020160b14e6c58a5d"}, + {file = "rpds_py-0.13.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:736817dbbbd030a69a1faf5413a319976c9c8ba8cdcfa98c022d3b6b2e01eca6"}, + {file = "rpds_py-0.13.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f36a1e80ef4ed1996445698fd91e0d3e54738bf597c9995118b92da537d7a28"}, + {file = "rpds_py-0.13.1-cp310-none-win32.whl", hash = "sha256:4f13d3f6585bd07657a603780e99beda96a36c86acaba841f131e81393958336"}, + {file = "rpds_py-0.13.1-cp310-none-win_amd64.whl", hash = "sha256:545e94c84575057d3d5c62634611858dac859702b1519b6ffc58eca7fb1adfcf"}, + {file = "rpds_py-0.13.1-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:6bfe72b249264cc1ff2f3629be240d7d2fdc778d9d298087cdec8524c91cd11f"}, + {file = "rpds_py-0.13.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edc91c50e17f5cd945d821f0f1af830522dba0c10267c3aab186dc3dbaab8def"}, + {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2eca04a365be380ca1f8fa48b334462e19e3382c0bb7386444d8ca43aa01c481"}, + {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3e3ac5b602fea378243f993d8b707189f9061e55ebb4e56cb9fdef8166060f28"}, + {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dfb5d2ab183c0efe5e7b8917e4eaa2e837aacafad8a69b89aa6bc81550eed857"}, + {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d9793d46d3e6522ae58e9321032827c9c0df1e56cbe5d3de965facb311aed6aa"}, + {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9cd935c0220d012a27c20135c140f9cdcbc6249d5954345c81bfb714071b985c"}, + {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:37b08df45f02ff1866043b95096cbe91ac99de05936dd09d6611987a82a3306a"}, + {file = "rpds_py-0.13.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad666a904212aa9a6c77da7dce9d5170008cda76b7776e6731928b3f8a0d40fa"}, + {file = "rpds_py-0.13.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8a6ad8429340e0a4de89353447c6441329def3632e7b2293a7d6e873217d3c2b"}, + {file = "rpds_py-0.13.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7c40851b659d958c5245c1236e34f0d065cc53dca8d978b49a032c8e0adfda6e"}, + {file = "rpds_py-0.13.1-cp311-none-win32.whl", hash = "sha256:4145172ab59b6c27695db6d78d040795f635cba732cead19c78cede74800949a"}, + {file = "rpds_py-0.13.1-cp311-none-win_amd64.whl", hash = "sha256:46a07a258bda12270de02b34c4884f200f864bba3dcd6e3a37fef36a168b859d"}, + {file = "rpds_py-0.13.1-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:ba4432301ad7eeb1b00848cf46fae0e5fecfd18a8cb5fdcf856c67985f79ecc7"}, + {file = "rpds_py-0.13.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d22e0660de24bd8e9ac82f4230a22a5fe4e397265709289d61d5fb333839ba50"}, + {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76a8374b294e4ccb39ccaf11d39a0537ed107534139c00b4393ca3b542cc66e5"}, + {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7d152ec7bb431040af2500e01436c9aa0d993f243346f0594a15755016bf0be1"}, + {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:74a2044b870df7c9360bb3ce7e12f9ddf8e72e49cd3a353a1528cbf166ad2383"}, + {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:960e7e460fda2d0af18c75585bbe0c99f90b8f09963844618a621b804f8c3abe"}, + {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37f79f4f1f06cc96151f4a187528c3fd4a7e1065538a4af9eb68c642365957f7"}, + {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cd4ea56c9542ad0091dfdef3e8572ae7a746e1e91eb56c9e08b8d0808b40f1d1"}, + {file = "rpds_py-0.13.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0290712eb5603a725769b5d857f7cf15cf6ca93dda3128065bbafe6fdb709beb"}, + {file = "rpds_py-0.13.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0b70c1f800059c92479dc94dda41288fd6607f741f9b1b8f89a21a86428f6383"}, + {file = "rpds_py-0.13.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3dd5fb7737224e1497c886fb3ca681c15d9c00c76171f53b3c3cc8d16ccfa7fb"}, + {file = "rpds_py-0.13.1-cp312-none-win32.whl", hash = "sha256:74be3b215a5695690a0f1a9f68b1d1c93f8caad52e23242fcb8ba56aaf060281"}, + {file = "rpds_py-0.13.1-cp312-none-win_amd64.whl", hash = "sha256:f47eef55297799956464efc00c74ae55c48a7b68236856d56183fe1ddf866205"}, + {file = "rpds_py-0.13.1-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:e4a45ba34f904062c63049a760790c6a2fa7a4cc4bd160d8af243b12371aaa05"}, + {file = "rpds_py-0.13.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:20147996376be452cd82cd6c17701daba69a849dc143270fa10fe067bb34562a"}, + {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b9535aa22ab023704cfc6533e968f7e420affe802d85e956d8a7b4c0b0b5ea"}, + {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d4fa1eeb9bea6d9b64ac91ec51ee94cc4fc744955df5be393e1c923c920db2b0"}, + {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2b2415d5a7b7ee96aa3a54d4775c1fec140476a17ee12353806297e900eaeddc"}, + {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:577d40a72550eac1386b77b43836151cb61ff6700adacda2ad4d883ca5a0b6f2"}, + {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af2d1648eb625a460eee07d3e1ea3a4a6e84a1fb3a107f6a8e95ac19f7dcce67"}, + {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5b769396eb358d6b55dbf78f3f7ca631ca1b2fe02136faad5af74f0111b4b6b7"}, + {file = "rpds_py-0.13.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:249c8e0055ca597707d71c5ad85fd2a1c8fdb99386a8c6c257e1b47b67a9bec1"}, + {file = "rpds_py-0.13.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:fe30ef31172bdcf946502a945faad110e8fff88c32c4bec9a593df0280e64d8a"}, + {file = "rpds_py-0.13.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:2647192facf63be9ed2d7a49ceb07efe01dc6cfb083bd2cc53c418437400cb99"}, + {file = "rpds_py-0.13.1-cp38-none-win32.whl", hash = "sha256:4011d5c854aa804c833331d38a2b6f6f2fe58a90c9f615afdb7aa7cf9d31f721"}, + {file = "rpds_py-0.13.1-cp38-none-win_amd64.whl", hash = "sha256:7cfae77da92a20f56cf89739a557b76e5c6edc094f6ad5c090b9e15fbbfcd1a4"}, + {file = "rpds_py-0.13.1-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:e9be1f7c5f9673616f875299339984da9447a40e3aea927750c843d6e5e2e029"}, + {file = "rpds_py-0.13.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:839676475ac2ccd1532d36af3d10d290a2ca149b702ed464131e450a767550df"}, + {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a90031658805c63fe488f8e9e7a88b260ea121ba3ee9cdabcece9c9ddb50da39"}, + {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ba9fbc5d6e36bfeb5292530321cc56c4ef3f98048647fabd8f57543c34174ec"}, + {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:08832078767545c5ee12561ce980714e1e4c6619b5b1e9a10248de60cddfa1fd"}, + {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19f5aa7f5078d35ed8e344bcba40f35bc95f9176dddb33fc4f2084e04289fa63"}, + {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80080972e1d000ad0341c7cc58b6855c80bd887675f92871221451d13a975072"}, + {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:181ee352691c4434eb1c01802e9daa5edcc1007ff15023a320e2693fed6a661b"}, + {file = "rpds_py-0.13.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d20da6b4c7aa9ee75ad0730beaba15d65157f5beeaca54a038bb968f92bf3ce3"}, + {file = "rpds_py-0.13.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:faa12a9f34671a30ea6bb027f04ec4e1fb8fa3fb3ed030893e729d4d0f3a9791"}, + {file = "rpds_py-0.13.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7cf241dbb50ea71c2e628ab2a32b5bfcd36e199152fc44e5c1edb0b773f1583e"}, + {file = "rpds_py-0.13.1-cp39-none-win32.whl", hash = "sha256:dab979662da1c9fbb464e310c0b06cb5f1d174d09a462553af78f0bfb3e01920"}, + {file = "rpds_py-0.13.1-cp39-none-win_amd64.whl", hash = "sha256:a2b3c79586636f1fa69a7bd59c87c15fca80c0d34b5c003d57f2f326e5276575"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:5967fa631d0ed9f8511dede08bc943a9727c949d05d1efac4ac82b2938024fb7"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8308a8d49d1354278d5c068c888a58d7158a419b2e4d87c7839ed3641498790c"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0580faeb9def6d0beb7aa666294d5604e569c4e24111ada423cf9936768d95c"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2da81c1492291c1a90987d76a47c7b2d310661bf7c93a9de0511e27b796a8b46"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c9a1dc5e898ce30e2f9c0aa57181cddd4532b22b7780549441d6429d22d3b58"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4ae6f423cb7d1c6256b7482025ace2825728f53b7ac58bcd574de6ee9d242c2"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc3179e0815827cf963e634095ae5715ee73a5af61defbc8d6ca79f1bdae1d1d"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0d9f8930092558fd15c9e07198625efb698f7cc00b3dc311c83eeec2540226a8"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:d1d388d2f5f5a6065cf83c54dd12112b7389095669ff395e632003ae8999c6b8"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:08b335fb0c45f0a9e2478a9ece6a1bfb00b6f4c4780f9be3cf36479c5d8dd374"}, + {file = "rpds_py-0.13.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d11afdc5992bbd7af60ed5eb519873690d921425299f51d80aa3099ed49f2bcc"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:8c1f6c8df23be165eb0cb78f305483d00c6827a191e3a38394c658d5b9c80bbd"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:528e2afaa56d815d2601b857644aeb395afe7e59212ab0659906dc29ae68d9a6"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df2af1180b8eeececf4f819d22cc0668bfadadfd038b19a90bd2fb2ee419ec6f"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:88956c993a20201744282362e3fd30962a9d86dc4f1dcf2bdb31fab27821b61f"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee70ee5f4144a45a9e6169000b5b525d82673d5dab9f7587eccc92794814e7ac"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5fd099acaee2325f01281a130a39da08d885e4dedf01b84bf156ec2737d78fe"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9656a09653b18b80764647d585750df2dff8928e03a706763ab40ec8c4872acc"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7ba239bb37663b2b4cd08e703e79e13321512dccd8e5f0e9451d9e53a6b8509a"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:3f55ae773abd96b1de25fc5c3fb356f491bd19116f8f854ba705beffc1ddc3c5"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:f4b15a163448ec79241fb2f1bc5a8ae1a4a304f7a48d948d208a2935b26bf8a5"}, + {file = "rpds_py-0.13.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:1a3b2583c86bbfbf417304eeb13400ce7f8725376dc7d3efbf35dc5d7052ad48"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f1059ca9a51c936c9a8d46fbc2c9a6b4c15ab3f13a97f1ad32f024b39666ba85"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f55601fb58f92e4f4f1d05d80c24cb77505dc42103ddfd63ddfdc51d3da46fa2"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcfd5f91b882eedf8d9601bd21261d6ce0e61a8c66a7152d1f5df08d3f643ab1"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6574f619e8734140d96c59bfa8a6a6e7a3336820ccd1bfd95ffa610673b650a2"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a4b9d3f5c48bbe8d9e3758e498b3c34863f2c9b1ac57a4e6310183740e59c980"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cdd6f8738e1f1d9df5b1603bb03cb30e442710e5672262b95d0f9fcb4edb0dab"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8c2bf286e5d755a075e5e97ba56b3de08cccdad6b323ab0b21cc98875176b03"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b3d4b390ee70ca9263b331ccfaf9819ee20e90dfd0201a295e23eb64a005dbef"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:db8d0f0ad92f74feb61c4e4a71f1d573ef37c22ef4dc19cab93e501bfdad8cbd"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:2abd669a39be69cdfe145927c7eb53a875b157740bf1e2d49e9619fc6f43362e"}, + {file = "rpds_py-0.13.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2c173f529666bab8e3f948b74c6d91afa22ea147e6ebae49a48229d9020a47c4"}, + {file = "rpds_py-0.13.1.tar.gz", hash = "sha256:264f3a5906c62b9df3a00ad35f6da1987d321a053895bd85f9d5c708de5c0fbf"}, +] + [[package]] name = "rsa" version = "4.7.2" description = "Pure-Python RSA implementation" +category = "main" optional = false python-versions = ">=3.5, <4" files = [ @@ -3935,125 +4225,130 @@ pyasn1 = ">=0.1.3" [[package]] name = "ruamel-yaml" -version = "0.17.22" +version = "0.17.40" description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" +category = "main" optional = false python-versions = ">=3" files = [ - {file = "ruamel.yaml-0.17.22-py3-none-any.whl", hash = "sha256:b4c6e66d103d8af198aa6139580ab735169be4922eb4c515ac121bdabf6f9361"}, - {file = "ruamel.yaml-0.17.22.tar.gz", hash = "sha256:c22ec58aaca5105f771cb8f7ac45ad631b5e8b00454ebe1822d442fb696e9e62"}, + {file = "ruamel.yaml-0.17.40-py3-none-any.whl", hash = "sha256:b16b6c3816dff0a93dca12acf5e70afd089fa5acb80604afd1ffa8b465b7722c"}, + {file = "ruamel.yaml-0.17.40.tar.gz", hash = "sha256:6024b986f06765d482b5b07e086cc4b4cd05dd22ddcbc758fa23d54873cf313d"}, ] [package.dependencies] -"ruamel.yaml.clib" = {version = ">=0.2.6", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.11\""} +"ruamel.yaml.clib" = {version = ">=0.2.7", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.13\""} [package.extras] -docs = ["ryd"] +docs = ["mercurial (>5.7)", "ryd"] jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] [[package]] name = "ruamel-yaml-clib" -version = "0.2.7" +version = "0.2.8" description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" +category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d5859983f26d8cd7bb5c287ef452e8aacc86501487634573d260968f753e1d71"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:debc87a9516b237d0466a711b18b6ebeb17ba9f391eb7f91c649c5c4ec5006c7"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:df5828871e6648db72d1c19b4bd24819b80a755c4541d3409f0f7acd0f335c80"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:efa08d63ef03d079dcae1dfe334f6c8847ba8b645d08df286358b1f5293d24ab"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win32.whl", hash = "sha256:763d65baa3b952479c4e972669f679fe490eee058d5aa85da483ebae2009d231"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win_amd64.whl", hash = "sha256:d000f258cf42fec2b1bbf2863c61d7b8918d31ffee905da62dede869254d3b8a"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:045e0626baf1c52e5527bd5db361bc83180faaba2ff586e763d3d5982a876a9e"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:1a6391a7cabb7641c32517539ca42cf84b87b667bad38b78d4d42dd23e957c81"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:9c7617df90c1365638916b98cdd9be833d31d337dbcd722485597b43c4a215bf"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:41d0f1fa4c6830176eef5b276af04c89320ea616655d01327d5ce65e50575c94"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-win32.whl", hash = "sha256:f6d3d39611ac2e4f62c3128a9eed45f19a6608670c5a2f4f07f24e8de3441d38"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-win_amd64.whl", hash = "sha256:da538167284de58a52109a9b89b8f6a53ff8437dd6dc26d33b57bf6699153122"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:4b3a93bb9bc662fc1f99c5c3ea8e623d8b23ad22f861eb6fce9377ac07ad6072"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_12_0_arm64.whl", hash = "sha256:a234a20ae07e8469da311e182e70ef6b199d0fbeb6c6cc2901204dd87fb867e8"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:15910ef4f3e537eea7fe45f8a5d19997479940d9196f357152a09031c5be59f3"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:370445fd795706fd291ab00c9df38a0caed0f17a6fb46b0f607668ecb16ce763"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-win32.whl", hash = "sha256:ecdf1a604009bd35c674b9225a8fa609e0282d9b896c03dd441a91e5f53b534e"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-win_amd64.whl", hash = "sha256:f34019dced51047d6f70cb9383b2ae2853b7fc4dce65129a5acd49f4f9256646"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2aa261c29a5545adfef9296b7e33941f46aa5bbd21164228e833412af4c9c75f"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_12_0_arm64.whl", hash = "sha256:f01da5790e95815eb5a8a138508c01c758e5f5bc0ce4286c4f7028b8dd7ac3d0"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:40d030e2329ce5286d6b231b8726959ebbe0404c92f0a578c0e2482182e38282"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:c3ca1fbba4ae962521e5eb66d72998b51f0f4d0f608d3c0347a48e1af262efa7"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-win32.whl", hash = "sha256:7bdb4c06b063f6fd55e472e201317a3bb6cdeeee5d5a38512ea5c01e1acbdd93"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-win_amd64.whl", hash = "sha256:be2a7ad8fd8f7442b24323d24ba0b56c51219513cfa45b9ada3b87b76c374d4b"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91a789b4aa0097b78c93e3dc4b40040ba55bef518f84a40d4442f713b4094acb"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:99e77daab5d13a48a4054803d052ff40780278240a902b880dd37a51ba01a307"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:3243f48ecd450eddadc2d11b5feb08aca941b5cd98c9b1db14b2fd128be8c697"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:8831a2cedcd0f0927f788c5bdf6567d9dc9cc235646a434986a852af1cb54b4b"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-win32.whl", hash = "sha256:3110a99e0f94a4a3470ff67fc20d3f96c25b13d24c6980ff841e82bafe827cac"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-win_amd64.whl", hash = "sha256:92460ce908546ab69770b2e576e4f99fbb4ce6ab4b245345a3869a0a0410488f"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:4a4d8d417868d68b979076a9be6a38c676eca060785abaa6709c7b31593c35d1"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-win32.whl", hash = "sha256:d5e51e2901ec2366b79f16c2299a03e74ba4531ddcfacc1416639c557aef0ad8"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-win_amd64.whl", hash = "sha256:184faeaec61dbaa3cace407cffc5819f7b977e75360e8d5ca19461cd851a5fc5"}, - {file = "ruamel.yaml.clib-0.2.7.tar.gz", hash = "sha256:1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497"}, + {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b42169467c42b692c19cf539c38d4602069d8c1505e97b86387fcf7afb766e1d"}, + {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-macosx_13_0_arm64.whl", hash = "sha256:07238db9cbdf8fc1e9de2489a4f68474e70dffcb32232db7c08fa61ca0c7c462"}, + {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:d92f81886165cb14d7b067ef37e142256f1c6a90a65cd156b063a43da1708cfd"}, + {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:fff3573c2db359f091e1589c3d7c5fc2f86f5bdb6f24252c2d8e539d4e45f412"}, + {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-win32.whl", hash = "sha256:c69212f63169ec1cfc9bb44723bf2917cbbd8f6191a00ef3410f5a7fe300722d"}, + {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-win_amd64.whl", hash = "sha256:cabddb8d8ead485e255fe80429f833172b4cadf99274db39abc080e068cbcc31"}, + {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:bef08cd86169d9eafb3ccb0a39edb11d8e25f3dae2b28f5c52fd997521133069"}, + {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:b16420e621d26fdfa949a8b4b47ade8810c56002f5389970db4ddda51dbff248"}, + {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:b5edda50e5e9e15e54a6a8a0070302b00c518a9d32accc2346ad6c984aacd279"}, + {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:25c515e350e5b739842fc3228d662413ef28f295791af5e5110b543cf0b57d9b"}, + {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-win32.whl", hash = "sha256:53a300ed9cea38cf5a2a9b069058137c2ca1ce658a874b79baceb8f892f915a7"}, + {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-win_amd64.whl", hash = "sha256:c2a72e9109ea74e511e29032f3b670835f8a59bbdc9ce692c5b4ed91ccf1eedb"}, + {file = "ruamel.yaml.clib-0.2.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:ebc06178e8821efc9692ea7544aa5644217358490145629914d8020042c24aa1"}, + {file = "ruamel.yaml.clib-0.2.8-cp312-cp312-macosx_13_0_arm64.whl", hash = "sha256:edaef1c1200c4b4cb914583150dcaa3bc30e592e907c01117c08b13a07255ec2"}, + {file = "ruamel.yaml.clib-0.2.8-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:7048c338b6c86627afb27faecf418768acb6331fc24cfa56c93e8c9780f815fa"}, + {file = "ruamel.yaml.clib-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d176b57452ab5b7028ac47e7b3cf644bcfdc8cacfecf7e71759f7f51a59e5c92"}, + {file = "ruamel.yaml.clib-0.2.8-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a5aa27bad2bb83670b71683aae140a1f52b0857a2deff56ad3f6c13a017a26ed"}, + {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c58ecd827313af6864893e7af0a3bb85fd529f862b6adbefe14643947cfe2942"}, + {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-macosx_12_0_arm64.whl", hash = "sha256:f481f16baec5290e45aebdc2a5168ebc6d35189ae6fea7a58787613a25f6e875"}, + {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3fcc54cb0c8b811ff66082de1680b4b14cf8a81dce0d4fbf665c2265a81e07a1"}, + {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:7f67a1ee819dc4562d444bbafb135832b0b909f81cc90f7aa00260968c9ca1b3"}, + {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-win32.whl", hash = "sha256:75e1ed13e1f9de23c5607fe6bd1aeaae21e523b32d83bb33918245361e9cc51b"}, + {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-win_amd64.whl", hash = "sha256:3f215c5daf6a9d7bbed4a0a4f760f3113b10e82ff4c5c44bec20a68c8014f675"}, + {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1b617618914cb00bf5c34d4357c37aa15183fa229b24767259657746c9077615"}, + {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:a6a9ffd280b71ad062eae53ac1659ad86a17f59a0fdc7699fd9be40525153337"}, + {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:665f58bfd29b167039f714c6998178d27ccd83984084c286110ef26b230f259f"}, + {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:700e4ebb569e59e16a976857c8798aee258dceac7c7d6b50cab63e080058df91"}, + {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-win32.whl", hash = "sha256:955eae71ac26c1ab35924203fda6220f84dce57d6d7884f189743e2abe3a9fbe"}, + {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-win_amd64.whl", hash = "sha256:56f4252222c067b4ce51ae12cbac231bce32aee1d33fbfc9d17e5b8d6966c312"}, + {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:03d1162b6d1df1caa3a4bd27aa51ce17c9afc2046c31b0ad60a0a96ec22f8001"}, + {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:bba64af9fa9cebe325a62fa398760f5c7206b215201b0ec825005f1b18b9bccf"}, + {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:9eb5dee2772b0f704ca2e45b1713e4e5198c18f515b52743576d196348f374d3"}, + {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:da09ad1c359a728e112d60116f626cc9f29730ff3e0e7db72b9a2dbc2e4beed5"}, + {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-win32.whl", hash = "sha256:84b554931e932c46f94ab306913ad7e11bba988104c5cff26d90d03f68258cd5"}, + {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-win_amd64.whl", hash = "sha256:25ac8c08322002b06fa1d49d1646181f0b2c72f5cbc15a85e80b4c30a544bb15"}, + {file = "ruamel.yaml.clib-0.2.8.tar.gz", hash = "sha256:beb2e0404003de9a4cab9753a8805a8fe9320ee6673136ed7f04255fe60bb512"}, ] [[package]] name = "ruff" -version = "0.1.2" -description = "An extremely fast Python linter, written in Rust." +version = "0.1.6" +description = "An extremely fast Python linter and code formatter, written in Rust." +category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "ruff-0.1.2-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:0d3ee66b825b713611f89aa35d16de984f76f26c50982a25d52cd0910dff3923"}, - {file = "ruff-0.1.2-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:f85f850a320ff532b8f93e8d1da6a36ef03698c446357c8c43b46ef90bb321eb"}, - {file = "ruff-0.1.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:809c6d4e45683696d19ca79e4c6bd3b2e9204fe9546923f2eb3b126ec314b0dc"}, - {file = "ruff-0.1.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:46005e4abb268e93cad065244e17e2ea16b6fcb55a5c473f34fbc1fd01ae34cb"}, - {file = "ruff-0.1.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10cdb302f519664d5e2cf954562ac86c9d20ca05855e5b5c2f9d542228f45da4"}, - {file = "ruff-0.1.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f89ebcbe57a1eab7d7b4ceb57ddf0af9ed13eae24e443a7c1dc078000bd8cc6b"}, - {file = "ruff-0.1.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7344eaca057d4c32373c9c3a7afb7274f56040c225b6193dd495fcf69453b436"}, - {file = "ruff-0.1.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dffa25f6e03c4950b6ac6f216bc0f98a4be9719cb0c5260c8e88d1bac36f1683"}, - {file = "ruff-0.1.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42ddaea52cb7ba7c785e8593a7532866c193bc774fe570f0e4b1ccedd95b83c5"}, - {file = "ruff-0.1.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:a8533efda625bbec0bf27da2886bd641dae0c209104f6c39abc4be5b7b22de2a"}, - {file = "ruff-0.1.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:b0b1b82221ba7c50e03b7a86b983157b5d3f4d8d4f16728132bdf02c6d651f77"}, - {file = "ruff-0.1.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6c1362eb9288f8cc95535294cb03bd4665c8cef86ec32745476a4e5c6817034c"}, - {file = "ruff-0.1.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:ffa7ef5ded0563329a35bd5a1cfdae40f05a75c0cc2dd30f00b1320b1fb461fc"}, - {file = "ruff-0.1.2-py3-none-win32.whl", hash = "sha256:6e8073f85e47072256e2e1909f1ae515cf61ff5a4d24730a63b8b4ac24b6704a"}, - {file = "ruff-0.1.2-py3-none-win_amd64.whl", hash = "sha256:b836ddff662a45385948ee0878b0a04c3a260949905ad861a37b931d6ee1c210"}, - {file = "ruff-0.1.2-py3-none-win_arm64.whl", hash = "sha256:b0c42d00db5639dbd5f7f9923c63648682dd197bf5de1151b595160c96172691"}, - {file = "ruff-0.1.2.tar.gz", hash = "sha256:afd4785ae060ce6edcd52436d0c197628a918d6d09e3107a892a1bad6a4c6608"}, + {file = "ruff-0.1.6-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:88b8cdf6abf98130991cbc9f6438f35f6e8d41a02622cc5ee130a02a0ed28703"}, + {file = "ruff-0.1.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:5c549ed437680b6105a1299d2cd30e4964211606eeb48a0ff7a93ef70b902248"}, + {file = "ruff-0.1.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cf5f701062e294f2167e66d11b092bba7af6a057668ed618a9253e1e90cfd76"}, + {file = "ruff-0.1.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:05991ee20d4ac4bb78385360c684e4b417edd971030ab12a4fbd075ff535050e"}, + {file = "ruff-0.1.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87455a0c1f739b3c069e2f4c43b66479a54dea0276dd5d4d67b091265f6fd1dc"}, + {file = "ruff-0.1.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:683aa5bdda5a48cb8266fcde8eea2a6af4e5700a392c56ea5fb5f0d4bfdc0240"}, + {file = "ruff-0.1.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:137852105586dcbf80c1717facb6781555c4e99f520c9c827bd414fac67ddfb6"}, + {file = "ruff-0.1.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd98138a98d48a1c36c394fd6b84cd943ac92a08278aa8ac8c0fdefcf7138f35"}, + {file = "ruff-0.1.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a0cd909d25f227ac5c36d4e7e681577275fb74ba3b11d288aff7ec47e3ae745"}, + {file = "ruff-0.1.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:e8fd1c62a47aa88a02707b5dd20c5ff20d035d634aa74826b42a1da77861b5ff"}, + {file = "ruff-0.1.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fd89b45d374935829134a082617954120d7a1470a9f0ec0e7f3ead983edc48cc"}, + {file = "ruff-0.1.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:491262006e92f825b145cd1e52948073c56560243b55fb3b4ecb142f6f0e9543"}, + {file = "ruff-0.1.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:ea284789861b8b5ca9d5443591a92a397ac183d4351882ab52f6296b4fdd5462"}, + {file = "ruff-0.1.6-py3-none-win32.whl", hash = "sha256:1610e14750826dfc207ccbcdd7331b6bd285607d4181df9c1c6ae26646d6848a"}, + {file = "ruff-0.1.6-py3-none-win_amd64.whl", hash = "sha256:4558b3e178145491e9bc3b2ee3c4b42f19d19384eaa5c59d10acf6e8f8b57e33"}, + {file = "ruff-0.1.6-py3-none-win_arm64.whl", hash = "sha256:03910e81df0d8db0e30050725a5802441c2022ea3ae4fe0609b76081731accbc"}, + {file = "ruff-0.1.6.tar.gz", hash = "sha256:1b09f29b16c6ead5ea6b097ef2764b42372aebe363722f1605ecbcd2b9207184"}, ] [[package]] name = "setuptools" -version = "67.7.2" +version = "69.0.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "setuptools-67.7.2-py3-none-any.whl", hash = "sha256:23aaf86b85ca52ceb801d32703f12d77517b2556af839621c641fca11287952b"}, - {file = "setuptools-67.7.2.tar.gz", hash = "sha256:f104fa03692a2602fa0fec6c6a9e63b6c8a968de13e17c026957dd1f53d80990"}, + {file = "setuptools-69.0.0-py3-none-any.whl", hash = "sha256:eb03b43f23910c5fd0909cb677ad017cd9531f493d27f8b3f5316ff1fb07390e"}, + {file = "setuptools-69.0.0.tar.gz", hash = "sha256:4c65d4f7891e5b046e9146913b87098144de2ca2128fbc10135b8556a6ddd946"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] -testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.1)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] [[package]] name = "shellingham" -version = "1.5.0.post1" +version = "1.5.4" description = "Tool to Detect Surrounding Shell" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "shellingham-1.5.0.post1-py2.py3-none-any.whl", hash = "sha256:368bf8c00754fd4f55afb7bbb86e272df77e4dc76ac29dbcbb81a59e9fc15744"}, - {file = "shellingham-1.5.0.post1.tar.gz", hash = "sha256:823bc5fb5c34d60f285b624e7264f4dda254bc803a3774a147bf99c0e3004a28"}, + {file = "shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686"}, + {file = "shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de"}, ] [[package]] name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4063,34 +4358,37 @@ files = [ [[package]] name = "slack-sdk" -version = "3.21.3" +version = "3.24.0" description = "The Slack API Platform SDK for Python" +category = "main" optional = false python-versions = ">=3.6.0" files = [ - {file = "slack_sdk-3.21.3-py2.py3-none-any.whl", hash = "sha256:de3c07b92479940b61cd68c566f49fbc9974c8f38f661d26244078f3903bb9cc"}, - {file = "slack_sdk-3.21.3.tar.gz", hash = "sha256:20829bdc1a423ec93dac903470975ebf3bc76fd3fd91a4dadc0eeffc940ecb0c"}, + {file = "slack_sdk-3.24.0-py2.py3-none-any.whl", hash = "sha256:cae64f0177a53d34cca59cc691d4535edd18929843a936b97cea421db9e4fbfe"}, + {file = "slack_sdk-3.24.0.tar.gz", hash = "sha256:741ea5381e65f4407d24ed81203912cbd6bfe807a6704b1d3c5ad346c86000b6"}, ] [package.extras] optional = ["SQLAlchemy (>=1.4,<3)", "aiodns (>1.0)", "aiohttp (>=3.7.3,<4)", "boto3 (<=2)", "websocket-client (>=1,<2)", "websockets (>=10,<11)"] -testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "Werkzeug (<2)", "black (==22.8.0)", "boto3 (<=2)", "click (==8.0.4)", "databases (>=0.5)", "flake8 (>=5,<6)", "itsdangerous (==1.1.0)", "moto (>=3,<4)", "psutil (>=5,<6)", "pytest (>=6.2.5,<7)", "pytest-asyncio (<1)", "pytest-cov (>=2,<3)"] +testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "Werkzeug (<2)", "black (==22.8.0)", "boto3 (<=2)", "click (==8.0.4)", "flake8 (>=5,<6)", "itsdangerous (==1.1.0)", "moto (>=3,<4)", "psutil (>=5,<6)", "pytest (>=6.2.5,<7)", "pytest-asyncio (<1)", "pytest-cov (>=2,<3)"] [[package]] name = "smmap" -version = "5.0.0" +version = "5.0.1" description = "A pure Python implementation of a sliding window memory map manager" +category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "smmap-5.0.0-py3-none-any.whl", hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94"}, - {file = "smmap-5.0.0.tar.gz", hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936"}, + {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, + {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, ] [[package]] name = "sortedcontainers" version = "2.4.0" description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +category = "dev" optional = false python-versions = "*" files = [ @@ -4100,24 +4398,26 @@ files = [ [[package]] name = "soupsieve" -version = "2.4.1" +version = "2.5" description = "A modern CSS selector implementation for Beautiful Soup." +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "soupsieve-2.4.1-py3-none-any.whl", hash = "sha256:1c1bfee6819544a3447586c889157365a27e10d88cde3ad3da0cf0ddf646feb8"}, - {file = "soupsieve-2.4.1.tar.gz", hash = "sha256:89d12b2d5dfcd2c9e8c22326da9d9aa9cb3dfab0a83a024f05704076ee8d35ea"}, + {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, + {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, ] [[package]] name = "stack-data" -version = "0.6.2" +version = "0.6.3" description = "Extract data from python stack frames and tracebacks for informative displays" +category = "dev" optional = false python-versions = "*" files = [ - {file = "stack_data-0.6.2-py3-none-any.whl", hash = "sha256:cbb2a53eb64e5785878201a97ed7c7b94883f48b87bfb0bbe8b623c74679e4a8"}, - {file = "stack_data-0.6.2.tar.gz", hash = "sha256:32d2dd0376772d01b6cb9fc996f3c8b57a357089dec328ed4b6553d037eaf815"}, + {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}, + {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}, ] [package.dependencies] @@ -4130,13 +4430,14 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] [[package]] name = "stevedore" -version = "5.0.0" +version = "5.1.0" description = "Manage dynamic plugins for Python applications" +category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "stevedore-5.0.0-py3-none-any.whl", hash = "sha256:bd5a71ff5e5e5f5ea983880e4a1dd1bb47f8feebbb3d95b592398e2f02194771"}, - {file = "stevedore-5.0.0.tar.gz", hash = "sha256:2c428d2338976279e8eb2196f7a94910960d9f7ba2f41f3988511e95ca447021"}, + {file = "stevedore-5.1.0-py3-none-any.whl", hash = "sha256:8cc040628f3cea5d7128f2e76cf486b2251a4e543c7b938f58d9a377f6694a2d"}, + {file = "stevedore-5.1.0.tar.gz", hash = "sha256:a54534acf9b89bc7ed264807013b505bf07f74dbe4bcfa37d32bd063870b087c"}, ] [package.dependencies] @@ -4146,6 +4447,7 @@ pbr = ">=2.0.0,<2.1.0 || >2.1.0" name = "tabulate" version = "0.9.0" description = "Pretty-print tabular data" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4160,6 +4462,7 @@ widechars = ["wcwidth"] name = "tenacity" version = "8.2.3" description = "Retry code until it succeeds" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4174,6 +4477,7 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"] name = "toml" version = "0.10.2" description = "Python Library for Tom's Obvious, Minimal Language" +category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4185,6 +4489,7 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4194,96 +4499,118 @@ files = [ [[package]] name = "tornado" -version = "6.3.1" +version = "6.3.3" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +category = "dev" optional = false python-versions = ">= 3.8" files = [ - {file = "tornado-6.3.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:db181eb3df8738613ff0a26f49e1b394aade05034b01200a63e9662f347d4415"}, - {file = "tornado-6.3.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:b4e7b956f9b5e6f9feb643ea04f07e7c6b49301e03e0023eedb01fa8cf52f579"}, - {file = "tornado-6.3.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9661aa8bc0e9d83d757cd95b6f6d1ece8ca9fd1ccdd34db2de381e25bf818233"}, - {file = "tornado-6.3.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81c17e0cc396908a5e25dc8e9c5e4936e6dfd544c9290be48bd054c79bcad51e"}, - {file = "tornado-6.3.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a27a1cfa9997923f80bdd962b3aab048ac486ad8cfb2f237964f8ab7f7eb824b"}, - {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d7117f3c7ba5d05813b17a1f04efc8e108a1b811ccfddd9134cc68553c414864"}, - {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:ffdce65a281fd708da5a9def3bfb8f364766847fa7ed806821a69094c9629e8a"}, - {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:90f569a35a8ec19bde53aa596952071f445da678ec8596af763b9b9ce07605e6"}, - {file = "tornado-6.3.1-cp38-abi3-win32.whl", hash = "sha256:3455133b9ff262fd0a75630af0a8ee13564f25fb4fd3d9ce239b8a7d3d027bf8"}, - {file = "tornado-6.3.1-cp38-abi3-win_amd64.whl", hash = "sha256:1285f0691143f7ab97150831455d4db17a267b59649f7bd9700282cba3d5e771"}, - {file = "tornado-6.3.1.tar.gz", hash = "sha256:5e2f49ad371595957c50e42dd7e5c14d64a6843a3cf27352b69c706d1b5918af"}, + {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:502fba735c84450974fec147340016ad928d29f1e91f49be168c0a4c18181e1d"}, + {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:805d507b1f588320c26f7f097108eb4023bbaa984d63176d1652e184ba24270a"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bd19ca6c16882e4d37368e0152f99c099bad93e0950ce55e71daed74045908f"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ac51f42808cca9b3613f51ffe2a965c8525cb1b00b7b2d56828b8045354f76a"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71a8db65160a3c55d61839b7302a9a400074c9c753040455494e2af74e2501f2"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:ceb917a50cd35882b57600709dd5421a418c29ddc852da8bcdab1f0db33406b0"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:7d01abc57ea0dbb51ddfed477dfe22719d376119844e33c661d873bf9c0e4a16"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:9dc4444c0defcd3929d5c1eb5706cbe1b116e762ff3e0deca8b715d14bf6ec17"}, + {file = "tornado-6.3.3-cp38-abi3-win32.whl", hash = "sha256:65ceca9500383fbdf33a98c0087cb975b2ef3bfb874cb35b8de8740cf7f41bd3"}, + {file = "tornado-6.3.3-cp38-abi3-win_amd64.whl", hash = "sha256:22d3c2fa10b5793da13c807e6fc38ff49a4f6e1e3868b0a6f4164768bb8e20f5"}, + {file = "tornado-6.3.3.tar.gz", hash = "sha256:e7d8db41c0181c80d76c982aacc442c0783a2c54d6400fe028954201a2e032fe"}, ] [[package]] name = "tqdm" -version = "4.65.0" +version = "4.66.1" description = "Fast, Extensible Progress Meter" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.65.0-py3-none-any.whl", hash = "sha256:c4f53a17fe37e132815abceec022631be8ffe1b9381c2e6e30aa70edc99e9671"}, - {file = "tqdm-4.65.0.tar.gz", hash = "sha256:1871fb68a86b8fb3b59ca4cdd3dcccbc7e6d613eeed31f4c332531977b89beb5"}, + {file = "tqdm-4.66.1-py3-none-any.whl", hash = "sha256:d302b3c5b53d47bce91fea46679d9c3c6508cf6332229aa1e7d8653723793386"}, + {file = "tqdm-4.66.1.tar.gz", hash = "sha256:d88e651f9db8d8551a62556d3cff9e3034274ca5d66e93197cf2490e2dcb69c7"}, ] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} [package.extras] -dev = ["py-make (>=0.1.0)", "twine", "wheel"] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] notebook = ["ipywidgets (>=6)"] slack = ["slack-sdk"] telegram = ["requests"] [[package]] name = "traitlets" -version = "5.9.0" +version = "5.13.0" description = "Traitlets Python configuration system" +category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "traitlets-5.9.0-py3-none-any.whl", hash = "sha256:9e6ec080259b9a5940c797d58b613b5e31441c2257b87c2e795c5228ae80d2d8"}, - {file = "traitlets-5.9.0.tar.gz", hash = "sha256:f6cde21a9c68cf756af02035f72d5a723bf607e862e7be33ece505abf4a3bad9"}, + {file = "traitlets-5.13.0-py3-none-any.whl", hash = "sha256:baf991e61542da48fe8aef8b779a9ea0aa38d8a54166ee250d5af5ecf4486619"}, + {file = "traitlets-5.13.0.tar.gz", hash = "sha256:9b232b9430c8f57288c1024b34a8f0251ddcc47268927367a0dd3eeaca40deb5"}, ] [package.extras] docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] -test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] +test = ["argcomplete (>=3.0.3)", "mypy (>=1.6.0)", "pre-commit", "pytest (>=7.0,<7.5)", "pytest-mock", "pytest-mypy-testing"] [[package]] name = "typed-ast" -version = "1.5.4" +version = "1.5.5" description = "a fork of Python 2 and 3 ast modules with type comment support" +category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"}, - {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"}, - {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"}, - {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"}, - {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"}, - {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"}, - {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"}, - {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"}, - {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"}, - {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"}, - {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"}, - {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"}, - {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"}, - {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"}, - {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"}, - {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"}, - {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"}, - {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"}, - {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"}, - {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"}, - {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"}, - {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"}, - {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"}, - {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"}, + {file = "typed_ast-1.5.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4bc1efe0ce3ffb74784e06460f01a223ac1f6ab31c6bc0376a21184bf5aabe3b"}, + {file = "typed_ast-1.5.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5f7a8c46a8b333f71abd61d7ab9255440d4a588f34a21f126bbfc95f6049e686"}, + {file = "typed_ast-1.5.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:597fc66b4162f959ee6a96b978c0435bd63791e31e4f410622d19f1686d5e769"}, + {file = "typed_ast-1.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d41b7a686ce653e06c2609075d397ebd5b969d821b9797d029fccd71fdec8e04"}, + {file = "typed_ast-1.5.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5fe83a9a44c4ce67c796a1b466c270c1272e176603d5e06f6afbc101a572859d"}, + {file = "typed_ast-1.5.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d5c0c112a74c0e5db2c75882a0adf3133adedcdbfd8cf7c9d6ed77365ab90a1d"}, + {file = "typed_ast-1.5.5-cp310-cp310-win_amd64.whl", hash = "sha256:e1a976ed4cc2d71bb073e1b2a250892a6e968ff02aa14c1f40eba4f365ffec02"}, + {file = "typed_ast-1.5.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c631da9710271cb67b08bd3f3813b7af7f4c69c319b75475436fcab8c3d21bee"}, + {file = "typed_ast-1.5.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b445c2abfecab89a932b20bd8261488d574591173d07827c1eda32c457358b18"}, + {file = "typed_ast-1.5.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc95ffaaab2be3b25eb938779e43f513e0e538a84dd14a5d844b8f2932593d88"}, + {file = "typed_ast-1.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61443214d9b4c660dcf4b5307f15c12cb30bdfe9588ce6158f4a005baeb167b2"}, + {file = "typed_ast-1.5.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6eb936d107e4d474940469e8ec5b380c9b329b5f08b78282d46baeebd3692dc9"}, + {file = "typed_ast-1.5.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e48bf27022897577d8479eaed64701ecaf0467182448bd95759883300ca818c8"}, + {file = "typed_ast-1.5.5-cp311-cp311-win_amd64.whl", hash = "sha256:83509f9324011c9a39faaef0922c6f720f9623afe3fe220b6d0b15638247206b"}, + {file = "typed_ast-1.5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:44f214394fc1af23ca6d4e9e744804d890045d1643dd7e8229951e0ef39429b5"}, + {file = "typed_ast-1.5.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:118c1ce46ce58fda78503eae14b7664163aa735b620b64b5b725453696f2a35c"}, + {file = "typed_ast-1.5.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be4919b808efa61101456e87f2d4c75b228f4e52618621c77f1ddcaae15904fa"}, + {file = "typed_ast-1.5.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:fc2b8c4e1bc5cd96c1a823a885e6b158f8451cf6f5530e1829390b4d27d0807f"}, + {file = "typed_ast-1.5.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:16f7313e0a08c7de57f2998c85e2a69a642e97cb32f87eb65fbfe88381a5e44d"}, + {file = "typed_ast-1.5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:2b946ef8c04f77230489f75b4b5a4a6f24c078be4aed241cfabe9cbf4156e7e5"}, + {file = "typed_ast-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2188bc33d85951ea4ddad55d2b35598b2709d122c11c75cffd529fbc9965508e"}, + {file = "typed_ast-1.5.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0635900d16ae133cab3b26c607586131269f88266954eb04ec31535c9a12ef1e"}, + {file = "typed_ast-1.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57bfc3cf35a0f2fdf0a88a3044aafaec1d2f24d8ae8cd87c4f58d615fb5b6311"}, + {file = "typed_ast-1.5.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:fe58ef6a764de7b4b36edfc8592641f56e69b7163bba9f9c8089838ee596bfb2"}, + {file = "typed_ast-1.5.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d09d930c2d1d621f717bb217bf1fe2584616febb5138d9b3e8cdd26506c3f6d4"}, + {file = "typed_ast-1.5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:d40c10326893ecab8a80a53039164a224984339b2c32a6baf55ecbd5b1df6431"}, + {file = "typed_ast-1.5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fd946abf3c31fb50eee07451a6aedbfff912fcd13cf357363f5b4e834cc5e71a"}, + {file = "typed_ast-1.5.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ed4a1a42df8a3dfb6b40c3d2de109e935949f2f66b19703eafade03173f8f437"}, + {file = "typed_ast-1.5.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:045f9930a1550d9352464e5149710d56a2aed23a2ffe78946478f7b5416f1ede"}, + {file = "typed_ast-1.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:381eed9c95484ceef5ced626355fdc0765ab51d8553fec08661dce654a935db4"}, + {file = "typed_ast-1.5.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:bfd39a41c0ef6f31684daff53befddae608f9daf6957140228a08e51f312d7e6"}, + {file = "typed_ast-1.5.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8c524eb3024edcc04e288db9541fe1f438f82d281e591c548903d5b77ad1ddd4"}, + {file = "typed_ast-1.5.5-cp38-cp38-win_amd64.whl", hash = "sha256:7f58fabdde8dcbe764cef5e1a7fcb440f2463c1bbbec1cf2a86ca7bc1f95184b"}, + {file = "typed_ast-1.5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:042eb665ff6bf020dd2243307d11ed626306b82812aba21836096d229fdc6a10"}, + {file = "typed_ast-1.5.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:622e4a006472b05cf6ef7f9f2636edc51bda670b7bbffa18d26b255269d3d814"}, + {file = "typed_ast-1.5.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1efebbbf4604ad1283e963e8915daa240cb4bf5067053cf2f0baadc4d4fb51b8"}, + {file = "typed_ast-1.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0aefdd66f1784c58f65b502b6cf8b121544680456d1cebbd300c2c813899274"}, + {file = "typed_ast-1.5.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:48074261a842acf825af1968cd912f6f21357316080ebaca5f19abbb11690c8a"}, + {file = "typed_ast-1.5.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:429ae404f69dc94b9361bb62291885894b7c6fb4640d561179548c849f8492ba"}, + {file = "typed_ast-1.5.5-cp39-cp39-win_amd64.whl", hash = "sha256:335f22ccb244da2b5c296e6f96b06ee9bed46526db0de38d2f0e5a6597b81155"}, + {file = "typed_ast-1.5.5.tar.gz", hash = "sha256:94282f7a354f36ef5dbce0ef3467ebf6a258e370ab33d5b40c249fa996e590dd"}, ] [[package]] name = "typer" version = "0.7.0" description = "Typer, build great CLIs. Easy to code. Based on Python type hints." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4305,19 +4632,21 @@ test = ["black (>=22.3.0,<23.0.0)", "coverage (>=6.2,<7.0)", "isort (>=5.0.6,<6. [[package]] name = "types-chardet" -version = "5.0.4.5" +version = "5.0.4.6" description = "Typing stubs for chardet" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-chardet-5.0.4.5.tar.gz", hash = "sha256:b3a94b9d24752ade941e269eb9327d78eda2c482e2d373ec46deed3a150af773"}, - {file = "types_chardet-5.0.4.5-py3-none-any.whl", hash = "sha256:979543861ed7f1efaf97cea9d5ef6b4ac10373da6aa6853a1946061eafda2173"}, + {file = "types-chardet-5.0.4.6.tar.gz", hash = "sha256:caf4c74cd13ccfd8b3313c314aba943b159de562a2573ed03137402b2bb37818"}, + {file = "types_chardet-5.0.4.6-py3-none-any.whl", hash = "sha256:ea832d87e798abf1e4dfc73767807c2b7fee35d0003ae90348aea4ae00fb004d"}, ] [[package]] name = "types-cryptography" version = "3.3.23.2" description = "Typing stubs for cryptography" +category = "main" optional = false python-versions = "*" files = [ @@ -4327,30 +4656,33 @@ files = [ [[package]] name = "types-dateparser" -version = "1.1.4.9" +version = "1.1.4.10" description = "Typing stubs for dateparser" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-dateparser-1.1.4.9.tar.gz", hash = "sha256:506668f024c2136a44e9046ee18dd4279a55df1be5dc55e5c29ab07643a2e18a"}, - {file = "types_dateparser-1.1.4.9-py3-none-any.whl", hash = "sha256:6539e49032151a8445092109f93e61f51b2082a9f295691df13e073c6abf9137"}, + {file = "types-dateparser-1.1.4.10.tar.gz", hash = "sha256:f9f147147a897ecb99491f59772ab1be1b7a0842fbc22e85ca37c6995b563b52"}, + {file = "types_dateparser-1.1.4.10-py3-none-any.whl", hash = "sha256:b85c664b349412ef0e09afd56c3c554a1d2fc206e45f1222c1001d23cb2fb66d"}, ] [[package]] name = "types-decorator" -version = "5.1.8.3" +version = "5.1.8.4" description = "Typing stubs for decorator" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-decorator-5.1.8.3.tar.gz", hash = "sha256:32dd380fc88d0e7a1f27a84ba1ce6e29ba0ad42caaa1b88e7b5d27e61f6e4962"}, - {file = "types_decorator-5.1.8.3-py3-none-any.whl", hash = "sha256:2ad329af49b824db8069ebba9bf03b1cbcafba72eb338be255a1fd902e85edb9"}, + {file = "types-decorator-5.1.8.4.tar.gz", hash = "sha256:a8c39024634e99834bef146cec2e36c585f47884addf4dc65d6d0b7b1f627517"}, + {file = "types_decorator-5.1.8.4-py3-none-any.whl", hash = "sha256:e411203e0ec0116964dcd491e162a951e4a68cd2d4a946172690bee43c4ebe6e"}, ] [[package]] name = "types-emoji" version = "2.1.0.3" description = "Typing stubs for emoji" +category = "main" optional = false python-versions = "*" files = [ @@ -4362,6 +4694,7 @@ files = [ name = "types-filelock" version = "3.2.7" description = "Typing stubs for filelock" +category = "main" optional = false python-versions = "*" files = [ @@ -4373,6 +4706,7 @@ files = [ name = "types-futures" version = "3.3.8" description = "Typing stubs for futures" +category = "main" optional = false python-versions = "*" files = [ @@ -4384,6 +4718,7 @@ files = [ name = "types-ipaddress" version = "1.0.8" description = "Typing stubs for ipaddress" +category = "main" optional = false python-versions = "*" files = [ @@ -4393,19 +4728,21 @@ files = [ [[package]] name = "types-markdown" -version = "3.4.2.8" +version = "3.5.0.3" description = "Typing stubs for Markdown" +category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "types-Markdown-3.4.2.8.tar.gz", hash = "sha256:f4114d44ebd660edfa5e68366971ff32c44c90dce584158faa1abe6bf8075bd8"}, - {file = "types_Markdown-3.4.2.8-py3-none-any.whl", hash = "sha256:737594dc97dd38da72a2f90f5591c36a17003c913dd629a15145f3b221daf95d"}, + {file = "types-Markdown-3.5.0.3.tar.gz", hash = "sha256:9afd38a8f53e19d43de3f8d89742b3674b5736767806ed9356d64ccb09f76439"}, + {file = "types_Markdown-3.5.0.3-py3-none-any.whl", hash = "sha256:2299b9086c695f408a3ebabf820f1fba3b239f1b3bfdbb32bf42d530b42cdd83"}, ] [[package]] name = "types-mock" version = "4.0.15.2" description = "Typing stubs for mock" +category = "main" optional = false python-versions = "*" files = [ @@ -4417,6 +4754,7 @@ files = [ name = "types-paramiko" version = "2.12.0.1" description = "Typing stubs for paramiko" +category = "main" optional = false python-versions = "*" files = [ @@ -4431,6 +4769,7 @@ types-cryptography = "*" name = "types-pkg-resources" version = "0.1.3" description = "Typing stubs for pkg_resources" +category = "main" optional = false python-versions = "*" files = [ @@ -4442,6 +4781,7 @@ files = [ name = "types-protobuf" version = "4.24.0.4" description = "Typing stubs for protobuf" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4451,30 +4791,33 @@ files = [ [[package]] name = "types-pymysql" -version = "1.0.19.6" +version = "1.1.0.1" description = "Typing stubs for PyMySQL" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-PyMySQL-1.0.19.6.tar.gz", hash = "sha256:797f3da31be54778cd814ae1401940b7501004b5780bef53d5ef6de22138dae9"}, - {file = "types_PyMySQL-1.0.19.6-py3-none-any.whl", hash = "sha256:9cbd61c6b478b9d024e56837f846533af9c86d76aed4fed03ba9fa2687eb402a"}, + {file = "types-PyMySQL-1.1.0.1.tar.gz", hash = "sha256:72bdaecb88de4a30bc3e1842e1d4522ceb3c4b2e883a6a2a7a7162775dd27b93"}, + {file = "types_PyMySQL-1.1.0.1-py3-none-any.whl", hash = "sha256:9aec9ee0453314d477ef26e5832b4a992bc4cc3557358d62b0fe4af760a7728f"}, ] [[package]] name = "types-python-dateutil" -version = "2.8.19.12" +version = "2.8.19.14" description = "Typing stubs for python-dateutil" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-python-dateutil-2.8.19.12.tar.gz", hash = "sha256:355b2cb82b31e556fd18e7b074de7c350c680ab80608f0cc55ba6770d986d67d"}, - {file = "types_python_dateutil-2.8.19.12-py3-none-any.whl", hash = "sha256:fe5b545e678ec13e3ddc83a0eee1545c1b5e2fba4cfc39b276ab6f4e7604a923"}, + {file = "types-python-dateutil-2.8.19.14.tar.gz", hash = "sha256:1f4f10ac98bb8b16ade9dbee3518d9ace017821d94b057a425b069f834737f4b"}, + {file = "types_python_dateutil-2.8.19.14-py3-none-any.whl", hash = "sha256:f977b8de27787639986b4e28963263fd0e5158942b3ecef91b9335c130cb1ce9"}, ] [[package]] name = "types-pytz" version = "2022.7.1.2" description = "Typing stubs for pytz" +category = "main" optional = false python-versions = "*" files = [ @@ -4484,30 +4827,33 @@ files = [ [[package]] name = "types-pyvmomi" -version = "8.0.0.1" +version = "8.0.0.6" description = "Typing stubs for pyvmomi" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-pyvmomi-8.0.0.1.tar.gz", hash = "sha256:f4cc4970cb9d316dcec25f7a46c35654c2aa3452ff03f56f47147a80b88fe0ff"}, - {file = "types_pyvmomi-8.0.0.1-py3-none-any.whl", hash = "sha256:b850080d9076fa256fb7579d7634f15e85d0dedef7b74a170b2b15575ce784fd"}, + {file = "types-pyvmomi-8.0.0.6.tar.gz", hash = "sha256:494114a0ff30fa9cfe80dbd940308757586c836717803d8cb8af90f4f3190932"}, + {file = "types_pyvmomi-8.0.0.6-py3-none-any.whl", hash = "sha256:f1d95b25ce460cef6c2169053dbacfdab3872a2d30d184f1c3b3b2f0ba94be73"}, ] [[package]] name = "types-pyyaml" -version = "6.0.12.9" +version = "6.0.12.12" description = "Typing stubs for PyYAML" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-PyYAML-6.0.12.9.tar.gz", hash = "sha256:c51b1bd6d99ddf0aa2884a7a328810ebf70a4262c292195d3f4f9a0005f9eeb6"}, - {file = "types_PyYAML-6.0.12.9-py3-none-any.whl", hash = "sha256:5aed5aa66bd2d2e158f75dda22b059570ede988559f030cf294871d3b647e3e8"}, + {file = "types-PyYAML-6.0.12.12.tar.gz", hash = "sha256:334373d392fde0fdf95af5c3f1661885fa10c52167b14593eb856289e1855062"}, + {file = "types_PyYAML-6.0.12.12-py3-none-any.whl", hash = "sha256:c05bc6c158facb0676674b7f11fe3960db4f389718e19e62bd2b84d6205cfd24"}, ] [[package]] name = "types-requests" version = "2.28.11" description = "Typing stubs for requests" +category = "main" optional = false python-versions = "*" files = [ @@ -4520,74 +4866,81 @@ types-urllib3 = "<1.27" [[package]] name = "types-setuptools" -version = "67.7.0.1" +version = "67.8.0.0" description = "Typing stubs for setuptools" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-setuptools-67.7.0.1.tar.gz", hash = "sha256:980a2651b2b019809817e1585071596b87fbafcb54433ff3b12445461db23790"}, - {file = "types_setuptools-67.7.0.1-py3-none-any.whl", hash = "sha256:471a4ecf6984ffada63ffcfa884bfcb62718bd2d1a1acf8ee5513ec99789ed5e"}, + {file = "types-setuptools-67.8.0.0.tar.gz", hash = "sha256:95c9ed61871d6c0e258433373a4e1753c0a7c3627a46f4d4058c7b5a08ab844f"}, + {file = "types_setuptools-67.8.0.0-py3-none-any.whl", hash = "sha256:6df73340d96b238a4188b7b7668814b37e8018168aef1eef94a3b1872e3f60ff"}, ] [[package]] name = "types-six" -version = "1.16.21.8" +version = "1.16.21.9" description = "Typing stubs for six" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-six-1.16.21.8.tar.gz", hash = "sha256:02a892ff8f423c4c5d15de7c6f4d433e643c863bcbefabd19251b478cbb284ab"}, - {file = "types_six-1.16.21.8-py3-none-any.whl", hash = "sha256:e118ebebb4944af96b4c022b15c0769c065af09126eb148b7797023e905e0652"}, + {file = "types-six-1.16.21.9.tar.gz", hash = "sha256:746e6c25b8c48b3c8ab9efe7f68022839111de423d35ba4b206b88b12d75f233"}, + {file = "types_six-1.16.21.9-py3-none-any.whl", hash = "sha256:1591a09430a3035326da5fdb71692d0b3cc36b25a440cc5929ca6241f3984705"}, ] [[package]] name = "types-tabulate" -version = "0.9.0.2" +version = "0.9.0.3" description = "Typing stubs for tabulate" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-tabulate-0.9.0.2.tar.gz", hash = "sha256:1dd4322a3a146e9073169c74278b8f14a58eb9905ca9db0d2588df408f27cac9"}, - {file = "types_tabulate-0.9.0.2-py3-none-any.whl", hash = "sha256:a2e41cc41b6b46bfaec78f8fd8e03058fda7a31af6f203a4b235f5482f571f6f"}, + {file = "types-tabulate-0.9.0.3.tar.gz", hash = "sha256:197651f9d6467193cd166d8500116a6d3a26f2a4eb2db093bc9535ee1c0be55e"}, + {file = "types_tabulate-0.9.0.3-py3-none-any.whl", hash = "sha256:462d1b62e01728416e8277614d6a3eb172d53a8efaf04a04a973ff2dd45238f6"}, ] [[package]] name = "types-ujson" -version = "5.7.0.5" +version = "5.8.0.1" description = "Typing stubs for ujson" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-ujson-5.7.0.5.tar.gz", hash = "sha256:7ff2a6776048e6ad6abc7ebedfd42ae1b6c005512affbae44caf3fb1e96b5d12"}, - {file = "types_ujson-5.7.0.5-py3-none-any.whl", hash = "sha256:be07904f1ba1ba0a8b36315ec42393599fca0eb13892900f7ae322d11ce2c7ad"}, + {file = "types-ujson-5.8.0.1.tar.gz", hash = "sha256:2b14388248ab4cd1f5efa8c464761112597ccd57c0d84238f73631abe0e20cfd"}, + {file = "types_ujson-5.8.0.1-py3-none-any.whl", hash = "sha256:1923f373ba5df0eaa4e3fe5c85dbf4c0b475e2cce3f77f5f4b773347ea1a62c9"}, ] [[package]] name = "types-urllib3" -version = "1.26.25.12" +version = "1.26.25.14" description = "Typing stubs for urllib3" +category = "main" optional = false python-versions = "*" files = [ - {file = "types-urllib3-1.26.25.12.tar.gz", hash = "sha256:a1557355ce8d350a555d142589f3001903757d2d36c18a66f588d9659bbc917d"}, - {file = "types_urllib3-1.26.25.12-py3-none-any.whl", hash = "sha256:3ba3d3a8ee46e0d5512c6bd0594da4f10b2584b47a470f8422044a2ab462f1df"}, + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, ] [[package]] name = "typing-extensions" -version = "4.5.0" -description = "Backported and Experimental Type Hints for Python 3.7+" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.5.0-py3-none-any.whl", hash = "sha256:fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4"}, - {file = "typing_extensions-4.5.0.tar.gz", hash = "sha256:5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb"}, + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, ] [[package]] name = "tzdata" version = "2023.3" description = "Provider of IANA time zone data" +category = "main" optional = false python-versions = ">=2" files = [ @@ -4597,13 +4950,14 @@ files = [ [[package]] name = "tzlocal" -version = "4.3" +version = "4.3.1" description = "tzinfo object for the local timezone" +category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "tzlocal-4.3-py3-none-any.whl", hash = "sha256:b44c4388f3d34f25862cfbb387578a4d70fec417649da694a132f628a23367e2"}, - {file = "tzlocal-4.3.tar.gz", hash = "sha256:3f21d09e1b2aa9f2dacca12da240ca37de3ba5237a93addfd6d593afe9073355"}, + {file = "tzlocal-4.3.1-py3-none-any.whl", hash = "sha256:67d7e7f4ce0a98e9dfde2e02474c60fe846ed032d78b555c554c2e9cba472d84"}, + {file = "tzlocal-4.3.1.tar.gz", hash = "sha256:ee32ef8c20803c19a96ed366addd3d4a729ef6309cb5c7359a0cc2eeeb7fa46a"}, ] [package.dependencies] @@ -4616,91 +4970,89 @@ devenv = ["black", "check-manifest", "flake8", "pyroma", "pytest (>=4.3)", "pyte [[package]] name = "ujson" -version = "5.7.0" +version = "5.8.0" description = "Ultra fast JSON encoder and decoder for Python" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "ujson-5.7.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5eba5e69e4361ac3a311cf44fa71bc619361b6e0626768a494771aacd1c2f09b"}, - {file = "ujson-5.7.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aae4d9e1b4c7b61780f0a006c897a4a1904f862fdab1abb3ea8f45bd11aa58f3"}, - {file = "ujson-5.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2e43ccdba1cb5c6d3448eadf6fc0dae7be6c77e357a3abc968d1b44e265866d"}, - {file = "ujson-5.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54384ce4920a6d35fa9ea8e580bc6d359e3eb961fa7e43f46c78e3ed162d56ff"}, - {file = "ujson-5.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24ad1aa7fc4e4caa41d3d343512ce68e41411fb92adf7f434a4d4b3749dc8f58"}, - {file = "ujson-5.7.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:afff311e9f065a8f03c3753db7011bae7beb73a66189c7ea5fcb0456b7041ea4"}, - {file = "ujson-5.7.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6e80f0d03e7e8646fc3d79ed2d875cebd4c83846e129737fdc4c2532dbd43d9e"}, - {file = "ujson-5.7.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:137831d8a0db302fb6828ee21c67ad63ac537bddc4376e1aab1c8573756ee21c"}, - {file = "ujson-5.7.0-cp310-cp310-win32.whl", hash = "sha256:7df3fd35ebc14dafeea031038a99232b32f53fa4c3ecddb8bed132a43eefb8ad"}, - {file = "ujson-5.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:af4639f684f425177d09ae409c07602c4096a6287027469157bfb6f83e01448b"}, - {file = "ujson-5.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9b0f2680ce8a70f77f5d70aaf3f013d53e6af6d7058727a35d8ceb4a71cdd4e9"}, - {file = "ujson-5.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:67a19fd8e7d8cc58a169bea99fed5666023adf707a536d8f7b0a3c51dd498abf"}, - {file = "ujson-5.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6abb8e6d8f1ae72f0ed18287245f5b6d40094e2656d1eab6d99d666361514074"}, - {file = "ujson-5.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8cd622c069368d5074bd93817b31bdb02f8d818e57c29e206f10a1f9c6337dd"}, - {file = "ujson-5.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14f9082669f90e18e64792b3fd0bf19f2b15e7fe467534a35ea4b53f3bf4b755"}, - {file = "ujson-5.7.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d7ff6ebb43bc81b057724e89550b13c9a30eda0f29c2f506f8b009895438f5a6"}, - {file = "ujson-5.7.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f7f241488879d91a136b299e0c4ce091996c684a53775e63bb442d1a8e9ae22a"}, - {file = "ujson-5.7.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5593263a7fcfb934107444bcfba9dde8145b282de0ee9f61e285e59a916dda0f"}, - {file = "ujson-5.7.0-cp311-cp311-win32.whl", hash = "sha256:26c2b32b489c393106e9cb68d0a02e1a7b9d05a07429d875c46b94ee8405bdb7"}, - {file = "ujson-5.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:ed24406454bb5a31df18f0a423ae14beb27b28cdfa34f6268e7ebddf23da807e"}, - {file = "ujson-5.7.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18679484e3bf9926342b1c43a3bd640f93a9eeeba19ef3d21993af7b0c44785d"}, - {file = "ujson-5.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ee295761e1c6c30400641f0a20d381633d7622633cdf83a194f3c876a0e4b7e"}, - {file = "ujson-5.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b738282e12a05f400b291966630a98d622da0938caa4bc93cf65adb5f4281c60"}, - {file = "ujson-5.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00343501dbaa5172e78ef0e37f9ebd08040110e11c12420ff7c1f9f0332d939e"}, - {file = "ujson-5.7.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c0d1f7c3908357ee100aa64c4d1cf91edf99c40ac0069422a4fd5fd23b263263"}, - {file = "ujson-5.7.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a5d2f44331cf04689eafac7a6596c71d6657967c07ac700b0ae1c921178645da"}, - {file = "ujson-5.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:16b2254a77b310f118717715259a196662baa6b1f63b1a642d12ab1ff998c3d7"}, - {file = "ujson-5.7.0-cp37-cp37m-win32.whl", hash = "sha256:6faf46fa100b2b89e4db47206cf8a1ffb41542cdd34dde615b2fc2288954f194"}, - {file = "ujson-5.7.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ff0004c3f5a9a6574689a553d1b7819d1a496b4f005a7451f339dc2d9f4cf98c"}, - {file = "ujson-5.7.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:75204a1dd7ec6158c8db85a2f14a68d2143503f4bafb9a00b63fe09d35762a5e"}, - {file = "ujson-5.7.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7312731c7826e6c99cdd3ac503cd9acd300598e7a80bcf41f604fee5f49f566c"}, - {file = "ujson-5.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b9dc5a90e2149643df7f23634fe202fed5ebc787a2a1be95cf23632b4d90651"}, - {file = "ujson-5.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6a6961fc48821d84b1198a09516e396d56551e910d489692126e90bf4887d29"}, - {file = "ujson-5.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b01a9af52a0d5c46b2c68e3f258fdef2eacaa0ce6ae3e9eb97983f5b1166edb6"}, - {file = "ujson-5.7.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b7316d3edeba8a403686cdcad4af737b8415493101e7462a70ff73dd0609eafc"}, - {file = "ujson-5.7.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4ee997799a23227e2319a3f8817ce0b058923dbd31904761b788dc8f53bd3e30"}, - {file = "ujson-5.7.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dda9aa4c33435147262cd2ea87c6b7a1ca83ba9b3933ff7df34e69fee9fced0c"}, - {file = "ujson-5.7.0-cp38-cp38-win32.whl", hash = "sha256:bea8d30e362180aafecabbdcbe0e1f0b32c9fa9e39c38e4af037b9d3ca36f50c"}, - {file = "ujson-5.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:c96e3b872bf883090ddf32cc41957edf819c5336ab0007d0cf3854e61841726d"}, - {file = "ujson-5.7.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6411aea4c94a8e93c2baac096fbf697af35ba2b2ed410b8b360b3c0957a952d3"}, - {file = "ujson-5.7.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d3b3499c55911f70d4e074c626acdb79a56f54262c3c83325ffb210fb03e44d"}, - {file = "ujson-5.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:341f891d45dd3814d31764626c55d7ab3fd21af61fbc99d070e9c10c1190680b"}, - {file = "ujson-5.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f242eec917bafdc3f73a1021617db85f9958df80f267db69c76d766058f7b19"}, - {file = "ujson-5.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3af9f9f22a67a8c9466a32115d9073c72a33ae627b11de6f592df0ee09b98b6"}, - {file = "ujson-5.7.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4a3d794afbf134df3056a813e5c8a935208cddeae975bd4bc0ef7e89c52f0ce0"}, - {file = "ujson-5.7.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:800bf998e78dae655008dd10b22ca8dc93bdcfcc82f620d754a411592da4bbf2"}, - {file = "ujson-5.7.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b5ac3d5c5825e30b438ea92845380e812a476d6c2a1872b76026f2e9d8060fc2"}, - {file = "ujson-5.7.0-cp39-cp39-win32.whl", hash = "sha256:cd90027e6d93e8982f7d0d23acf88c896d18deff1903dd96140613389b25c0dd"}, - {file = "ujson-5.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:523ee146cdb2122bbd827f4dcc2a8e66607b3f665186bce9e4f78c9710b6d8ab"}, - {file = "ujson-5.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e87cec407ec004cf1b04c0ed7219a68c12860123dfb8902ef880d3d87a71c172"}, - {file = "ujson-5.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bab10165db6a7994e67001733f7f2caf3400b3e11538409d8756bc9b1c64f7e8"}, - {file = "ujson-5.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b522be14a28e6ac1cf818599aeff1004a28b42df4ed4d7bc819887b9dac915fc"}, - {file = "ujson-5.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7592f40175c723c032cdbe9fe5165b3b5903604f774ab0849363386e99e1f253"}, - {file = "ujson-5.7.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ed22f9665327a981f288a4f758a432824dc0314e4195a0eaeb0da56a477da94d"}, - {file = "ujson-5.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:adf445a49d9a97a5a4c9bb1d652a1528de09dd1c48b29f79f3d66cea9f826bf6"}, - {file = "ujson-5.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64772a53f3c4b6122ed930ae145184ebaed38534c60f3d859d8c3f00911eb122"}, - {file = "ujson-5.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35209cb2c13fcb9d76d249286105b4897b75a5e7f0efb0c0f4b90f222ce48910"}, - {file = "ujson-5.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90712dfc775b2c7a07d4d8e059dd58636bd6ff1776d79857776152e693bddea6"}, - {file = "ujson-5.7.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:0e4e8981c6e7e9e637e637ad8ffe948a09e5434bc5f52ecbb82b4b4cfc092bfb"}, - {file = "ujson-5.7.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:581c945b811a3d67c27566539bfcb9705ea09cb27c4be0002f7a553c8886b817"}, - {file = "ujson-5.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d36a807a24c7d44f71686685ae6fbc8793d784bca1adf4c89f5f780b835b6243"}, - {file = "ujson-5.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b4257307e3662aa65e2644a277ca68783c5d51190ed9c49efebdd3cbfd5fa44"}, - {file = "ujson-5.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea7423d8a2f9e160c5e011119741682414c5b8dce4ae56590a966316a07a4618"}, - {file = "ujson-5.7.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4c592eb91a5968058a561d358d0fef59099ed152cfb3e1cd14eee51a7a93879e"}, - {file = "ujson-5.7.0.tar.gz", hash = "sha256:e788e5d5dcae8f6118ac9b45d0b891a0d55f7ac480eddcb7f07263f2bcf37b23"}, + {file = "ujson-5.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f4511560d75b15ecb367eef561554959b9d49b6ec3b8d5634212f9fed74a6df1"}, + {file = "ujson-5.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9399eaa5d1931a0ead49dce3ffacbea63f3177978588b956036bfe53cdf6af75"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4e7bb7eba0e1963f8b768f9c458ecb193e5bf6977090182e2b4f4408f35ac76"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40931d7c08c4ce99adc4b409ddb1bbb01635a950e81239c2382cfe24251b127a"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d53039d39de65360e924b511c7ca1a67b0975c34c015dd468fca492b11caa8f7"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bdf04c6af3852161be9613e458a1fb67327910391de8ffedb8332e60800147a2"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a70f776bda2e5072a086c02792c7863ba5833d565189e09fabbd04c8b4c3abba"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f26629ac531d712f93192c233a74888bc8b8212558bd7d04c349125f10199fcf"}, + {file = "ujson-5.8.0-cp310-cp310-win32.whl", hash = "sha256:7ecc33b107ae88405aebdb8d82c13d6944be2331ebb04399134c03171509371a"}, + {file = "ujson-5.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:3b27a8da7a080add559a3b73ec9ebd52e82cc4419f7c6fb7266e62439a055ed0"}, + {file = "ujson-5.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:193349a998cd821483a25f5df30b44e8f495423840ee11b3b28df092ddfd0f7f"}, + {file = "ujson-5.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ddeabbc78b2aed531f167d1e70387b151900bc856d61e9325fcdfefb2a51ad8"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ce24909a9c25062e60653073dd6d5e6ec9d6ad7ed6e0069450d5b673c854405"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27a2a3c7620ebe43641e926a1062bc04e92dbe90d3501687957d71b4bdddaec4"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b852bdf920fe9f84e2a2c210cc45f1b64f763b4f7d01468b33f7791698e455e"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:20768961a6a706170497129960762ded9c89fb1c10db2989c56956b162e2a8a3"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e0147d41e9fb5cd174207c4a2895c5e24813204499fd0839951d4c8784a23bf5"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e3673053b036fd161ae7a5a33358ccae6793ee89fd499000204676baafd7b3aa"}, + {file = "ujson-5.8.0-cp311-cp311-win32.whl", hash = "sha256:a89cf3cd8bf33a37600431b7024a7ccf499db25f9f0b332947fbc79043aad879"}, + {file = "ujson-5.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:3659deec9ab9eb19e8646932bfe6fe22730757c4addbe9d7d5544e879dc1b721"}, + {file = "ujson-5.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:102bf31c56f59538cccdfec45649780ae00657e86247c07edac434cb14d5388c"}, + {file = "ujson-5.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:299a312c3e85edee1178cb6453645217ba23b4e3186412677fa48e9a7f986de6"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2e385a7679b9088d7bc43a64811a7713cc7c33d032d020f757c54e7d41931ae"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad24ec130855d4430a682c7a60ca0bc158f8253ec81feed4073801f6b6cb681b"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16fde596d5e45bdf0d7de615346a102510ac8c405098e5595625015b0d4b5296"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6d230d870d1ce03df915e694dcfa3f4e8714369cce2346686dbe0bc8e3f135e7"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9571de0c53db5cbc265945e08f093f093af2c5a11e14772c72d8e37fceeedd08"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7cba16b26efe774c096a5e822e4f27097b7c81ed6fb5264a2b3f5fd8784bab30"}, + {file = "ujson-5.8.0-cp312-cp312-win32.whl", hash = "sha256:48c7d373ff22366eecfa36a52b9b55b0ee5bd44c2b50e16084aa88b9de038916"}, + {file = "ujson-5.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:5ac97b1e182d81cf395ded620528c59f4177eee024b4b39a50cdd7b720fdeec6"}, + {file = "ujson-5.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2a64cc32bb4a436e5813b83f5aab0889927e5ea1788bf99b930fad853c5625cb"}, + {file = "ujson-5.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e54578fa8838ddc722539a752adfce9372474114f8c127bb316db5392d942f8b"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9721cd112b5e4687cb4ade12a7b8af8b048d4991227ae8066d9c4b3a6642a582"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d9707e5aacf63fb919f6237d6490c4e0244c7f8d3dc2a0f84d7dec5db7cb54c"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0be81bae295f65a6896b0c9030b55a106fb2dec69ef877253a87bc7c9c5308f7"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ae7f4725c344bf437e9b881019c558416fe84ad9c6b67426416c131ad577df67"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9ab282d67ef3097105552bf151438b551cc4bedb3f24d80fada830f2e132aeb9"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:94c7bd9880fa33fcf7f6d7f4cc032e2371adee3c5dba2922b918987141d1bf07"}, + {file = "ujson-5.8.0-cp38-cp38-win32.whl", hash = "sha256:bf5737dbcfe0fa0ac8fa599eceafae86b376492c8f1e4b84e3adf765f03fb564"}, + {file = "ujson-5.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:11da6bed916f9bfacf13f4fc6a9594abd62b2bb115acfb17a77b0f03bee4cfd5"}, + {file = "ujson-5.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:69b3104a2603bab510497ceabc186ba40fef38ec731c0ccaa662e01ff94a985c"}, + {file = "ujson-5.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9249fdefeb021e00b46025e77feed89cd91ffe9b3a49415239103fc1d5d9c29a"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2873d196725a8193f56dde527b322c4bc79ed97cd60f1d087826ac3290cf9207"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a4dafa9010c366589f55afb0fd67084acd8added1a51251008f9ff2c3e44042"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a42baa647a50fa8bed53d4e242be61023bd37b93577f27f90ffe521ac9dc7a3"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f3554eaadffe416c6f543af442066afa6549edbc34fe6a7719818c3e72ebfe95"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:fb87decf38cc82bcdea1d7511e73629e651bdec3a43ab40985167ab8449b769c"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:407d60eb942c318482bbfb1e66be093308bb11617d41c613e33b4ce5be789adc"}, + {file = "ujson-5.8.0-cp39-cp39-win32.whl", hash = "sha256:0fe1b7edaf560ca6ab023f81cbeaf9946a240876a993b8c5a21a1c539171d903"}, + {file = "ujson-5.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:3f9b63530a5392eb687baff3989d0fb5f45194ae5b1ca8276282fb647f8dcdb3"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:efeddf950fb15a832376c0c01d8d7713479fbeceaed1eaecb2665aa62c305aec"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d8283ac5d03e65f488530c43d6610134309085b71db4f675e9cf5dff96a8282"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb0142f6f10f57598655340a3b2c70ed4646cbe674191da195eb0985a9813b83"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07d459aca895eb17eb463b00441986b021b9312c6c8cc1d06880925c7f51009c"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d524a8c15cfc863705991d70bbec998456a42c405c291d0f84a74ad7f35c5109"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d6f84a7a175c75beecde53a624881ff618e9433045a69fcfb5e154b73cdaa377"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b748797131ac7b29826d1524db1cc366d2722ab7afacc2ce1287cdafccddbf1f"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e72ba76313d48a1a3a42e7dc9d1db32ea93fac782ad8dde6f8b13e35c229130"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f504117a39cb98abba4153bf0b46b4954cc5d62f6351a14660201500ba31fe7f"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a8c91b6f4bf23f274af9002b128d133b735141e867109487d17e344d38b87d94"}, + {file = "ujson-5.8.0.tar.gz", hash = "sha256:78e318def4ade898a461b3d92a79f9441e7e0e4d2ad5419abed4336d702c7425"}, ] [[package]] name = "urllib3" -version = "1.26.15" +version = "1.26.18" description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ - {file = "urllib3-1.26.15-py2.py3-none-any.whl", hash = "sha256:aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42"}, - {file = "urllib3-1.26.15.tar.gz", hash = "sha256:8a388717b9476f934a21484e8c8e61875ab60644d29b9b39e11e4b9dc1c6b305"}, + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, ] [package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] @@ -4708,6 +5060,7 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] name = "urwid" version = "2.1.2" description = "A full-featured console (xterm et al.) user interface library" +category = "dev" optional = false python-versions = "*" files = [ @@ -4716,33 +5069,35 @@ files = [ [[package]] name = "virtualenv" -version = "20.23.0" +version = "20.24.6" description = "Virtual Python Environment builder" +category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "virtualenv-20.23.0-py3-none-any.whl", hash = "sha256:6abec7670e5802a528357fdc75b26b9f57d5d92f29c5462ba0fbe45feacc685e"}, - {file = "virtualenv-20.23.0.tar.gz", hash = "sha256:a85caa554ced0c0afbd0d638e7e2d7b5f92d23478d05d17a76daeac8f279f924"}, + {file = "virtualenv-20.24.6-py3-none-any.whl", hash = "sha256:520d056652454c5098a00c0f073611ccbea4c79089331f60bf9d7ba247bb7381"}, + {file = "virtualenv-20.24.6.tar.gz", hash = "sha256:02ece4f56fbf939dbbc33c0715159951d6bf14aaf5457b092e4548e1382455af"}, ] [package.dependencies] -distlib = ">=0.3.6,<1" -filelock = ">=3.11,<4" -platformdirs = ">=3.2,<4" +distlib = ">=0.3.7,<1" +filelock = ">=3.12.2,<4" +platformdirs = ">=3.9.1,<4" [package.extras] -docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=22.12)"] -test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.3.1)", "pytest-env (>=0.8.1)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.10)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=67.7.1)", "time-machine (>=2.9)"] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"] [[package]] name = "vulture" -version = "2.7" +version = "2.10" description = "Find dead code" +category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "vulture-2.7-py2.py3-none-any.whl", hash = "sha256:bccc51064ed76db15a6b58277cea8885936af047f53d2655fb5de575e93d0bca"}, - {file = "vulture-2.7.tar.gz", hash = "sha256:67fb80a014ed9fdb599dd44bb96cb54311032a104106fc2e706ef7a6dad88032"}, + {file = "vulture-2.10-py2.py3-none-any.whl", hash = "sha256:568a4176db7468d0157817ae3bb1847a19f1ddc629849af487f9d3b279bff77d"}, + {file = "vulture-2.10.tar.gz", hash = "sha256:2a5c3160bffba77595b6e6dfcc412016bd2a09cd4b66cdf7fbba913684899f6f"}, ] [package.dependencies] @@ -4750,13 +5105,14 @@ toml = "*" [[package]] name = "wcmatch" -version = "8.4.1" +version = "8.5" description = "Wildcard/glob file name matcher." +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "wcmatch-8.4.1-py3-none-any.whl", hash = "sha256:3476cd107aba7b25ba1d59406938a47dc7eec6cfd0ad09ff77193f21a964dee7"}, - {file = "wcmatch-8.4.1.tar.gz", hash = "sha256:b1f042a899ea4c458b7321da1b5e3331e3e0ec781583434de1301946ceadb943"}, + {file = "wcmatch-8.5-py3-none-any.whl", hash = "sha256:14554e409b142edeefab901dc68ad570b30a72a8ab9a79106c5d5e9a6d241bd5"}, + {file = "wcmatch-8.5.tar.gz", hash = "sha256:86c17572d0f75cbf3bcb1a18f3bf2f9e72b39a9c08c9b4a74e991e1882a8efb3"}, ] [package.dependencies] @@ -4764,40 +5120,43 @@ bracex = ">=2.1.1" [[package]] name = "wcwidth" -version = "0.2.6" +version = "0.2.10" description = "Measures the displayed width of unicode strings in a terminal" +category = "main" optional = false python-versions = "*" files = [ - {file = "wcwidth-0.2.6-py2.py3-none-any.whl", hash = "sha256:795b138f6875577cd91bba52baf9e445cd5118fd32723b460e30a0af30ea230e"}, - {file = "wcwidth-0.2.6.tar.gz", hash = "sha256:a5220780a404dbe3353789870978e472cfe477761f06ee55077256e509b156d0"}, + {file = "wcwidth-0.2.10-py2.py3-none-any.whl", hash = "sha256:aec5179002dd0f0d40c456026e74a729661c9d468e1ed64405e3a6c2176ca36f"}, + {file = "wcwidth-0.2.10.tar.gz", hash = "sha256:390c7454101092a6a5e43baad8f83de615463af459201709556b6e4b1c861f97"}, ] [[package]] name = "websocket-client" -version = "1.5.1" +version = "1.6.4" description = "WebSocket client for Python with low level API options" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "websocket-client-1.5.1.tar.gz", hash = "sha256:3f09e6d8230892547132177f575a4e3e73cfdf06526e20cc02aa1c3b47184d40"}, - {file = "websocket_client-1.5.1-py3-none-any.whl", hash = "sha256:cdf5877568b7e83aa7cf2244ab56a3213de587bbe0ce9d8b9600fc77b455d89e"}, + {file = "websocket-client-1.6.4.tar.gz", hash = "sha256:b3324019b3c28572086c4a319f91d1dcd44e6e11cd340232978c684a7650d0df"}, + {file = "websocket_client-1.6.4-py3-none-any.whl", hash = "sha256:084072e0a7f5f347ef2ac3d8698a5e0b4ffbfcab607628cadabc650fc9a83a24"}, ] [package.extras] -docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] +docs = ["Sphinx (>=6.0)", "sphinx-rtd-theme (>=1.1.0)"] optional = ["python-socks", "wsaccel"] test = ["websockets"] [[package]] name = "werkzeug" -version = "2.3.3" +version = "3.0.1" description = "The comprehensive WSGI web application library." +category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "Werkzeug-2.3.3-py3-none-any.whl", hash = "sha256:4866679a0722de00796a74086238bb3b98d90f423f05de039abb09315487254a"}, - {file = "Werkzeug-2.3.3.tar.gz", hash = "sha256:a987caf1092edc7523edb139edb20c70571c4a8d5eed02e0b547b4739174d091"}, + {file = "werkzeug-3.0.1-py3-none-any.whl", hash = "sha256:90a285dc0e42ad56b34e696398b8122ee4c681833fb35b8334a095d82c56da10"}, + {file = "werkzeug-3.0.1.tar.gz", hash = "sha256:507e811ecea72b18a404947aded4b3390e1db8f826b494d76550ef45bb3b1dcc"}, ] [package.dependencies] @@ -4810,6 +5169,7 @@ watchdog = ["watchdog (>=2.3)"] name = "wrapt" version = "1.13.3" description = "Module for decorators, wrappers and monkey patching." +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ @@ -4870,6 +5230,7 @@ files = [ name = "wsproto" version = "1.1.0" description = "WebSockets state-machine based protocol implementation" +category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -4882,12 +5243,14 @@ h11 = ">=0.9.0,<1" [[package]] name = "yamlordereddictloader" -version = "0.4.0" -description = "YAML loader and dump for PyYAML allowing to keep keys order." +version = "0.4.2" +description = "YAML loader and dumper for PyYAML allowing to keep keys order." +category = "main" optional = false python-versions = "*" files = [ - {file = "yamlordereddictloader-0.4.0.tar.gz", hash = "sha256:7f30f0b99ea3f877f7cb340c570921fa9d639b7f69cba18be051e27f8de2080e"}, + {file = "yamlordereddictloader-0.4.2-py3-none-any.whl", hash = "sha256:dc048adb67026786cd24119bd71241f35bc8b0fd37d24b415c37bbc8049f9cd7"}, + {file = "yamlordereddictloader-0.4.2.tar.gz", hash = "sha256:36af2f6210fcff5da4fc4c12e1d815f973dceb41044e795e1f06115d634bca13"}, ] [package.dependencies] @@ -4897,6 +5260,7 @@ pyyaml = "*" name = "yarl" version = "1.9.2" description = "Yet another URL library" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -4982,38 +5346,41 @@ multidict = ">=4.0" [[package]] name = "z3-solver" -version = "4.12.1.0" +version = "4.12.2.0" description = "an efficient SMT solver library" +category = "main" optional = false python-versions = "*" files = [ - {file = "z3-solver-4.12.1.0.tar.gz", hash = "sha256:c6b7c0f1c595ba47609d0e02b0cc263dc755def9f8d6f51c1943aec040a1eb2d"}, - {file = "z3_solver-4.12.1.0-py2.py3-none-macosx_10_16_x86_64.whl", hash = "sha256:c4f1a53bce12b45698e8e49bd980cd3d3f0298c1ba4cf8c40525af86797565c8"}, - {file = "z3_solver-4.12.1.0-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:553ec3cd0188420bc5f007dd873fb0d87075d1b93808eca8c02324eb3a5f6f68"}, - {file = "z3_solver-4.12.1.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:41cb9ac460af30b193811eebf919d61cf51a8856bbd74b200cbe6b21e3e955e4"}, - {file = "z3_solver-4.12.1.0-py2.py3-none-win32.whl", hash = "sha256:85ff9f59b0f87df4dc0cd52baebb247b8049f2df6aad623151f4c4a21d3d01ac"}, - {file = "z3_solver-4.12.1.0-py2.py3-none-win_amd64.whl", hash = "sha256:aa0e06d42070774a2f89818c412514d41fc84578f32d617de618b214e5ed8154"}, + {file = "z3-solver-4.12.2.0.tar.gz", hash = "sha256:65ab47a0a8ef0bfb80db0670775beb11b32c3c0ae4b35943e44121f4af7ef411"}, + {file = "z3_solver-4.12.2.0-py2.py3-none-macosx_10_16_x86_64.whl", hash = "sha256:127b7c3fcadd61415320ef1b469c22464d3270d25a63c9eb5ee31a0859910826"}, + {file = "z3_solver-4.12.2.0-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:f605de84f87cff04de8339a6d007c80167606a4e6904d6ace8208b066f22f4be"}, + {file = "z3_solver-4.12.2.0-py2.py3-none-manylinux2014_x86_64.whl", hash = "sha256:03921d3021cb6e5dbeaeb94634132a5fbf5403748aa21774efac4047e633af1e"}, + {file = "z3_solver-4.12.2.0-py2.py3-none-win32.whl", hash = "sha256:ea1688e64aada67ec720e2f148c5c41fece2870c55a2901dda36f6b4bb9aec7e"}, + {file = "z3_solver-4.12.2.0-py2.py3-none-win_amd64.whl", hash = "sha256:553af6a989d8943d9a556c4f83ea54b2afc8b4fd58230e97fcc526dc3f97249a"}, ] [[package]] name = "zipp" -version = "3.15.0" +version = "3.17.0" description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "zipp-3.15.0-py3-none-any.whl", hash = "sha256:48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556"}, - {file = "zipp-3.15.0.tar.gz", hash = "sha256:112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"}, + {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, + {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [[package]] name = "zstandard" version = "0.17.0" description = "Zstandard bindings for Python" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -5075,4 +5442,4 @@ build = ["gsutil"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "2c4e3c91958bd142bea129022b98692c9f4e0606f56bc7c0893cb0f58b6d0e70" +content-hash = "cd51c8be1024ee0daa7d6abeb2029744e54ca16542ce970a31ae16b164e38a5c" diff --git a/pyproject.toml b/pyproject.toml index 5072643604..f8e0597112 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -121,6 +121,8 @@ requests-mock = "^1.9.3" black = "^22.10.0" ipykernel = "^6.16.1" ruff = "^0.1.2" +pytest-split = "^0.8.1" + [tool.poetry.extras] build = ["gsutil"] From a14b974fcde51774d39a6848a56446c2eeef1285 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 20 Nov 2023 23:21:18 +0200 Subject: [PATCH 006/204] filter files --- .github/workflows/run_unit_tests.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 9c923d5407..fed20092a5 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -62,8 +62,17 @@ jobs: source "$(poetry env info --path)/bin/activate" node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! + + TEST_FILES=$(circleci tests glob "**/*_test.py") + # filter out files which are in .venv directory + TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*\.venv\S*\.py//g') + TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/init\/templates\S*\.py//g') + TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/tests\/integration_tests\S*\.py//g') + TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/content_graph\/tests\S*\.py//g') + + poetry run pytest --store-durations - poetry run pytest --cov --splits 5 --group ${{ matrix.group }} -v + poetry run pytest -v --cov --splits 5 --group ${{ matrix.group }} $TEST_FILES - name: Upload coverage uses: actions/upload-artifact@v2 with: From 23b15eaed347441486d0cf232fde55732d94053e Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 21 Nov 2023 09:03:15 +0200 Subject: [PATCH 007/204] revert poetry --- poetry.lock | 3205 +++++++++++++++++++++--------------------------- pyproject.toml | 2 - 2 files changed, 1419 insertions(+), 1788 deletions(-) diff --git a/poetry.lock b/poetry.lock index 2512e538f3..6014915a55 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,107 +1,117 @@ -# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "aiohttp" -version = "3.9.0" +version = "3.8.5" description = "Async http client/server framework (asyncio)" -category = "main" optional = true -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"}, - {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"}, - {file = "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"}, - {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"}, - {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"}, - {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"}, - {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"}, - {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"}, - {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"}, - {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"}, - {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"}, - {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"}, - {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"}, - {file = "aiohttp-3.9.0-cp310-cp310-win32.whl", hash = "sha256:2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"}, - {file = "aiohttp-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"}, - {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"}, - {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"}, - {file = "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"}, - {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"}, - {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"}, - {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"}, - {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"}, - {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"}, - {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"}, - {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"}, - {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"}, - {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"}, - {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"}, - {file = "aiohttp-3.9.0-cp311-cp311-win32.whl", hash = "sha256:3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"}, - {file = "aiohttp-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"}, - {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"}, - {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"}, - {file = "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"}, - {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"}, - {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"}, - {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"}, - {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"}, - {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"}, - {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"}, - {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"}, - {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"}, - {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"}, - {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"}, - {file = "aiohttp-3.9.0-cp312-cp312-win32.whl", hash = "sha256:de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"}, - {file = "aiohttp-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"}, - {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"}, - {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"}, - {file = "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"}, - {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"}, - {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"}, - {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"}, - {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"}, - {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"}, - {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"}, - {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"}, - {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"}, - {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"}, - {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"}, - {file = "aiohttp-3.9.0-cp38-cp38-win32.whl", hash = "sha256:a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"}, - {file = "aiohttp-3.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"}, - {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"}, - {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"}, - {file = "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"}, - {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"}, - {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"}, - {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"}, - {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"}, - {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"}, - {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"}, - {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"}, - {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"}, - {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"}, - {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"}, - {file = "aiohttp-3.9.0-cp39-cp39-win32.whl", hash = "sha256:1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"}, - {file = "aiohttp-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"}, - {file = "aiohttp-3.9.0.tar.gz", hash = "sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, ] [package.dependencies] aiosignal = ">=1.1.2" -async-timeout = {version = ">=4.0,<5.0", markers = "python_version < \"3.11\""} +async-timeout = ">=4.0.0a3,<5.0" attrs = ">=17.3.0" +charset-normalizer = ">=2.0,<4.0" frozenlist = ">=1.1.1" multidict = ">=4.5,<7.0" yarl = ">=1.0,<2.0" [package.extras] -speedups = ["Brotli", "aiodns", "brotlicffi"] +speedups = ["Brotli", "aiodns", "cchardet"] [[package]] name = "aiosignal" version = "1.3.1" description = "aiosignal: a list of registered asynchronous callbacks" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -116,7 +126,6 @@ frozenlist = ">=1.1.0" name = "appnope" version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" -category = "dev" optional = false python-versions = "*" files = [ @@ -126,14 +135,13 @@ files = [ [[package]] name = "argcomplete" -version = "3.1.6" +version = "3.0.8" description = "Bash tab completion for argparse" -category = "main" optional = true -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "argcomplete-3.1.6-py3-none-any.whl", hash = "sha256:71f4683bc9e6b0be85f2b2c1224c47680f210903e23512cfebfe5a41edfd883a"}, - {file = "argcomplete-3.1.6.tar.gz", hash = "sha256:3b1f07d133332547a53c79437527c00be48cca3807b1d4ca5cab1b26313386a6"}, + {file = "argcomplete-3.0.8-py3-none-any.whl", hash = "sha256:e36fd646839933cbec7941c662ecb65338248667358dd3d968405a4506a60d9b"}, + {file = "argcomplete-3.0.8.tar.gz", hash = "sha256:b9ca96448e14fa459d7450a4ab5a22bbf9cee4ba7adddf03e65c398b5daeea28"}, ] [package.extras] @@ -143,7 +151,6 @@ test = ["coverage", "mypy", "pexpect", "ruff", "wheel"] name = "asgiref" version = "3.5.2" description = "ASGI specs, helper code, and adapters" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -158,7 +165,6 @@ tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] name = "astor" version = "0.8.1" description = "Read/rewrite/write Python ASTs" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -170,7 +176,6 @@ files = [ name = "astroid" version = "2.9.3" description = "An abstract syntax tree for Python with inference support." -category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -186,40 +191,36 @@ wrapt = ">=1.11,<1.14" [[package]] name = "asttokens" -version = "2.4.1" +version = "2.2.1" description = "Annotate AST trees with source code positions" -category = "dev" optional = false python-versions = "*" files = [ - {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"}, - {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"}, + {file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"}, + {file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"}, ] [package.dependencies] -six = ">=1.12.0" +six = "*" [package.extras] -astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"] -test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] +test = ["astroid", "pytest"] [[package]] name = "async-timeout" -version = "4.0.3" +version = "4.0.2" description = "Timeout context manager for asyncio programs" -category = "main" optional = true -python-versions = ">=3.7" +python-versions = ">=3.6" files = [ - {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, - {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, + {file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"}, + {file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"}, ] [[package]] name = "attrs" version = "23.1.0" description = "Classes Without Boilerplate" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -238,7 +239,6 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte name = "autopep8" version = "1.7.0" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" -category = "main" optional = false python-versions = "*" files = [ @@ -254,7 +254,6 @@ toml = "*" name = "backcall" version = "0.2.0" description = "Specifications for callback functions passed in to an API" -category = "dev" optional = false python-versions = "*" files = [ @@ -266,7 +265,6 @@ files = [ name = "backports-zoneinfo" version = "0.2.1" description = "Backport of the standard library zoneinfo module" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -295,7 +293,6 @@ tzdata = ["tzdata"] name = "bandit" version = "1.7.5" description = "Security oriented static analyser for python code." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -319,7 +316,6 @@ yaml = ["PyYAML"] name = "bcrypt" version = "4.0.1" description = "Modern password hashing for your software and your servers" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -354,7 +350,6 @@ typecheck = ["mypy"] name = "beautifulsoup4" version = "4.12.2" description = "Screen-scraping library" -category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -373,7 +368,6 @@ lxml = ["lxml"] name = "black" version = "22.12.0" description = "The uncompromising code formatter." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -409,7 +403,6 @@ uvloop = ["uvloop (>=0.15.2)"] name = "blinker" version = "1.4" description = "Fast, simple object-to-object and broadcast signaling" -category = "dev" optional = false python-versions = "*" files = [ @@ -420,7 +413,6 @@ files = [ name = "boto" version = "2.49.0" description = "Amazon Web Services Library" -category = "main" optional = true python-versions = "*" files = [ @@ -430,21 +422,19 @@ files = [ [[package]] name = "bracex" -version = "2.4" +version = "2.3.post1" description = "Bash style brace expander." -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "bracex-2.4-py3-none-any.whl", hash = "sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418"}, - {file = "bracex-2.4.tar.gz", hash = "sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb"}, + {file = "bracex-2.3.post1-py3-none-any.whl", hash = "sha256:351b7f20d56fb9ea91f9b9e9e7664db466eb234188c175fd943f8f755c807e73"}, + {file = "bracex-2.3.post1.tar.gz", hash = "sha256:e7b23fc8b2cd06d3dec0692baabecb249dda94e06a617901ff03a6c56fd71693"}, ] [[package]] name = "brotli" version = "1.0.9" description = "Python bindings for the Brotli compression library" -category = "dev" optional = false python-versions = "*" files = [ @@ -534,88 +524,97 @@ files = [ [[package]] name = "cachetools" -version = "5.3.2" +version = "5.3.0" description = "Extensible memoizing collections and decorators" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = "~=3.7" files = [ - {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, - {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, + {file = "cachetools-5.3.0-py3-none-any.whl", hash = "sha256:429e1a1e845c008ea6c85aa35d4b98b65d6a9763eeef3e37e92728a12d1de9d4"}, + {file = "cachetools-5.3.0.tar.gz", hash = "sha256:13dfddc7b8df938c21a940dfa6557ce6e94a2f1cdfa58eb90c805721d58f2c14"}, ] [[package]] name = "certifi" -version = "2023.11.17" +version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2023.11.17-py3-none-any.whl", hash = "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474"}, - {file = "certifi-2023.11.17.tar.gz", hash = "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1"}, + {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, + {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, ] [[package]] name = "cffi" -version = "1.16.0" +version = "1.15.1" description = "Foreign Function Interface for Python calling C code." -category = "main" optional = false -python-versions = ">=3.8" +python-versions = "*" files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, ] [package.dependencies] @@ -623,138 +622,119 @@ pycparser = "*" [[package]] name = "cfgv" -version = "3.4.0" +version = "3.3.1" description = "Validate configuration and produce human readable error messages." -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6.1" files = [ - {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, - {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, + {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, + {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, ] [[package]] name = "chardet" -version = "5.2.0" +version = "5.1.0" description = "Universal encoding detector for Python 3" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970"}, - {file = "chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7"}, + {file = "chardet-5.1.0-py3-none-any.whl", hash = "sha256:362777fb014af596ad31334fde1e8c327dfdb076e1960d1694662d46a6917ab9"}, + {file = "chardet-5.1.0.tar.gz", hash = "sha256:0d62712b956bc154f85fb0a266e2a3c5913c2967e00348701b32411d6def31e5"}, ] [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.1.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, ] [[package]] name = "click" -version = "8.1.7" +version = "8.1.3" description = "Composable command line interface toolkit" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, - {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, ] [package.dependencies] @@ -764,7 +744,6 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -776,7 +755,6 @@ files = [ name = "coloredlogs" version = "15.0.1" description = "Colored terminal output for Python's logging module" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -792,27 +770,27 @@ cron = ["capturer (>=2.4)"] [[package]] name = "comm" -version = "0.2.0" +version = "0.1.3" description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "comm-0.2.0-py3-none-any.whl", hash = "sha256:2da8d9ebb8dd7bfc247adaff99f24dce705638a8042b85cb995066793e391001"}, - {file = "comm-0.2.0.tar.gz", hash = "sha256:a517ea2ca28931c7007a7a99c562a0fa5883cfb48963140cf642c41c948498be"}, + {file = "comm-0.1.3-py3-none-any.whl", hash = "sha256:16613c6211e20223f215fc6d3b266a247b6e2641bf4e0a3ad34cb1aff2aa3f37"}, + {file = "comm-0.1.3.tar.gz", hash = "sha256:a61efa9daffcfbe66fd643ba966f846a624e4e6d6767eda9cf6e993aadaab93e"}, ] [package.dependencies] -traitlets = ">=4" +traitlets = ">=5.3" [package.extras] +lint = ["black (>=22.6.0)", "mdformat (>0.7)", "mdformat-gfm (>=0.3.5)", "ruff (>=0.0.156)"] test = ["pytest"] +typing = ["mypy (>=0.990)"] [[package]] name = "commonmark" version = "0.9.1" description = "Python parser for the CommonMark Markdown spec" -category = "main" optional = false python-versions = "*" files = [ @@ -825,14 +803,13 @@ test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"] [[package]] name = "configargparse" -version = "1.7" +version = "1.5.3" description = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." -category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ - {file = "ConfigArgParse-1.7-py3-none-any.whl", hash = "sha256:d249da6591465c6c26df64a9f73d2536e743be2f244eb3ebe61114af2f94f86b"}, - {file = "ConfigArgParse-1.7.tar.gz", hash = "sha256:e7067471884de5478c58a511e529f0f9bd1c66bfef1dea90935438d6c23306d1"}, + {file = "ConfigArgParse-1.5.3-py3-none-any.whl", hash = "sha256:18f6535a2db9f6e02bd5626cc7455eac3e96b9ab3d969d366f9aafd5c5c00fe7"}, + {file = "ConfigArgParse-1.5.3.tar.gz", hash = "sha256:1b0b3cbf664ab59dada57123c81eff3d9737e0d11d8cf79e3d6eb10823f1739f"}, ] [package.extras] @@ -843,7 +820,6 @@ yaml = ["PyYAML"] name = "configparser" version = "5.3.0" description = "Updated configparser from stdlib for earlier Pythons." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -857,64 +833,62 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec [[package]] name = "coverage" -version = "7.3.2" +version = "7.2.5" description = "Code coverage measurement for Python" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "coverage-7.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d872145f3a3231a5f20fd48500274d7df222e291d90baa2026cc5152b7ce86bf"}, - {file = "coverage-7.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:310b3bb9c91ea66d59c53fa4989f57d2436e08f18fb2f421a1b0b6b8cc7fffda"}, - {file = "coverage-7.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f47d39359e2c3779c5331fc740cf4bce6d9d680a7b4b4ead97056a0ae07cb49a"}, - {file = "coverage-7.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aa72dbaf2c2068404b9870d93436e6d23addd8bbe9295f49cbca83f6e278179c"}, - {file = "coverage-7.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:beaa5c1b4777f03fc63dfd2a6bd820f73f036bfb10e925fce067b00a340d0f3f"}, - {file = "coverage-7.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:dbc1b46b92186cc8074fee9d9fbb97a9dd06c6cbbef391c2f59d80eabdf0faa6"}, - {file = "coverage-7.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:315a989e861031334d7bee1f9113c8770472db2ac484e5b8c3173428360a9148"}, - {file = "coverage-7.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d1bc430677773397f64a5c88cb522ea43175ff16f8bfcc89d467d974cb2274f9"}, - {file = "coverage-7.3.2-cp310-cp310-win32.whl", hash = "sha256:a889ae02f43aa45032afe364c8ae84ad3c54828c2faa44f3bfcafecb5c96b02f"}, - {file = "coverage-7.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:c0ba320de3fb8c6ec16e0be17ee1d3d69adcda99406c43c0409cb5c41788a611"}, - {file = "coverage-7.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ac8c802fa29843a72d32ec56d0ca792ad15a302b28ca6203389afe21f8fa062c"}, - {file = "coverage-7.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:89a937174104339e3a3ffcf9f446c00e3a806c28b1841c63edb2b369310fd074"}, - {file = "coverage-7.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e267e9e2b574a176ddb983399dec325a80dbe161f1a32715c780b5d14b5f583a"}, - {file = "coverage-7.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2443cbda35df0d35dcfb9bf8f3c02c57c1d6111169e3c85fc1fcc05e0c9f39a3"}, - {file = "coverage-7.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4175e10cc8dda0265653e8714b3174430b07c1dca8957f4966cbd6c2b1b8065a"}, - {file = "coverage-7.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0cbf38419fb1a347aaf63481c00f0bdc86889d9fbf3f25109cf96c26b403fda1"}, - {file = "coverage-7.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:5c913b556a116b8d5f6ef834038ba983834d887d82187c8f73dec21049abd65c"}, - {file = "coverage-7.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1981f785239e4e39e6444c63a98da3a1db8e971cb9ceb50a945ba6296b43f312"}, - {file = "coverage-7.3.2-cp311-cp311-win32.whl", hash = "sha256:43668cabd5ca8258f5954f27a3aaf78757e6acf13c17604d89648ecc0cc66640"}, - {file = "coverage-7.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10c39c0452bf6e694511c901426d6b5ac005acc0f78ff265dbe36bf81f808a2"}, - {file = "coverage-7.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4cbae1051ab791debecc4a5dcc4a1ff45fc27b91b9aee165c8a27514dd160836"}, - {file = "coverage-7.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12d15ab5833a997716d76f2ac1e4b4d536814fc213c85ca72756c19e5a6b3d63"}, - {file = "coverage-7.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c7bba973ebee5e56fe9251300c00f1579652587a9f4a5ed8404b15a0471f216"}, - {file = "coverage-7.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe494faa90ce6381770746077243231e0b83ff3f17069d748f645617cefe19d4"}, - {file = "coverage-7.3.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6e9589bd04d0461a417562649522575d8752904d35c12907d8c9dfeba588faf"}, - {file = "coverage-7.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d51ac2a26f71da1b57f2dc81d0e108b6ab177e7d30e774db90675467c847bbdf"}, - {file = "coverage-7.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:99b89d9f76070237975b315b3d5f4d6956ae354a4c92ac2388a5695516e47c84"}, - {file = "coverage-7.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fa28e909776dc69efb6ed975a63691bc8172b64ff357e663a1bb06ff3c9b589a"}, - {file = "coverage-7.3.2-cp312-cp312-win32.whl", hash = "sha256:289fe43bf45a575e3ab10b26d7b6f2ddb9ee2dba447499f5401cfb5ecb8196bb"}, - {file = "coverage-7.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:7dbc3ed60e8659bc59b6b304b43ff9c3ed858da2839c78b804973f613d3e92ed"}, - {file = "coverage-7.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f94b734214ea6a36fe16e96a70d941af80ff3bfd716c141300d95ebc85339738"}, - {file = "coverage-7.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:af3d828d2c1cbae52d34bdbb22fcd94d1ce715d95f1a012354a75e5913f1bda2"}, - {file = "coverage-7.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:630b13e3036e13c7adc480ca42fa7afc2a5d938081d28e20903cf7fd687872e2"}, - {file = "coverage-7.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9eacf273e885b02a0273bb3a2170f30e2d53a6d53b72dbe02d6701b5296101c"}, - {file = "coverage-7.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8f17966e861ff97305e0801134e69db33b143bbfb36436efb9cfff6ec7b2fd9"}, - {file = "coverage-7.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b4275802d16882cf9c8b3d057a0839acb07ee9379fa2749eca54efbce1535b82"}, - {file = "coverage-7.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:72c0cfa5250f483181e677ebc97133ea1ab3eb68645e494775deb6a7f6f83901"}, - {file = "coverage-7.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:cb536f0dcd14149425996821a168f6e269d7dcd2c273a8bff8201e79f5104e76"}, - {file = "coverage-7.3.2-cp38-cp38-win32.whl", hash = "sha256:307adb8bd3abe389a471e649038a71b4eb13bfd6b7dd9a129fa856f5c695cf92"}, - {file = "coverage-7.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:88ed2c30a49ea81ea3b7f172e0269c182a44c236eb394718f976239892c0a27a"}, - {file = "coverage-7.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b631c92dfe601adf8f5ebc7fc13ced6bb6e9609b19d9a8cd59fa47c4186ad1ce"}, - {file = "coverage-7.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d3d9df4051c4a7d13036524b66ecf7a7537d14c18a384043f30a303b146164e9"}, - {file = "coverage-7.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f7363d3b6a1119ef05015959ca24a9afc0ea8a02c687fe7e2d557705375c01f"}, - {file = "coverage-7.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2f11cc3c967a09d3695d2a6f03fb3e6236622b93be7a4b5dc09166a861be6d25"}, - {file = "coverage-7.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:149de1d2401ae4655c436a3dced6dd153f4c3309f599c3d4bd97ab172eaf02d9"}, - {file = "coverage-7.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3a4006916aa6fee7cd38db3bfc95aa9c54ebb4ffbfc47c677c8bba949ceba0a6"}, - {file = "coverage-7.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9028a3871280110d6e1aa2df1afd5ef003bab5fb1ef421d6dc748ae1c8ef2ebc"}, - {file = "coverage-7.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9f805d62aec8eb92bab5b61c0f07329275b6f41c97d80e847b03eb894f38d083"}, - {file = "coverage-7.3.2-cp39-cp39-win32.whl", hash = "sha256:d1c88ec1a7ff4ebca0219f5b1ef863451d828cccf889c173e1253aa84b1e07ce"}, - {file = "coverage-7.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b4767da59464bb593c07afceaddea61b154136300881844768037fd5e859353f"}, - {file = "coverage-7.3.2-pp38.pp39.pp310-none-any.whl", hash = "sha256:ae97af89f0fbf373400970c0a21eef5aa941ffeed90aee43650b81f7d7f47637"}, - {file = "coverage-7.3.2.tar.gz", hash = "sha256:be32ad29341b0170e795ca590e1c07e81fc061cb5b10c74ce7203491484404ef"}, + {file = "coverage-7.2.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:883123d0bbe1c136f76b56276074b0c79b5817dd4238097ffa64ac67257f4b6c"}, + {file = "coverage-7.2.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d2fbc2a127e857d2f8898aaabcc34c37771bf78a4d5e17d3e1f5c30cd0cbc62a"}, + {file = "coverage-7.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f3671662dc4b422b15776cdca89c041a6349b4864a43aa2350b6b0b03bbcc7f"}, + {file = "coverage-7.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780551e47d62095e088f251f5db428473c26db7829884323e56d9c0c3118791a"}, + {file = "coverage-7.2.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:066b44897c493e0dcbc9e6a6d9f8bbb6607ef82367cf6810d387c09f0cd4fe9a"}, + {file = "coverage-7.2.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b9a4ee55174b04f6af539218f9f8083140f61a46eabcaa4234f3c2a452c4ed11"}, + {file = "coverage-7.2.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:706ec567267c96717ab9363904d846ec009a48d5f832140b6ad08aad3791b1f5"}, + {file = "coverage-7.2.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ae453f655640157d76209f42c62c64c4d4f2c7f97256d3567e3b439bd5c9b06c"}, + {file = "coverage-7.2.5-cp310-cp310-win32.whl", hash = "sha256:f81c9b4bd8aa747d417407a7f6f0b1469a43b36a85748145e144ac4e8d303cb5"}, + {file = "coverage-7.2.5-cp310-cp310-win_amd64.whl", hash = "sha256:dc945064a8783b86fcce9a0a705abd7db2117d95e340df8a4333f00be5efb64c"}, + {file = "coverage-7.2.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:40cc0f91c6cde033da493227797be2826cbf8f388eaa36a0271a97a332bfd7ce"}, + {file = "coverage-7.2.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a66e055254a26c82aead7ff420d9fa8dc2da10c82679ea850d8feebf11074d88"}, + {file = "coverage-7.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c10fbc8a64aa0f3ed136b0b086b6b577bc64d67d5581acd7cc129af52654384e"}, + {file = "coverage-7.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a22cbb5ede6fade0482111fa7f01115ff04039795d7092ed0db43522431b4f2"}, + {file = "coverage-7.2.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:292300f76440651529b8ceec283a9370532f4ecba9ad67d120617021bb5ef139"}, + {file = "coverage-7.2.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7ff8f3fb38233035028dbc93715551d81eadc110199e14bbbfa01c5c4a43f8d8"}, + {file = "coverage-7.2.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:a08c7401d0b24e8c2982f4e307124b671c6736d40d1c39e09d7a8687bddf83ed"}, + {file = "coverage-7.2.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ef9659d1cda9ce9ac9585c045aaa1e59223b143f2407db0eaee0b61a4f266fb6"}, + {file = "coverage-7.2.5-cp311-cp311-win32.whl", hash = "sha256:30dcaf05adfa69c2a7b9f7dfd9f60bc8e36b282d7ed25c308ef9e114de7fc23b"}, + {file = "coverage-7.2.5-cp311-cp311-win_amd64.whl", hash = "sha256:97072cc90f1009386c8a5b7de9d4fc1a9f91ba5ef2146c55c1f005e7b5c5e068"}, + {file = "coverage-7.2.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:bebea5f5ed41f618797ce3ffb4606c64a5de92e9c3f26d26c2e0aae292f015c1"}, + {file = "coverage-7.2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828189fcdda99aae0d6bf718ea766b2e715eabc1868670a0a07bf8404bf58c33"}, + {file = "coverage-7.2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e8a95f243d01ba572341c52f89f3acb98a3b6d1d5d830efba86033dd3687ade"}, + {file = "coverage-7.2.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8834e5f17d89e05697c3c043d3e58a8b19682bf365048837383abfe39adaed5"}, + {file = "coverage-7.2.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d1f25ee9de21a39b3a8516f2c5feb8de248f17da7eead089c2e04aa097936b47"}, + {file = "coverage-7.2.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1637253b11a18f453e34013c665d8bf15904c9e3c44fbda34c643fbdc9d452cd"}, + {file = "coverage-7.2.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8e575a59315a91ccd00c7757127f6b2488c2f914096077c745c2f1ba5b8c0969"}, + {file = "coverage-7.2.5-cp37-cp37m-win32.whl", hash = "sha256:509ecd8334c380000d259dc66feb191dd0a93b21f2453faa75f7f9cdcefc0718"}, + {file = "coverage-7.2.5-cp37-cp37m-win_amd64.whl", hash = "sha256:12580845917b1e59f8a1c2ffa6af6d0908cb39220f3019e36c110c943dc875b0"}, + {file = "coverage-7.2.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b5016e331b75310610c2cf955d9f58a9749943ed5f7b8cfc0bb89c6134ab0a84"}, + {file = "coverage-7.2.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:373ea34dca98f2fdb3e5cb33d83b6d801007a8074f992b80311fc589d3e6b790"}, + {file = "coverage-7.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a063aad9f7b4c9f9da7b2550eae0a582ffc7623dca1c925e50c3fbde7a579771"}, + {file = "coverage-7.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38c0a497a000d50491055805313ed83ddba069353d102ece8aef5d11b5faf045"}, + {file = "coverage-7.2.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2b3b05e22a77bb0ae1a3125126a4e08535961c946b62f30985535ed40e26614"}, + {file = "coverage-7.2.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0342a28617e63ad15d96dca0f7ae9479a37b7d8a295f749c14f3436ea59fdcb3"}, + {file = "coverage-7.2.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:cf97ed82ca986e5c637ea286ba2793c85325b30f869bf64d3009ccc1a31ae3fd"}, + {file = "coverage-7.2.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c2c41c1b1866b670573657d584de413df701f482574bad7e28214a2362cb1fd1"}, + {file = "coverage-7.2.5-cp38-cp38-win32.whl", hash = "sha256:10b15394c13544fce02382360cab54e51a9e0fd1bd61ae9ce012c0d1e103c813"}, + {file = "coverage-7.2.5-cp38-cp38-win_amd64.whl", hash = "sha256:a0b273fe6dc655b110e8dc89b8ec7f1a778d78c9fd9b4bda7c384c8906072212"}, + {file = "coverage-7.2.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5c587f52c81211d4530fa6857884d37f514bcf9453bdeee0ff93eaaf906a5c1b"}, + {file = "coverage-7.2.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4436cc9ba5414c2c998eaedee5343f49c02ca93b21769c5fdfa4f9d799e84200"}, + {file = "coverage-7.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6599bf92f33ab041e36e06d25890afbdf12078aacfe1f1d08c713906e49a3fe5"}, + {file = "coverage-7.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:857abe2fa6a4973f8663e039ead8d22215d31db613ace76e4a98f52ec919068e"}, + {file = "coverage-7.2.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6f5cab2d7f0c12f8187a376cc6582c477d2df91d63f75341307fcdcb5d60303"}, + {file = "coverage-7.2.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:aa387bd7489f3e1787ff82068b295bcaafbf6f79c3dad3cbc82ef88ce3f48ad3"}, + {file = "coverage-7.2.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:156192e5fd3dbbcb11cd777cc469cf010a294f4c736a2b2c891c77618cb1379a"}, + {file = "coverage-7.2.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bd3b4b8175c1db502adf209d06136c000df4d245105c8839e9d0be71c94aefe1"}, + {file = "coverage-7.2.5-cp39-cp39-win32.whl", hash = "sha256:ddc5a54edb653e9e215f75de377354e2455376f416c4378e1d43b08ec50acc31"}, + {file = "coverage-7.2.5-cp39-cp39-win_amd64.whl", hash = "sha256:338aa9d9883aaaad53695cb14ccdeb36d4060485bb9388446330bef9c361c252"}, + {file = "coverage-7.2.5-pp37.pp38.pp39-none-any.whl", hash = "sha256:8877d9b437b35a85c18e3c6499b23674684bf690f5d96c1006a1ef61f9fdf0f3"}, + {file = "coverage-7.2.5.tar.gz", hash = "sha256:f99ef080288f09ffc687423b8d60978cf3a465d3f404a18d1a05474bd8575a47"}, ] [package.dependencies] @@ -927,7 +901,6 @@ toml = ["tomli"] name = "crcmod" version = "1.7" description = "CRC Generator" -category = "main" optional = true python-versions = "*" files = [ @@ -938,7 +911,6 @@ files = [ name = "cryptography" version = "36.0.2" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -977,14 +949,13 @@ test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0 [[package]] name = "dateparser" -version = "1.2.0" +version = "1.1.8" description = "Date parsing library designed to parse dates from HTML pages" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "dateparser-1.2.0-py2.py3-none-any.whl", hash = "sha256:0b21ad96534e562920a0083e97fd45fa959882d4162acc358705144520a35830"}, - {file = "dateparser-1.2.0.tar.gz", hash = "sha256:7975b43a4222283e0ae15be7b4999d08c9a70e2d378ac87385b1ccf2cffbbb30"}, + {file = "dateparser-1.1.8-py2.py3-none-any.whl", hash = "sha256:070b29b5bbf4b1ec2cd51c96ea040dc68a614de703910a91ad1abba18f9f379f"}, + {file = "dateparser-1.1.8.tar.gz", hash = "sha256:86b8b7517efcc558f085a142cdb7620f0921543fcabdb538c8a4c4001d8178e3"}, ] [package.dependencies] @@ -1000,37 +971,35 @@ langdetect = ["langdetect"] [[package]] name = "debugpy" -version = "1.8.0" +version = "1.6.7" description = "An implementation of the Debug Adapter Protocol for Python" -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "debugpy-1.8.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:7fb95ca78f7ac43393cd0e0f2b6deda438ec7c5e47fa5d38553340897d2fbdfb"}, - {file = "debugpy-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef9ab7df0b9a42ed9c878afd3eaaff471fce3fa73df96022e1f5c9f8f8c87ada"}, - {file = "debugpy-1.8.0-cp310-cp310-win32.whl", hash = "sha256:a8b7a2fd27cd9f3553ac112f356ad4ca93338feadd8910277aff71ab24d8775f"}, - {file = "debugpy-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:5d9de202f5d42e62f932507ee8b21e30d49aae7e46d5b1dd5c908db1d7068637"}, - {file = "debugpy-1.8.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:ef54404365fae8d45cf450d0544ee40cefbcb9cb85ea7afe89a963c27028261e"}, - {file = "debugpy-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60009b132c91951354f54363f8ebdf7457aeb150e84abba5ae251b8e9f29a8a6"}, - {file = "debugpy-1.8.0-cp311-cp311-win32.whl", hash = "sha256:8cd0197141eb9e8a4566794550cfdcdb8b3db0818bdf8c49a8e8f8053e56e38b"}, - {file = "debugpy-1.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:a64093656c4c64dc6a438e11d59369875d200bd5abb8f9b26c1f5f723622e153"}, - {file = "debugpy-1.8.0-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:b05a6b503ed520ad58c8dc682749113d2fd9f41ffd45daec16e558ca884008cd"}, - {file = "debugpy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c6fb41c98ec51dd010d7ed650accfd07a87fe5e93eca9d5f584d0578f28f35f"}, - {file = "debugpy-1.8.0-cp38-cp38-win32.whl", hash = "sha256:46ab6780159eeabb43c1495d9c84cf85d62975e48b6ec21ee10c95767c0590aa"}, - {file = "debugpy-1.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:bdc5ef99d14b9c0fcb35351b4fbfc06ac0ee576aeab6b2511702e5a648a2e595"}, - {file = "debugpy-1.8.0-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:61eab4a4c8b6125d41a34bad4e5fe3d2cc145caecd63c3fe953be4cc53e65bf8"}, - {file = "debugpy-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:125b9a637e013f9faac0a3d6a82bd17c8b5d2c875fb6b7e2772c5aba6d082332"}, - {file = "debugpy-1.8.0-cp39-cp39-win32.whl", hash = "sha256:57161629133113c97b387382045649a2b985a348f0c9366e22217c87b68b73c6"}, - {file = "debugpy-1.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:e3412f9faa9ade82aa64a50b602544efcba848c91384e9f93497a458767e6926"}, - {file = "debugpy-1.8.0-py2.py3-none-any.whl", hash = "sha256:9c9b0ac1ce2a42888199df1a1906e45e6f3c9555497643a85e0bf2406e3ffbc4"}, - {file = "debugpy-1.8.0.zip", hash = "sha256:12af2c55b419521e33d5fb21bd022df0b5eb267c3e178f1d374a63a2a6bdccd0"}, + {file = "debugpy-1.6.7-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:b3e7ac809b991006ad7f857f016fa92014445085711ef111fdc3f74f66144096"}, + {file = "debugpy-1.6.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3876611d114a18aafef6383695dfc3f1217c98a9168c1aaf1a02b01ec7d8d1e"}, + {file = "debugpy-1.6.7-cp310-cp310-win32.whl", hash = "sha256:33edb4afa85c098c24cc361d72ba7c21bb92f501104514d4ffec1fb36e09c01a"}, + {file = "debugpy-1.6.7-cp310-cp310-win_amd64.whl", hash = "sha256:ed6d5413474e209ba50b1a75b2d9eecf64d41e6e4501977991cdc755dc83ab0f"}, + {file = "debugpy-1.6.7-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:38ed626353e7c63f4b11efad659be04c23de2b0d15efff77b60e4740ea685d07"}, + {file = "debugpy-1.6.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:279d64c408c60431c8ee832dfd9ace7c396984fd7341fa3116aee414e7dcd88d"}, + {file = "debugpy-1.6.7-cp37-cp37m-win32.whl", hash = "sha256:dbe04e7568aa69361a5b4c47b4493d5680bfa3a911d1e105fbea1b1f23f3eb45"}, + {file = "debugpy-1.6.7-cp37-cp37m-win_amd64.whl", hash = "sha256:f90a2d4ad9a035cee7331c06a4cf2245e38bd7c89554fe3b616d90ab8aab89cc"}, + {file = "debugpy-1.6.7-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:5224eabbbeddcf1943d4e2821876f3e5d7d383f27390b82da5d9558fd4eb30a9"}, + {file = "debugpy-1.6.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bae1123dff5bfe548ba1683eb972329ba6d646c3a80e6b4c06cd1b1dd0205e9b"}, + {file = "debugpy-1.6.7-cp38-cp38-win32.whl", hash = "sha256:9cd10cf338e0907fdcf9eac9087faa30f150ef5445af5a545d307055141dd7a4"}, + {file = "debugpy-1.6.7-cp38-cp38-win_amd64.whl", hash = "sha256:aaf6da50377ff4056c8ed470da24632b42e4087bc826845daad7af211e00faad"}, + {file = "debugpy-1.6.7-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:0679b7e1e3523bd7d7869447ec67b59728675aadfc038550a63a362b63029d2c"}, + {file = "debugpy-1.6.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de86029696e1b3b4d0d49076b9eba606c226e33ae312a57a46dca14ff370894d"}, + {file = "debugpy-1.6.7-cp39-cp39-win32.whl", hash = "sha256:d71b31117779d9a90b745720c0eab54ae1da76d5b38c8026c654f4a066b0130a"}, + {file = "debugpy-1.6.7-cp39-cp39-win_amd64.whl", hash = "sha256:c0ff93ae90a03b06d85b2c529eca51ab15457868a377c4cc40a23ab0e4e552a3"}, + {file = "debugpy-1.6.7-py2.py3-none-any.whl", hash = "sha256:53f7a456bc50706a0eaabecf2d3ce44c4d5010e46dfc65b6b81a518b42866267"}, + {file = "debugpy-1.6.7.zip", hash = "sha256:c4c2f0810fa25323abfdfa36cbbbb24e5c3b1a42cb762782de64439c575d67f2"}, ] [[package]] name = "decorator" version = "5.1.1" description = "Decorators for Humans" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1040,28 +1009,27 @@ files = [ [[package]] name = "demisto-py" -version = "3.2.13" -description = "\"A Python library for the Demisto API\"" -category = "main" +version = "3.2.10" +description = "A Python library for the Demisto API" optional = false -python-versions = ">=3.8,<3.11" +python-versions = ">=3.8" files = [ - {file = "demisto_py-3.2.13-py3-none-any.whl", hash = "sha256:46881ed6bb0a0be78aefa81dade55271b18a50b277b03f3127b0a7d7ba0454e4"}, - {file = "demisto_py-3.2.13.tar.gz", hash = "sha256:3cf8779c0a37d57b9c3317abfbd6f2c021980675f294652c70488f24cc162146"}, + {file = "demisto-py-3.2.10.tar.gz", hash = "sha256:ae3ee25afe2fabee1e6120aafbb84615aa583ebe407b54ff10f2747bbdcc6514"}, + {file = "demisto_py-3.2.10-py3-none-any.whl", hash = "sha256:70bd630374fc2c238e5aed1bedebdd8e8105161a62b696fd327ff2ed8893dca3"}, ] [package.dependencies] certifi = ">=2017.4.17" python-dateutil = ">=2.5.3" +setuptools = ">=21.0.0" six = ">=1.10" -tzlocal = ">=4.0.0,<5.0.0" +tzlocal = "==4.*" urllib3 = ">=1.26.7" [[package]] name = "dictdiffer" version = "0.9.0" description = "Dictdiffer is a library that helps you to diff and patch dictionaries." -category = "main" optional = false python-versions = "*" files = [ @@ -1077,32 +1045,29 @@ tests = ["check-manifest (>=0.42)", "mock (>=1.3.0)", "pytest (==5.4.3)", "pytes [[package]] name = "dictor" -version = "0.1.12" +version = "0.1.11" description = "an elegant dictionary and JSON handler" -category = "main" optional = false python-versions = "*" files = [ - {file = "dictor-0.1.12.tar.gz", hash = "sha256:6db48375ae1e53dc9ed844e85b38f4e3fbfbf6a4e60beca377515ad14453b91b"}, + {file = "dictor-0.1.11.tar.gz", hash = "sha256:4a8b1c2226f992d4cef4bad7435ffb5c647f982c8de9345d7cd1dcca25d1636d"}, ] [[package]] name = "distlib" -version = "0.3.7" +version = "0.3.6" description = "Distribution utilities" -category = "dev" optional = false python-versions = "*" files = [ - {file = "distlib-0.3.7-py2.py3-none-any.whl", hash = "sha256:2e24928bc811348f0feb63014e97aaae3037f2cf48712d51ae61df7fd6075057"}, - {file = "distlib-0.3.7.tar.gz", hash = "sha256:9dafe54b34a028eafd95039d5e5d4851a13734540f1331060d31c9916e7147a8"}, + {file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"}, + {file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"}, ] [[package]] name = "docker" version = "5.0.3" description = "A Python library for the Docker Engine API." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1123,7 +1088,6 @@ tls = ["cryptography (>=3.4.7)", "idna (>=2.0.0)", "pyOpenSSL (>=17.5.0)"] name = "docopt" version = "0.6.2" description = "Pythonic argument parser, that will make you smile" -category = "main" optional = false python-versions = "*" files = [ @@ -1132,14 +1096,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.1.3" +version = "1.1.1" description = "Backport of PEP 654 (exception groups)" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.1.3-py3-none-any.whl", hash = "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3"}, - {file = "exceptiongroup-1.1.3.tar.gz", hash = "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9"}, + {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, + {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, ] [package.extras] @@ -1147,53 +1110,48 @@ test = ["pytest (>=6)"] [[package]] name = "executing" -version = "2.0.1" +version = "1.2.0" description = "Get the currently executing AST node of a frame, and other information" -category = "dev" optional = false -python-versions = ">=3.5" +python-versions = "*" files = [ - {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"}, - {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"}, + {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, + {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, ] [package.extras] -tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] +tests = ["asttokens", "littleutils", "pytest", "rich"] [[package]] name = "fasteners" -version = "0.19" +version = "0.18" description = "A python package that provides useful locks" -category = "main" optional = true python-versions = ">=3.6" files = [ - {file = "fasteners-0.19-py3-none-any.whl", hash = "sha256:758819cb5d94cdedf4e836988b74de396ceacb8e2794d21f82d131fd9ee77237"}, - {file = "fasteners-0.19.tar.gz", hash = "sha256:b4f37c3ac52d8a445af3a66bce57b33b5e90b97c696b7b984f530cf8f0ded09c"}, + {file = "fasteners-0.18-py3-none-any.whl", hash = "sha256:1d4caf5f8db57b0e4107d94fd5a1d02510a450dced6ca77d1839064c1bacf20c"}, + {file = "fasteners-0.18.tar.gz", hash = "sha256:cb7c13ef91e0c7e4fe4af38ecaf6b904ec3f5ce0dda06d34924b6b74b869d953"}, ] [[package]] name = "filelock" -version = "3.13.1" +version = "3.12.0" description = "A platform independent file lock." -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, - {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, + {file = "filelock-3.12.0-py3-none-any.whl", hash = "sha256:ad98852315c2ab702aeb628412cbf7e95b7ce8c3bf9565670b4eaecf1db370a9"}, + {file = "filelock-3.12.0.tar.gz", hash = "sha256:fc03ae43288c013d2ea83c8597001b1129db351aad9c57fe2409327916b8e718"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.24)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"] -typing = ["typing-extensions (>=4.8)"] +docs = ["furo (>=2023.3.27)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "diff-cover (>=7.5)", "pytest (>=7.3.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)", "pytest-timeout (>=2.1)"] [[package]] name = "flask" version = "2.0.3" description = "A simple framework for building complex web applications." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1215,7 +1173,6 @@ dotenv = ["python-dotenv"] name = "flatten-dict" version = "0.4.2" description = "A flexible utility for flattening and unflattening dict-like objects in Python." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1230,7 +1187,6 @@ six = ">=1.12,<2.0" name = "freezegun" version = "1.2.2" description = "Let your Python tests travel through time" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1243,80 +1199,91 @@ python-dateutil = ">=2.7" [[package]] name = "frozenlist" -version = "1.4.0" +version = "1.3.3" description = "A list-like structure which implements collections.abc.MutableSequence" -category = "main" optional = true -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, - {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, - {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, - {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, - {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, - {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, - {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, - {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, - {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, - {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, - {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, - {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, - {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, - {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, - {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, - {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, - {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, - {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, - {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, - {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, - {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, + {file = "frozenlist-1.3.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ff8bf625fe85e119553b5383ba0fb6aa3d0ec2ae980295aaefa552374926b3f4"}, + {file = "frozenlist-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dfbac4c2dfcc082fcf8d942d1e49b6aa0766c19d3358bd86e2000bf0fa4a9cf0"}, + {file = "frozenlist-1.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b1c63e8d377d039ac769cd0926558bb7068a1f7abb0f003e3717ee003ad85530"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fdfc24dcfce5b48109867c13b4cb15e4660e7bd7661741a391f821f23dfdca7"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c926450857408e42f0bbc295e84395722ce74bae69a3b2aa2a65fe22cb14b99"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1841e200fdafc3d51f974d9d377c079a0694a8f06de2e67b48150328d66d5483"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f470c92737afa7d4c3aacc001e335062d582053d4dbe73cda126f2d7031068dd"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:783263a4eaad7c49983fe4b2e7b53fa9770c136c270d2d4bbb6d2192bf4d9caf"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:924620eef691990dfb56dc4709f280f40baee568c794b5c1885800c3ecc69816"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ae4dc05c465a08a866b7a1baf360747078b362e6a6dbeb0c57f234db0ef88ae0"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:bed331fe18f58d844d39ceb398b77d6ac0b010d571cba8267c2e7165806b00ce"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:02c9ac843e3390826a265e331105efeab489ffaf4dd86384595ee8ce6d35ae7f"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9545a33965d0d377b0bc823dcabf26980e77f1b6a7caa368a365a9497fb09420"}, + {file = "frozenlist-1.3.3-cp310-cp310-win32.whl", hash = "sha256:d5cd3ab21acbdb414bb6c31958d7b06b85eeb40f66463c264a9b343a4e238642"}, + {file = "frozenlist-1.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:b756072364347cb6aa5b60f9bc18e94b2f79632de3b0190253ad770c5df17db1"}, + {file = "frozenlist-1.3.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b4395e2f8d83fbe0c627b2b696acce67868793d7d9750e90e39592b3626691b7"}, + {file = "frozenlist-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:14143ae966a6229350021384870458e4777d1eae4c28d1a7aa47f24d030e6678"}, + {file = "frozenlist-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5d8860749e813a6f65bad8285a0520607c9500caa23fea6ee407e63debcdbef6"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23d16d9f477bb55b6154654e0e74557040575d9d19fe78a161bd33d7d76808e8"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb82dbba47a8318e75f679690190c10a5e1f447fbf9df41cbc4c3afd726d88cb"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9309869032abb23d196cb4e4db574232abe8b8be1339026f489eeb34a4acfd91"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a97b4fe50b5890d36300820abd305694cb865ddb7885049587a5678215782a6b"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c188512b43542b1e91cadc3c6c915a82a5eb95929134faf7fd109f14f9892ce4"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:303e04d422e9b911a09ad499b0368dc551e8c3cd15293c99160c7f1f07b59a48"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0771aed7f596c7d73444c847a1c16288937ef988dc04fb9f7be4b2aa91db609d"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:66080ec69883597e4d026f2f71a231a1ee9887835902dbe6b6467d5a89216cf6"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:41fe21dc74ad3a779c3d73a2786bdf622ea81234bdd4faf90b8b03cad0c2c0b4"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f20380df709d91525e4bee04746ba612a4df0972c1b8f8e1e8af997e678c7b81"}, + {file = "frozenlist-1.3.3-cp311-cp311-win32.whl", hash = "sha256:f30f1928162e189091cf4d9da2eac617bfe78ef907a761614ff577ef4edfb3c8"}, + {file = "frozenlist-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:a6394d7dadd3cfe3f4b3b186e54d5d8504d44f2d58dcc89d693698e8b7132b32"}, + {file = "frozenlist-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8df3de3a9ab8325f94f646609a66cbeeede263910c5c0de0101079ad541af332"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0693c609e9742c66ba4870bcee1ad5ff35462d5ffec18710b4ac89337ff16e27"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cd4210baef299717db0a600d7a3cac81d46ef0e007f88c9335db79f8979c0d3d"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:394c9c242113bfb4b9aa36e2b80a05ffa163a30691c7b5a29eba82e937895d5e"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6327eb8e419f7d9c38f333cde41b9ae348bec26d840927332f17e887a8dcb70d"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e24900aa13212e75e5b366cb9065e78bbf3893d4baab6052d1aca10d46d944c"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3843f84a6c465a36559161e6c59dce2f2ac10943040c2fd021cfb70d58c4ad56"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:84610c1502b2461255b4c9b7d5e9c48052601a8957cd0aea6ec7a7a1e1fb9420"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:c21b9aa40e08e4f63a2f92ff3748e6b6c84d717d033c7b3438dd3123ee18f70e"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:efce6ae830831ab6a22b9b4091d411698145cb9b8fc869e1397ccf4b4b6455cb"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:40de71985e9042ca00b7953c4f41eabc3dc514a2d1ff534027f091bc74416401"}, + {file = "frozenlist-1.3.3-cp37-cp37m-win32.whl", hash = "sha256:180c00c66bde6146a860cbb81b54ee0df350d2daf13ca85b275123bbf85de18a"}, + {file = "frozenlist-1.3.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9bbbcedd75acdfecf2159663b87f1bb5cfc80e7cd99f7ddd9d66eb98b14a8411"}, + {file = "frozenlist-1.3.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:034a5c08d36649591be1cbb10e09da9f531034acfe29275fc5454a3b101ce41a"}, + {file = "frozenlist-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ba64dc2b3b7b158c6660d49cdb1d872d1d0bf4e42043ad8d5006099479a194e5"}, + {file = "frozenlist-1.3.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:47df36a9fe24054b950bbc2db630d508cca3aa27ed0566c0baf661225e52c18e"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:008a054b75d77c995ea26629ab3a0c0d7281341f2fa7e1e85fa6153ae29ae99c"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:841ea19b43d438a80b4de62ac6ab21cfe6827bb8a9dc62b896acc88eaf9cecba"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e235688f42b36be2b6b06fc37ac2126a73b75fb8d6bc66dd632aa35286238703"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca713d4af15bae6e5d79b15c10c8522859a9a89d3b361a50b817c98c2fb402a2"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ac5995f2b408017b0be26d4a1d7c61bce106ff3d9e3324374d66b5964325448"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a4ae8135b11652b08a8baf07631d3ebfe65a4c87909dbef5fa0cdde440444ee4"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4ea42116ceb6bb16dbb7d526e242cb6747b08b7710d9782aa3d6732bd8d27649"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:810860bb4bdce7557bc0febb84bbd88198b9dbc2022d8eebe5b3590b2ad6c842"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:ee78feb9d293c323b59a6f2dd441b63339a30edf35abcb51187d2fc26e696d13"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0af2e7c87d35b38732e810befb9d797a99279cbb85374d42ea61c1e9d23094b3"}, + {file = "frozenlist-1.3.3-cp38-cp38-win32.whl", hash = "sha256:899c5e1928eec13fd6f6d8dc51be23f0d09c5281e40d9cf4273d188d9feeaf9b"}, + {file = "frozenlist-1.3.3-cp38-cp38-win_amd64.whl", hash = "sha256:7f44e24fa70f6fbc74aeec3e971f60a14dde85da364aa87f15d1be94ae75aeef"}, + {file = "frozenlist-1.3.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2b07ae0c1edaa0a36339ec6cce700f51b14a3fc6545fdd32930d2c83917332cf"}, + {file = "frozenlist-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ebb86518203e12e96af765ee89034a1dbb0c3c65052d1b0c19bbbd6af8a145e1"}, + {file = "frozenlist-1.3.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5cf820485f1b4c91e0417ea0afd41ce5cf5965011b3c22c400f6d144296ccbc0"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c11e43016b9024240212d2a65043b70ed8dfd3b52678a1271972702d990ac6d"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8fa3c6e3305aa1146b59a09b32b2e04074945ffcfb2f0931836d103a2c38f936"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:352bd4c8c72d508778cf05ab491f6ef36149f4d0cb3c56b1b4302852255d05d5"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65a5e4d3aa679610ac6e3569e865425b23b372277f89b5ef06cf2cdaf1ebf22b"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e2c1185858d7e10ff045c496bbf90ae752c28b365fef2c09cf0fa309291669"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f163d2fd041c630fed01bc48d28c3ed4a3b003c00acd396900e11ee5316b56bb"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:05cdb16d09a0832eedf770cb7bd1fe57d8cf4eaf5aced29c4e41e3f20b30a784"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8bae29d60768bfa8fb92244b74502b18fae55a80eac13c88eb0b496d4268fd2d"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eedab4c310c0299961ac285591acd53dc6723a1ebd90a57207c71f6e0c2153ab"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3bbdf44855ed8f0fbcd102ef05ec3012d6a4fd7c7562403f76ce6a52aeffb2b1"}, + {file = "frozenlist-1.3.3-cp39-cp39-win32.whl", hash = "sha256:efa568b885bca461f7c7b9e032655c0c143d305bf01c30caf6db2854a4532b38"}, + {file = "frozenlist-1.3.3-cp39-cp39-win_amd64.whl", hash = "sha256:cfe33efc9cb900a4c46f91a5ceba26d6df370ffddd9ca386eb1d4f0ad97b9ea9"}, + {file = "frozenlist-1.3.3.tar.gz", hash = "sha256:58bcc55721e8a90b88332d6cd441261ebb22342e238296bb330968952fbb3a6a"}, ] [[package]] name = "future" version = "0.18.3" description = "Clean single-source support for Python 3 and 2" -category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1327,7 +1294,6 @@ files = [ name = "gcs-oauth2-boto-plugin" version = "3.0" description = "Auth plugin allowing use the use of OAuth 2.0 credentials for Google Cloud Storage in the Boto library." -category = "main" optional = true python-versions = "*" files = [ @@ -1349,14 +1315,13 @@ dev = ["freezegun", "mock"] [[package]] name = "gitdb" -version = "4.0.11" +version = "4.0.10" description = "Git Object Database" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "gitdb-4.0.11-py3-none-any.whl", hash = "sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4"}, - {file = "gitdb-4.0.11.tar.gz", hash = "sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b"}, + {file = "gitdb-4.0.10-py3-none-any.whl", hash = "sha256:c286cf298426064079ed96a9e4a9d39e7f3e9bf15ba60701e95f5492f28415c7"}, + {file = "gitdb-4.0.10.tar.gz", hash = "sha256:6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"}, ] [package.dependencies] @@ -1364,27 +1329,25 @@ smmap = ">=3.0.1,<6" [[package]] name = "gitpython" -version = "3.1.40" +version = "3.1.37" description = "GitPython is a Python library used to interact with Git repositories" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "GitPython-3.1.40-py3-none-any.whl", hash = "sha256:cf14627d5a8049ffbf49915732e5eddbe8134c3bdb9d476e6182b676fc573f8a"}, - {file = "GitPython-3.1.40.tar.gz", hash = "sha256:22b126e9ffb671fdd0c129796343a02bf67bf2994b35449ffc9321aa755e18a4"}, + {file = "GitPython-3.1.37-py3-none-any.whl", hash = "sha256:5f4c4187de49616d710a77e98ddf17b4782060a1788df441846bddefbb89ab33"}, + {file = "GitPython-3.1.37.tar.gz", hash = "sha256:f9b9ddc0761c125d5780eab2d64be4873fc6817c2899cbcb34b02344bdc7bc54"}, ] [package.dependencies] gitdb = ">=4.0.1,<5" [package.extras] -test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-instafail", "pytest-subtests", "pytest-sugar"] +test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-sugar"] [[package]] name = "giturlparse" version = "0.10.0" description = "A Git URL parsing module (supports parsing and rewriting)" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1394,34 +1357,32 @@ files = [ [[package]] name = "google-api-core" -version = "2.14.0" +version = "2.11.0" description = "Google API client core library" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "google-api-core-2.14.0.tar.gz", hash = "sha256:5368a4502b793d9bbf812a5912e13e4e69f9bd87f6efb508460c43f5bbd1ce41"}, - {file = "google_api_core-2.14.0-py3-none-any.whl", hash = "sha256:de2fb50ed34d47ddbb2bd2dcf680ee8fead46279f4ed6b16de362aca23a18952"}, + {file = "google-api-core-2.11.0.tar.gz", hash = "sha256:4b9bb5d5a380a0befa0573b302651b8a9a89262c1730e37bf423cec511804c22"}, + {file = "google_api_core-2.11.0-py3-none-any.whl", hash = "sha256:ce222e27b0de0d7bc63eb043b956996d6dccab14cc3b690aaea91c9cc99dc16e"}, ] [package.dependencies] -google-auth = ">=2.14.1,<3.0.dev0" -googleapis-common-protos = ">=1.56.2,<2.0.dev0" +google-auth = ">=2.14.1,<3.0dev" +googleapis-common-protos = ">=1.56.2,<2.0dev" grpcio = {version = ">=1.33.2,<2.0dev", optional = true, markers = "extra == \"grpc\""} -grpcio-status = {version = ">=1.33.2,<2.0.dev0", optional = true, markers = "extra == \"grpc\""} -protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" -requests = ">=2.18.0,<3.0.0.dev0" +grpcio-status = {version = ">=1.33.2,<2.0dev", optional = true, markers = "extra == \"grpc\""} +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" +requests = ">=2.18.0,<3.0.0dev" [package.extras] -grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] -grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] -grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0dev)", "grpcio-status (>=1.49.1,<2.0dev)"] +grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] +grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] [[package]] name = "google-apitools" version = "0.5.32" description = "client libraries for humans" -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1443,7 +1404,6 @@ testing = ["mock (>=1.0.1)"] name = "google-auth" version = "2.23.4" description = "Google Authentication Library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1467,18 +1427,17 @@ requests = ["requests (>=2.20.0,<3.0.0.dev0)"] [[package]] name = "google-cloud-core" -version = "2.3.3" +version = "2.3.2" description = "Google Cloud API client core library" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "google-cloud-core-2.3.3.tar.gz", hash = "sha256:37b80273c8d7eee1ae816b3a20ae43585ea50506cb0e60f3cf5be5f87f1373cb"}, - {file = "google_cloud_core-2.3.3-py2.py3-none-any.whl", hash = "sha256:fbd11cad3e98a7e5b0343dc07cb1039a5ffd7a5bb96e1f1e27cee4bda4a90863"}, + {file = "google-cloud-core-2.3.2.tar.gz", hash = "sha256:b9529ee7047fd8d4bf4a2182de619154240df17fbe60ead399078c1ae152af9a"}, + {file = "google_cloud_core-2.3.2-py2.py3-none-any.whl", hash = "sha256:8417acf6466be2fa85123441696c4badda48db314c607cf1e5d543fa8bdc22fe"}, ] [package.dependencies] -google-api-core = ">=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.6,<2.0.dev0 || >2.3.0,<3.0.0dev" google-auth = ">=1.25.0,<3.0dev" [package.extras] @@ -1488,7 +1447,6 @@ grpc = ["grpcio (>=1.38.0,<2.0dev)"] name = "google-cloud-secret-manager" version = "2.16.4" description = "Google Cloud Secret Manager API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1497,7 +1455,7 @@ files = [ ] [package.dependencies] -google-api-core = {version = ">=1.34.0,<2.0.0 || >=2.11.0,<3.0.0dev", extras = ["grpc"]} +google-api-core = {version = ">=1.34.0,<2.0.dev0 || >=2.11.dev0,<3.0.0dev", extras = ["grpc"]} grpc-google-iam-v1 = ">=0.12.4,<1.0.0dev" proto-plus = ">=1.22.0,<2.0.0dev" protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" @@ -1506,7 +1464,6 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4 name = "google-cloud-storage" version = "2.13.0" description = "Google Cloud Storage API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1515,7 +1472,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0dev" google-auth = ">=2.23.3,<3.0dev" google-cloud-core = ">=2.3.0,<3.0dev" google-crc32c = ">=1.0,<2.0dev" @@ -1529,7 +1486,6 @@ protobuf = ["protobuf (<5.0.0dev)"] name = "google-crc32c" version = "1.5.0" description = "A python wrapper of the C library 'Google CRC32C'" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1610,7 +1566,6 @@ testing = ["pytest"] name = "google-reauth" version = "0.1.1" description = "Google Reauth Library" -category = "main" optional = true python-versions = "*" files = [ @@ -1628,7 +1583,6 @@ oauth2client = ["oauth2client (>=2.0.0)"] name = "google-resumable-media" version = "2.6.0" description = "Utilities for Google Media Downloads and Resumable Uploads" -category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -1645,28 +1599,26 @@ requests = ["requests (>=2.18.0,<3.0.0dev)"] [[package]] name = "googleapis-common-protos" -version = "1.61.0" +version = "1.59.0" description = "Common protobufs used in Google APIs" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "googleapis-common-protos-1.61.0.tar.gz", hash = "sha256:8a64866a97f6304a7179873a465d6eee97b7a24ec6cfd78e0f575e96b821240b"}, - {file = "googleapis_common_protos-1.61.0-py2.py3-none-any.whl", hash = "sha256:22f1915393bb3245343f6efe87f6fe868532efc12aa26b391b15132e1279f1c0"}, + {file = "googleapis-common-protos-1.59.0.tar.gz", hash = "sha256:4168fcb568a826a52f23510412da405abd93f4d23ba544bb68d943b14ba3cb44"}, + {file = "googleapis_common_protos-1.59.0-py2.py3-none-any.whl", hash = "sha256:b287dc48449d1d41af0c69f4ea26242b5ae4c3d7249a38b0984c86a4caffff1f"}, ] [package.dependencies] -grpcio = {version = ">=1.44.0,<2.0.0.dev0", optional = true, markers = "extra == \"grpc\""} -protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" +grpcio = {version = ">=1.44.0,<2.0.0dev", optional = true, markers = "extra == \"grpc\""} +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" [package.extras] -grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] +grpc = ["grpcio (>=1.44.0,<2.0.0dev)"] [[package]] name = "grpc-google-iam-v1" version = "0.12.7" description = "IAM API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1681,76 +1633,74 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4 [[package]] name = "grpcio" -version = "1.59.3" +version = "1.59.2" description = "HTTP/2-based RPC framework" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "grpcio-1.59.3-cp310-cp310-linux_armv7l.whl", hash = "sha256:aca028a6c7806e5b61e5f9f4232432c52856f7fcb98e330b20b6bc95d657bdcc"}, - {file = "grpcio-1.59.3-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:19ad26a7967f7999c8960d2b9fe382dae74c55b0c508c613a6c2ba21cddf2354"}, - {file = "grpcio-1.59.3-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:72b71dad2a3d1650e69ad42a5c4edbc59ee017f08c32c95694172bc501def23c"}, - {file = "grpcio-1.59.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c0f0a11d82d0253656cc42e04b6a149521e02e755fe2e4edd21123de610fd1d4"}, - {file = "grpcio-1.59.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60cddafb70f9a2c81ba251b53b4007e07cca7389e704f86266e22c4bffd8bf1d"}, - {file = "grpcio-1.59.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6c75a1fa0e677c1d2b6d4196ad395a5c381dfb8385f07ed034ef667cdcdbcc25"}, - {file = "grpcio-1.59.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e1d8e01438d5964a11167eec1edb5f85ed8e475648f36c834ed5db4ffba24ac8"}, - {file = "grpcio-1.59.3-cp310-cp310-win32.whl", hash = "sha256:c4b0076f0bf29ee62335b055a9599f52000b7941f577daa001c7ef961a1fbeab"}, - {file = "grpcio-1.59.3-cp310-cp310-win_amd64.whl", hash = "sha256:b1f00a3e6e0c3dccccffb5579fc76ebfe4eb40405ba308505b41ef92f747746a"}, - {file = "grpcio-1.59.3-cp311-cp311-linux_armv7l.whl", hash = "sha256:3996aaa21231451161dc29df6a43fcaa8b332042b6150482c119a678d007dd86"}, - {file = "grpcio-1.59.3-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:cb4e9cbd9b7388fcb06412da9f188c7803742d06d6f626304eb838d1707ec7e3"}, - {file = "grpcio-1.59.3-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:8022ca303d6c694a0d7acfb2b472add920217618d3a99eb4b14edc7c6a7e8fcf"}, - {file = "grpcio-1.59.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b36683fad5664283755a7f4e2e804e243633634e93cd798a46247b8e54e3cb0d"}, - {file = "grpcio-1.59.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8239b853226e4824e769517e1b5232e7c4dda3815b200534500338960fcc6118"}, - {file = "grpcio-1.59.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0511af8653fbda489ff11d542a08505d56023e63cafbda60e6e00d4e0bae86ea"}, - {file = "grpcio-1.59.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e78dc982bda74cef2ddfce1c91d29b96864c4c680c634e279ed204d51e227473"}, - {file = "grpcio-1.59.3-cp311-cp311-win32.whl", hash = "sha256:6a5c3a96405966c023e139c3bcccb2c7c776a6f256ac6d70f8558c9041bdccc3"}, - {file = "grpcio-1.59.3-cp311-cp311-win_amd64.whl", hash = "sha256:ed26826ee423b11477297b187371cdf4fa1eca874eb1156422ef3c9a60590dd9"}, - {file = "grpcio-1.59.3-cp312-cp312-linux_armv7l.whl", hash = "sha256:45dddc5cb5227d30fa43652d8872dc87f086d81ab4b500be99413bad0ae198d7"}, - {file = "grpcio-1.59.3-cp312-cp312-macosx_10_10_universal2.whl", hash = "sha256:1736496d74682e53dd0907fd515f2694d8e6a96c9a359b4080b2504bf2b2d91b"}, - {file = "grpcio-1.59.3-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:ddbd1a16138e52e66229047624de364f88a948a4d92ba20e4e25ad7d22eef025"}, - {file = "grpcio-1.59.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcfa56f8d031ffda902c258c84c4b88707f3a4be4827b4e3ab8ec7c24676320d"}, - {file = "grpcio-1.59.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2eb8f0c7c0c62f7a547ad7a91ba627a5aa32a5ae8d930783f7ee61680d7eb8d"}, - {file = "grpcio-1.59.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8d993399cc65e3a34f8fd48dd9ad7a376734564b822e0160dd18b3d00c1a33f9"}, - {file = "grpcio-1.59.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c0bd141f4f41907eb90bda74d969c3cb21c1c62779419782a5b3f5e4b5835718"}, - {file = "grpcio-1.59.3-cp312-cp312-win32.whl", hash = "sha256:33b8fd65d4e97efa62baec6171ce51f9cf68f3a8ba9f866f4abc9d62b5c97b79"}, - {file = "grpcio-1.59.3-cp312-cp312-win_amd64.whl", hash = "sha256:0e735ed002f50d4f3cb9ecfe8ac82403f5d842d274c92d99db64cfc998515e07"}, - {file = "grpcio-1.59.3-cp37-cp37m-linux_armv7l.whl", hash = "sha256:ea40ce4404e7cca0724c91a7404da410f0144148fdd58402a5942971e3469b94"}, - {file = "grpcio-1.59.3-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:83113bcc393477b6f7342b9f48e8a054330c895205517edc66789ceea0796b53"}, - {file = "grpcio-1.59.3-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:73afbac602b8f1212a50088193601f869b5073efa9855b3e51aaaec97848fc8a"}, - {file = "grpcio-1.59.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:575d61de1950b0b0699917b686b1ca108690702fcc2df127b8c9c9320f93e069"}, - {file = "grpcio-1.59.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cd76057b5c9a4d68814610ef9226925f94c1231bbe533fdf96f6181f7d2ff9e"}, - {file = "grpcio-1.59.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:95d6fd804c81efe4879e38bfd84d2b26e339a0a9b797e7615e884ef4686eb47b"}, - {file = "grpcio-1.59.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0d42048b8a3286ea4134faddf1f9a59cf98192b94aaa10d910a25613c5eb5bfb"}, - {file = "grpcio-1.59.3-cp37-cp37m-win_amd64.whl", hash = "sha256:4619fea15c64bcdd9d447cdbdde40e3d5f1da3a2e8ae84103d94a9c1df210d7e"}, - {file = "grpcio-1.59.3-cp38-cp38-linux_armv7l.whl", hash = "sha256:95b5506e70284ac03b2005dd9ffcb6708c9ae660669376f0192a710687a22556"}, - {file = "grpcio-1.59.3-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:9e17660947660ccfce56c7869032910c179a5328a77b73b37305cd1ee9301c2e"}, - {file = "grpcio-1.59.3-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:00912ce19914d038851be5cd380d94a03f9d195643c28e3ad03d355cc02ce7e8"}, - {file = "grpcio-1.59.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e58b3cadaa3c90f1efca26ba33e0d408b35b497307027d3d707e4bcd8de862a6"}, - {file = "grpcio-1.59.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d787ecadea865bdf78f6679f6f5bf4b984f18f659257ba612979df97a298b3c3"}, - {file = "grpcio-1.59.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0814942ba1bba269db4e760a34388640c601dece525c6a01f3b4ff030cc0db69"}, - {file = "grpcio-1.59.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fb111aa99d3180c361a35b5ae1e2c63750220c584a1344229abc139d5c891881"}, - {file = "grpcio-1.59.3-cp38-cp38-win32.whl", hash = "sha256:eb8ba504c726befe40a356ecbe63c6c3c64c9a439b3164f5a718ec53c9874da0"}, - {file = "grpcio-1.59.3-cp38-cp38-win_amd64.whl", hash = "sha256:cdbc6b32fadab9bebc6f49d3e7ec4c70983c71e965497adab7f87de218e84391"}, - {file = "grpcio-1.59.3-cp39-cp39-linux_armv7l.whl", hash = "sha256:c82ca1e4be24a98a253d6dbaa216542e4163f33f38163fc77964b0f0d255b552"}, - {file = "grpcio-1.59.3-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:36636babfda14f9e9687f28d5b66d349cf88c1301154dc71c6513de2b6c88c59"}, - {file = "grpcio-1.59.3-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:5f9b2e591da751ac7fdd316cc25afafb7a626dededa9b414f90faad7f3ccebdb"}, - {file = "grpcio-1.59.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a93a82876a4926bf451db82ceb725bd87f42292bacc94586045261f501a86994"}, - {file = "grpcio-1.59.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce31fa0bfdd1f2bb15b657c16105c8652186eab304eb512e6ae3b99b2fdd7d13"}, - {file = "grpcio-1.59.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:16da0e40573962dab6cba16bec31f25a4f468e6d05b658e589090fe103b03e3d"}, - {file = "grpcio-1.59.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d1d1a17372fd425addd5812049fa7374008ffe689585f27f802d0935522cf4b7"}, - {file = "grpcio-1.59.3-cp39-cp39-win32.whl", hash = "sha256:52cc38a7241b5f7b4a91aaf9000fdd38e26bb00d5e8a71665ce40cfcee716281"}, - {file = "grpcio-1.59.3-cp39-cp39-win_amd64.whl", hash = "sha256:b491e5bbcad3020a96842040421e508780cade35baba30f402df9d321d1c423e"}, - {file = "grpcio-1.59.3.tar.gz", hash = "sha256:7800f99568a74a06ebdccd419dd1b6e639b477dcaf6da77ea702f8fb14ce5f80"}, + {file = "grpcio-1.59.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:d2fa68a96a30dd240be80bbad838a0ac81a61770611ff7952b889485970c4c71"}, + {file = "grpcio-1.59.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:cf0dead5a2c5a3347af2cfec7131d4f2a2e03c934af28989c9078f8241a491fa"}, + {file = "grpcio-1.59.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:e420ced29b5904cdf9ee5545e23f9406189d8acb6750916c2db4793dada065c6"}, + {file = "grpcio-1.59.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b230028a008ae1d0f430acb227d323ff8a619017415cf334c38b457f814119f"}, + {file = "grpcio-1.59.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a4a3833c0e067f3558538727235cd8a49709bff1003200bbdefa2f09334e4b1"}, + {file = "grpcio-1.59.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6b25ed37c27e652db01be341af93fbcea03d296c024d8a0e680017a268eb85dd"}, + {file = "grpcio-1.59.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:73abb8584b0cf74d37f5ef61c10722adc7275502ab71789a8fe3cb7ef04cf6e2"}, + {file = "grpcio-1.59.2-cp310-cp310-win32.whl", hash = "sha256:d6f70406695e3220f09cd7a2f879333279d91aa4a8a1d34303b56d61a8180137"}, + {file = "grpcio-1.59.2-cp310-cp310-win_amd64.whl", hash = "sha256:3c61d641d4f409c5ae46bfdd89ea42ce5ea233dcf69e74ce9ba32b503c727e29"}, + {file = "grpcio-1.59.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:3059668df17627f0e0fa680e9ef8c995c946c792612e9518f5cc1503be14e90b"}, + {file = "grpcio-1.59.2-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:72ca2399097c0b758198f2ff30f7178d680de8a5cfcf3d9b73a63cf87455532e"}, + {file = "grpcio-1.59.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c978f864b35f2261e0819f5cd88b9830b04dc51bcf055aac3c601e525a10d2ba"}, + {file = "grpcio-1.59.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9411e24328a2302e279e70cae6e479f1fddde79629fcb14e03e6d94b3956eabf"}, + {file = "grpcio-1.59.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb7e0fe6ad73b7f06d7e2b689c19a71cf5cc48f0c2bf8608469e51ffe0bd2867"}, + {file = "grpcio-1.59.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c2504eed520958a5b77cc99458297cb7906308cb92327f35fb7fbbad4e9b2188"}, + {file = "grpcio-1.59.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2171c39f355ba5b551c5d5928d65aa6c69807fae195b86ef4a7d125bcdb860a9"}, + {file = "grpcio-1.59.2-cp311-cp311-win32.whl", hash = "sha256:d2794f0e68b3085d99b4f6ff9c089f6fdd02b32b9d3efdfbb55beac1bf22d516"}, + {file = "grpcio-1.59.2-cp311-cp311-win_amd64.whl", hash = "sha256:2067274c88bc6de89c278a672a652b4247d088811ece781a4858b09bdf8448e3"}, + {file = "grpcio-1.59.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:535561990e075fa6bd4b16c4c3c1096b9581b7bb35d96fac4650f1181e428268"}, + {file = "grpcio-1.59.2-cp312-cp312-macosx_10_10_universal2.whl", hash = "sha256:a213acfbf186b9f35803b52e4ca9addb153fc0b67f82a48f961be7000ecf6721"}, + {file = "grpcio-1.59.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:6959fb07e8351e20501ffb8cc4074c39a0b7ef123e1c850a7f8f3afdc3a3da01"}, + {file = "grpcio-1.59.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e82c5cf1495244adf5252f925ac5932e5fd288b3e5ab6b70bec5593074b7236c"}, + {file = "grpcio-1.59.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023088764012411affe7db183d1ada3ad9daf2e23ddc719ff46d7061de661340"}, + {file = "grpcio-1.59.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:da2d94c15f88cd40d7e67f7919d4f60110d2b9d5b1e08cf354c2be773ab13479"}, + {file = "grpcio-1.59.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6009386a2df66159f64ac9f20425ae25229b29b9dd0e1d3dd60043f037e2ad7e"}, + {file = "grpcio-1.59.2-cp312-cp312-win32.whl", hash = "sha256:75c6ecb70e809cf1504465174343113f51f24bc61e22a80ae1c859f3f7034c6d"}, + {file = "grpcio-1.59.2-cp312-cp312-win_amd64.whl", hash = "sha256:cbe946b3e6e60a7b4618f091e62a029cb082b109a9d6b53962dd305087c6e4fd"}, + {file = "grpcio-1.59.2-cp37-cp37m-linux_armv7l.whl", hash = "sha256:f8753a6c88d1d0ba64302309eecf20f70d2770f65ca02d83c2452279085bfcd3"}, + {file = "grpcio-1.59.2-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:f1ef0d39bc1feb420caf549b3c657c871cad4ebbcf0580c4d03816b0590de0cf"}, + {file = "grpcio-1.59.2-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:4c93f4abbb54321ee6471e04a00139c80c754eda51064187963ddf98f5cf36a4"}, + {file = "grpcio-1.59.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:08d77e682f2bf730a4961eea330e56d2f423c6a9b91ca222e5b1eb24a357b19f"}, + {file = "grpcio-1.59.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ff16d68bf453275466a9a46739061a63584d92f18a0f5b33d19fc97eb69867c"}, + {file = "grpcio-1.59.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4abb717e320e74959517dc8e84a9f48fbe90e9abe19c248541e9418b1ce60acd"}, + {file = "grpcio-1.59.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:36f53c2b3449c015880e7d55a89c992c357f176327b0d2873cdaaf9628a37c69"}, + {file = "grpcio-1.59.2-cp37-cp37m-win_amd64.whl", hash = "sha256:cc3e4cd087f07758b16bef8f31d88dbb1b5da5671d2f03685ab52dece3d7a16e"}, + {file = "grpcio-1.59.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:27f879ae604a7fcf371e59fba6f3ff4635a4c2a64768bd83ff0cac503142fef4"}, + {file = "grpcio-1.59.2-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:7cf05053242f61ba94014dd3a986e11a083400a32664058f80bf4cf817c0b3a1"}, + {file = "grpcio-1.59.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:e1727c1c0e394096bb9af185c6923e8ea55a5095b8af44f06903bcc0e06800a2"}, + {file = "grpcio-1.59.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5d573e70a6fe77555fb6143c12d3a7d3fa306632a3034b4e7c59ca09721546f8"}, + {file = "grpcio-1.59.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31176aa88f36020055ace9adff2405a33c8bdbfa72a9c4980e25d91b2f196873"}, + {file = "grpcio-1.59.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:11168ef43e4a43ff1b1a65859f3e0ef1a173e277349e7fb16923ff108160a8cd"}, + {file = "grpcio-1.59.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:53c9aa5ddd6857c0a1cd0287225a2a25873a8e09727c2e95c4aebb1be83a766a"}, + {file = "grpcio-1.59.2-cp38-cp38-win32.whl", hash = "sha256:3b4368b33908f683a363f376dfb747d40af3463a6e5044afee07cf9436addf96"}, + {file = "grpcio-1.59.2-cp38-cp38-win_amd64.whl", hash = "sha256:0a754aff9e3af63bdc4c75c234b86b9d14e14a28a30c4e324aed1a9b873d755f"}, + {file = "grpcio-1.59.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:1f9524d1d701e399462d2c90ba7c193e49d1711cf429c0d3d97c966856e03d00"}, + {file = "grpcio-1.59.2-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:f93dbf58f03146164048be5426ffde298b237a5e059144847e4940f5b80172c3"}, + {file = "grpcio-1.59.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:6da6dea3a1bacf99b3c2187e296db9a83029ed9c38fd4c52b7c9b7326d13c828"}, + {file = "grpcio-1.59.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5f09cffa619adfb44799fa4a81c2a1ad77c887187613fb0a8f201ab38d89ba1"}, + {file = "grpcio-1.59.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c35aa9657f5d5116d23b934568e0956bd50c615127810fffe3ac356a914c176a"}, + {file = "grpcio-1.59.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:74100fecaec8a535e380cf5f2fb556ff84957d481c13e54051c52e5baac70541"}, + {file = "grpcio-1.59.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:128e20f57c5f27cb0157e73756d1586b83c1b513ebecc83ea0ac37e4b0e4e758"}, + {file = "grpcio-1.59.2-cp39-cp39-win32.whl", hash = "sha256:686e975a5d16602dc0982c7c703948d17184bd1397e16c8ee03511ecb8c4cdda"}, + {file = "grpcio-1.59.2-cp39-cp39-win_amd64.whl", hash = "sha256:242adc47725b9a499ee77c6a2e36688fa6c96484611f33b1be4c57ab075a92dd"}, + {file = "grpcio-1.59.2.tar.gz", hash = "sha256:d8f9cd4ad1be90b0cf350a2f04a38a36e44a026cac1e036ac593dc48efe91d52"}, ] [package.extras] -protobuf = ["grpcio-tools (>=1.59.3)"] +protobuf = ["grpcio-tools (>=1.59.2)"] [[package]] name = "grpcio-status" version = "1.48.2" description = "Status proto mapping for gRPC" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1767,7 +1717,6 @@ protobuf = ">=3.12.0" name = "gsutil" version = "5.17" description = "A command line tool for interacting with cloud storage services." -category = "main" optional = true python-versions = "!=2.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" files = [ @@ -1792,7 +1741,6 @@ six = ">=1.12.0" name = "h11" version = "0.13.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1804,7 +1752,6 @@ files = [ name = "h2" version = "4.1.0" description = "HTTP/2 State-Machine based protocol implementation" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1820,7 +1767,6 @@ hyperframe = ">=6.0,<7" name = "hpack" version = "4.0.0" description = "Pure-Python HPACK header compression" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1832,7 +1778,6 @@ files = [ name = "httplib2" version = "0.20.4" description = "A comprehensive HTTP client library." -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1847,7 +1792,6 @@ pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0 name = "humanfriendly" version = "10.0" description = "Human friendly output for text interfaces using Python" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1862,7 +1806,6 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve name = "hyperframe" version = "6.0.1" description = "HTTP/2 framing layer for Python" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1872,14 +1815,13 @@ files = [ [[package]] name = "identify" -version = "2.5.32" +version = "2.5.24" description = "File identification library for Python" -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "identify-2.5.32-py2.py3-none-any.whl", hash = "sha256:0b7656ef6cba81664b783352c73f8c24b39cf82f926f78f4550eda928e5e0545"}, - {file = "identify-2.5.32.tar.gz", hash = "sha256:5d9979348ec1a21c768ae07e0a652924538e8bce67313a73cb0f681cf08ba407"}, + {file = "identify-2.5.24-py2.py3-none-any.whl", hash = "sha256:986dbfb38b1140e763e413e6feb44cd731faf72d1909543178aa79b0e258265d"}, + {file = "identify-2.5.24.tar.gz", hash = "sha256:0aac67d5b4812498056d28a9a512a483f5085cc28640b02b258a59dac34301d4"}, ] [package.extras] @@ -1889,7 +1831,6 @@ license = ["ukkonen"] name = "idna" version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1901,7 +1842,6 @@ files = [ name = "imagesize" version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1911,14 +1851,13 @@ files = [ [[package]] name = "importlib-metadata" -version = "6.8.0" +version = "6.6.0" description = "Read metadata from Python packages" -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, - {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, + {file = "importlib_metadata-6.6.0-py3-none-any.whl", hash = "sha256:43dd286a2cd8995d5eaef7fee2066340423b818ed3fd70adf0bad5f1fac53fed"}, + {file = "importlib_metadata-6.6.0.tar.gz", hash = "sha256:92501cdf9cc66ebd3e612f1b4f0c0765dfa42f0fa38ffb319b6bd84dd675d705"}, ] [package.dependencies] @@ -1927,32 +1866,30 @@ zipp = ">=0.5" [package.extras] docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] perf = ["ipython"] -testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] +testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] [[package]] name = "importlib-resources" -version = "5.13.0" +version = "5.12.0" description = "Read resources from Python packages" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "importlib_resources-5.13.0-py3-none-any.whl", hash = "sha256:9f7bd0c97b79972a6cce36a366356d16d5e13b09679c11a58f1014bfdf8e64b2"}, - {file = "importlib_resources-5.13.0.tar.gz", hash = "sha256:82d5c6cca930697dbbd86c93333bb2c2e72861d4789a11c2662b933e5ad2b528"}, + {file = "importlib_resources-5.12.0-py3-none-any.whl", hash = "sha256:7b1deeebbf351c7578e09bf2f63fa2ce8b5ffec296e0d349139d43cca061a81a"}, + {file = "importlib_resources-5.12.0.tar.gz", hash = "sha256:4be82589bf5c1d7999aedf2a45159d10cb3ca4f19b2271f8792bc8e6da7b22f6"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-ruff"] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [[package]] name = "inflection" version = "0.5.1" description = "A port of Ruby on Rails inflector to Python" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1964,7 +1901,6 @@ files = [ name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1974,14 +1910,13 @@ files = [ [[package]] name = "ipykernel" -version = "6.26.0" +version = "6.22.0" description = "IPython Kernel for Jupyter" -category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "ipykernel-6.26.0-py3-none-any.whl", hash = "sha256:3ba3dc97424b87b31bb46586b5167b3161b32d7820b9201a9e698c71e271602c"}, - {file = "ipykernel-6.26.0.tar.gz", hash = "sha256:553856658eb8430bbe9653ea041a41bff63e9606fc4628873fc92a6cf3abd404"}, + {file = "ipykernel-6.22.0-py3-none-any.whl", hash = "sha256:1ae6047c1277508933078163721bbb479c3e7292778a04b4bacf0874550977d6"}, + {file = "ipykernel-6.22.0.tar.gz", hash = "sha256:302558b81f1bc22dc259fb2a0c5c7cf2f4c0bdb21b50484348f7bafe7fb71421"}, ] [package.dependencies] @@ -1990,7 +1925,7 @@ comm = ">=0.1.1" debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" @@ -2008,14 +1943,13 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio" [[package]] name = "ipython" -version = "8.12.3" +version = "8.12.1" description = "IPython: Productive Interactive Computing" -category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "ipython-8.12.3-py3-none-any.whl", hash = "sha256:b0340d46a933d27c657b211a329d0be23793c36595acf9e6ef4164bc01a1804c"}, - {file = "ipython-8.12.3.tar.gz", hash = "sha256:3910c4b54543c2ad73d06579aa771041b7d5707b033bd488669b4cf544e3b363"}, + {file = "ipython-8.12.1-py3-none-any.whl", hash = "sha256:e3015a1a4aa09b3984fb81b9cef4f0772af5a549878b81efb094cda8bb121993"}, + {file = "ipython-8.12.1.tar.gz", hash = "sha256:2442915417763b62181009259782975fa50bb5eedb97ae97fb614204bf6ecc21"}, ] [package.dependencies] @@ -2050,7 +1984,6 @@ test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pa name = "isort" version = "5.12.0" description = "A Python utility / library to sort Python imports." -category = "main" optional = false python-versions = ">=3.8.0" files = [ @@ -2068,7 +2001,6 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "itsdangerous" version = "2.1.2" description = "Safely pass data to untrusted environments and back." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2078,29 +2010,27 @@ files = [ [[package]] name = "jedi" -version = "0.19.1" +version = "0.18.2" description = "An autocompletion tool for Python that can be used for text editors." -category = "dev" optional = false python-versions = ">=3.6" files = [ - {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"}, - {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"}, + {file = "jedi-0.18.2-py2.py3-none-any.whl", hash = "sha256:203c1fd9d969ab8f2119ec0a3342e0b49910045abe6af0a3ae83a5764d54639e"}, + {file = "jedi-0.18.2.tar.gz", hash = "sha256:bae794c30d07f6d910d32a7048af09b5a39ed740918da923c6b780790ebac612"}, ] [package.dependencies] -parso = ">=0.8.3,<0.9.0" +parso = ">=0.8.0,<0.9.0" [package.extras] docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] -qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] -testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2116,21 +2046,19 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "joblib" -version = "1.3.2" +version = "1.2.0" description = "Lightweight pipelining with Python functions" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, - {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, + {file = "joblib-1.2.0-py3-none-any.whl", hash = "sha256:091138ed78f800342968c523bdde947e7a305b8594b910a0fea2ab83c3c6d385"}, + {file = "joblib-1.2.0.tar.gz", hash = "sha256:e1cee4a79e4af22881164f218d4311f60074197fb707e082e803b61f6d137018"}, ] [[package]] name = "json5" version = "0.9.14" description = "A Python implementation of the JSON5 data format." -category = "main" optional = false python-versions = "*" files = [ @@ -2143,49 +2071,29 @@ dev = ["hypothesis"] [[package]] name = "jsonschema" -version = "4.20.0" +version = "4.17.3" description = "An implementation of JSON Schema validation for Python" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "jsonschema-4.20.0-py3-none-any.whl", hash = "sha256:ed6231f0429ecf966f5bc8dfef245998220549cbbcf140f913b7464c52c3b6b3"}, - {file = "jsonschema-4.20.0.tar.gz", hash = "sha256:4f614fd46d8d61258610998997743ec5492a648b33cf478c1ddc23ed4598a5fa"}, + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, ] [package.dependencies] -attrs = ">=22.2.0" +attrs = ">=17.4.0" importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} -jsonschema-specifications = ">=2023.03.6" pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} -referencing = ">=0.28.4" -rpds-py = ">=0.7.1" +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] -[[package]] -name = "jsonschema-specifications" -version = "2023.11.1" -description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" -category = "main" -optional = false -python-versions = ">=3.8" -files = [ - {file = "jsonschema_specifications-2023.11.1-py3-none-any.whl", hash = "sha256:f596778ab612b3fd29f72ea0d990393d0540a5aab18bf0407a46632eab540779"}, - {file = "jsonschema_specifications-2023.11.1.tar.gz", hash = "sha256:c9b234904ffe02f079bf91b14d79987faa685fd4b39c377a0996954c0090b9ca"}, -] - -[package.dependencies] -importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} -referencing = ">=0.31.0" - [[package]] name = "junitparser" version = "3.1.0" description = "Manipulates JUnit/xUnit Result XML files" -category = "main" optional = false python-versions = "*" files = [ @@ -2198,19 +2106,18 @@ future = "*" [[package]] name = "jupyter-client" -version = "8.6.0" +version = "8.2.0" description = "Jupyter protocol implementation and client libraries" -category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "jupyter_client-8.6.0-py3-none-any.whl", hash = "sha256:909c474dbe62582ae62b758bca86d6518c85234bdee2d908c778db6d72f39d99"}, - {file = "jupyter_client-8.6.0.tar.gz", hash = "sha256:0642244bb83b4764ae60d07e010e15f0e2d275ec4e918a8f7b80fbbef3ca60c7"}, + {file = "jupyter_client-8.2.0-py3-none-any.whl", hash = "sha256:b18219aa695d39e2ad570533e0d71fb7881d35a873051054a84ee2a17c4b7389"}, + {file = "jupyter_client-8.2.0.tar.gz", hash = "sha256:9fe233834edd0e6c0aa5f05ca2ab4bdea1842bfd2d8a932878212fc5301ddaf0"}, ] [package.dependencies] importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" tornado = ">=6.2" @@ -2224,7 +2131,6 @@ test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pyt name = "jupyter-core" version = "5.2.0" description = "Jupyter core package. A base package on which Jupyter projects rely." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2245,7 +2151,6 @@ test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] name = "kaitaistruct" version = "0.9" description = "Kaitai Struct declarative parser generator for binary data: runtime library for Python" -category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -2256,7 +2161,6 @@ files = [ name = "klara" version = "0.6.3" description = "Automatic test case generation and static analysis library" -category = "main" optional = false python-versions = ">=3.6.2,<4.0" files = [ @@ -2274,7 +2178,6 @@ z3-solver = ">=4.8.12,<5.0.0" name = "lazy-object-proxy" version = "1.9.0" description = "A fast and thorough lazy object proxy." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2320,7 +2223,6 @@ files = [ name = "ldap3" version = "2.9.1" description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library" -category = "dev" optional = false python-versions = "*" files = [ @@ -2333,69 +2235,67 @@ pyasn1 = ">=0.4.6" [[package]] name = "markupsafe" -version = "2.1.3" +version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." -category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, - {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:665a36ae6f8f20a4676b53224e33d456a6f5a72657d9c83c2aa00765072f31f7"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:340bea174e9761308703ae988e982005aedf427de816d1afe98147668cc03036"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22152d00bf4a9c7c83960521fc558f55a1adbc0631fbb00a9471e097b19d72e1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28057e985dace2f478e042eaa15606c7efccb700797660629da387eb289b9323"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca244fa73f50a800cf8c3ebf7fd93149ec37f5cb9596aa8873ae2c1d23498601"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9d971ec1e79906046aa3ca266de79eac42f1dbf3612a05dc9368125952bd1a1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7e007132af78ea9df29495dbf7b5824cb71648d7133cf7848a2a5dd00d36f9ff"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7313ce6a199651c4ed9d7e4cfb4aa56fe923b1adf9af3b420ee14e6d9a73df65"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win32.whl", hash = "sha256:c4a549890a45f57f1ebf99c067a4ad0cb423a05544accaf2b065246827ed9603"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:835fb5e38fd89328e9c81067fd642b3593c33e1e17e2fdbf77f5676abb14a156"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2ec4f2d48ae59bbb9d1f9d7efb9236ab81429a764dedca114f5fdabbc3788013"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608e7073dfa9e38a85d38474c082d4281f4ce276ac0010224eaba11e929dd53a"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65608c35bfb8a76763f37036547f7adfd09270fbdbf96608be2bead319728fcd"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2bfb563d0211ce16b63c7cb9395d2c682a23187f54c3d79bfec33e6705473c6"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da25303d91526aac3672ee6d49a2f3db2d9502a4a60b55519feb1a4c7714e07d"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9cad97ab29dfc3f0249b483412c85c8ef4766d96cdf9dcf5a1e3caa3f3661cf1"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1bea30e9bf331f3fef67e0a3877b2288593c98a21ccb2cf29b74c581a4eb3af0"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win32.whl", hash = "sha256:7df70907e00c970c60b9ef2938d894a9381f38e6b9db73c5be35e59d92e06625"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:e55e40ff0cc8cc5c07996915ad367fa47da6b3fc091fdadca7f5403239c5fec3"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a6e40afa7f45939ca356f348c8e23048e02cb109ced1eb8420961b2f40fb373a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf877ab4ed6e302ec1d04952ca358b381a882fbd9d1b07cccbfd61783561f98a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63ba06c9941e46fa389d389644e2d8225e0e3e5ebcc4ff1ea8506dce646f8c8a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1cd098434e83e656abf198f103a8207a8187c0fc110306691a2e94a78d0abb2"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:55f44b440d491028addb3b88f72207d71eeebfb7b5dbf0643f7c023ae1fba619"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a6f2fcca746e8d5910e18782f976489939d54a91f9411c32051b4aab2bd7c513"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b462104ba25f1ac006fdab8b6a01ebbfbce9ed37fd37fd4acd70c67c973e460"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win32.whl", hash = "sha256:7668b52e102d0ed87cb082380a7e2e1e78737ddecdde129acadb0eccc5423859"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6d6607f98fcf17e534162f0709aaad3ab7a96032723d8ac8750ffe17ae5a0666"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a806db027852538d2ad7555b203300173dd1b77ba116de92da9afbc3a3be3eed"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a4abaec6ca3ad8660690236d11bfe28dfd707778e2442b45addd2f086d6ef094"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f03a532d7dee1bed20bc4884194a16160a2de9ffc6354b3878ec9682bb623c54"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cf06cdc1dda95223e9d2d3c58d3b178aa5dacb35ee7e3bbac10e4e1faacb419"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22731d79ed2eb25059ae3df1dfc9cb1546691cc41f4e3130fe6bfbc3ecbbecfa"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f8ffb705ffcf5ddd0e80b65ddf7bed7ee4f5a441ea7d3419e861a12eaf41af58"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8db032bf0ce9022a8e41a22598eefc802314e81b879ae093f36ce9ddf39ab1ba"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2298c859cfc5463f1b64bd55cb3e602528db6fa0f3cfd568d3605c50678f8f03"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win32.whl", hash = "sha256:50c42830a633fa0cf9e7d27664637532791bfc31c731a87b202d2d8ac40c3ea2"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:bb06feb762bade6bf3c8b844462274db0c76acc95c52abe8dbed28ae3d44a147"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99625a92da8229df6d44335e6fcc558a5037dd0a760e11d84be2260e6f37002f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bca7e26c1dd751236cfb0c6c72d4ad61d986e9a41bbf76cb445f69488b2a2bd"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40627dcf047dadb22cd25ea7ecfe9cbf3bbbad0482ee5920b582f3809c97654f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40dfd3fefbef579ee058f139733ac336312663c6706d1163b82b3003fb1925c4"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:090376d812fb6ac5f171e5938e82e7f2d7adc2b629101cec0db8b267815c85e2"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2e7821bffe00aa6bd07a23913b7f4e01328c3d5cc0b40b36c0bd81d362faeb65"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c0a33bc9f02c2b17c3ea382f91b4db0e6cde90b63b296422a939886a7a80de1c"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8526c6d437855442cdd3d87eede9c425c4445ea011ca38d937db299382e6fa3"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win32.whl", hash = "sha256:137678c63c977754abe9086a3ec011e8fd985ab90631145dfb9294ad09c102a7"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed"}, + {file = "MarkupSafe-2.1.2.tar.gz", hash = "sha256:abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d"}, ] [[package]] name = "matplotlib-inline" version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2410,7 +2310,6 @@ traitlets = "*" name = "mccabe" version = "0.6.1" description = "McCabe checker, plugin for flake8" -category = "main" optional = false python-versions = "*" files = [ @@ -2422,7 +2321,6 @@ files = [ name = "mergedeep" version = "1.3.4" description = "A deep merge function for 🐍." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2434,7 +2332,6 @@ files = [ name = "mitmproxy" version = "8.0.0" description = "An interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2476,7 +2373,6 @@ dev = ["click (>=7.0,<8.1)", "hypothesis (>=5.8,<7)", "parver (>=0.1,<2.0)", "pd name = "mock" version = "4.0.3" description = "Rolling backport of unittest.mock for all Pythons" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2493,7 +2389,6 @@ test = ["pytest (<5.4)", "pytest-cov"] name = "monotonic" version = "1.6" description = "An implementation of time.monotonic() for Python 2 & < 3.3" -category = "main" optional = true python-versions = "*" files = [ @@ -2505,7 +2400,6 @@ files = [ name = "more-itertools" version = "9.1.0" description = "More routines for operating on iterables, beyond itertools" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2515,75 +2409,80 @@ files = [ [[package]] name = "msgpack" -version = "1.0.7" +version = "1.0.5" description = "MessagePack serializer" -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = "*" files = [ - {file = "msgpack-1.0.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:04ad6069c86e531682f9e1e71b71c1c3937d6014a7c3e9edd2aa81ad58842862"}, - {file = "msgpack-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cca1b62fe70d761a282496b96a5e51c44c213e410a964bdffe0928e611368329"}, - {file = "msgpack-1.0.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e50ebce52f41370707f1e21a59514e3375e3edd6e1832f5e5235237db933c98b"}, - {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a7b4f35de6a304b5533c238bee86b670b75b03d31b7797929caa7a624b5dda6"}, - {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28efb066cde83c479dfe5a48141a53bc7e5f13f785b92ddde336c716663039ee"}, - {file = "msgpack-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4cb14ce54d9b857be9591ac364cb08dc2d6a5c4318c1182cb1d02274029d590d"}, - {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b573a43ef7c368ba4ea06050a957c2a7550f729c31f11dd616d2ac4aba99888d"}, - {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ccf9a39706b604d884d2cb1e27fe973bc55f2890c52f38df742bc1d79ab9f5e1"}, - {file = "msgpack-1.0.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cb70766519500281815dfd7a87d3a178acf7ce95390544b8c90587d76b227681"}, - {file = "msgpack-1.0.7-cp310-cp310-win32.whl", hash = "sha256:b610ff0f24e9f11c9ae653c67ff8cc03c075131401b3e5ef4b82570d1728f8a9"}, - {file = "msgpack-1.0.7-cp310-cp310-win_amd64.whl", hash = "sha256:a40821a89dc373d6427e2b44b572efc36a2778d3f543299e2f24eb1a5de65415"}, - {file = "msgpack-1.0.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:576eb384292b139821c41995523654ad82d1916da6a60cff129c715a6223ea84"}, - {file = "msgpack-1.0.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:730076207cb816138cf1af7f7237b208340a2c5e749707457d70705715c93b93"}, - {file = "msgpack-1.0.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:85765fdf4b27eb5086f05ac0491090fc76f4f2b28e09d9350c31aac25a5aaff8"}, - {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3476fae43db72bd11f29a5147ae2f3cb22e2f1a91d575ef130d2bf49afd21c46"}, - {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d4c80667de2e36970ebf74f42d1088cc9ee7ef5f4e8c35eee1b40eafd33ca5b"}, - {file = "msgpack-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b0bf0effb196ed76b7ad883848143427a73c355ae8e569fa538365064188b8e"}, - {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f9a7c509542db4eceed3dcf21ee5267ab565a83555c9b88a8109dcecc4709002"}, - {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:84b0daf226913133f899ea9b30618722d45feffa67e4fe867b0b5ae83a34060c"}, - {file = "msgpack-1.0.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ec79ff6159dffcc30853b2ad612ed572af86c92b5168aa3fc01a67b0fa40665e"}, - {file = "msgpack-1.0.7-cp311-cp311-win32.whl", hash = "sha256:3e7bf4442b310ff154b7bb9d81eb2c016b7d597e364f97d72b1acc3817a0fdc1"}, - {file = "msgpack-1.0.7-cp311-cp311-win_amd64.whl", hash = "sha256:3f0c8c6dfa6605ab8ff0611995ee30d4f9fcff89966cf562733b4008a3d60d82"}, - {file = "msgpack-1.0.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f0936e08e0003f66bfd97e74ee530427707297b0d0361247e9b4f59ab78ddc8b"}, - {file = "msgpack-1.0.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:98bbd754a422a0b123c66a4c341de0474cad4a5c10c164ceed6ea090f3563db4"}, - {file = "msgpack-1.0.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b291f0ee7961a597cbbcc77709374087fa2a9afe7bdb6a40dbbd9b127e79afee"}, - {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebbbba226f0a108a7366bf4b59bf0f30a12fd5e75100c630267d94d7f0ad20e5"}, - {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e2d69948e4132813b8d1131f29f9101bc2c915f26089a6d632001a5c1349672"}, - {file = "msgpack-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bdf38ba2d393c7911ae989c3bbba510ebbcdf4ecbdbfec36272abe350c454075"}, - {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:993584fc821c58d5993521bfdcd31a4adf025c7d745bbd4d12ccfecf695af5ba"}, - {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:52700dc63a4676669b341ba33520f4d6e43d3ca58d422e22ba66d1736b0a6e4c"}, - {file = "msgpack-1.0.7-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e45ae4927759289c30ccba8d9fdce62bb414977ba158286b5ddaf8df2cddb5c5"}, - {file = "msgpack-1.0.7-cp312-cp312-win32.whl", hash = "sha256:27dcd6f46a21c18fa5e5deed92a43d4554e3df8d8ca5a47bf0615d6a5f39dbc9"}, - {file = "msgpack-1.0.7-cp312-cp312-win_amd64.whl", hash = "sha256:7687e22a31e976a0e7fc99c2f4d11ca45eff652a81eb8c8085e9609298916dcf"}, - {file = "msgpack-1.0.7-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5b6ccc0c85916998d788b295765ea0e9cb9aac7e4a8ed71d12e7d8ac31c23c95"}, - {file = "msgpack-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:235a31ec7db685f5c82233bddf9858748b89b8119bf4538d514536c485c15fe0"}, - {file = "msgpack-1.0.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cab3db8bab4b7e635c1c97270d7a4b2a90c070b33cbc00c99ef3f9be03d3e1f7"}, - {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bfdd914e55e0d2c9e1526de210f6fe8ffe9705f2b1dfcc4aecc92a4cb4b533d"}, - {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36e17c4592231a7dbd2ed09027823ab295d2791b3b1efb2aee874b10548b7524"}, - {file = "msgpack-1.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38949d30b11ae5f95c3c91917ee7a6b239f5ec276f271f28638dec9156f82cfc"}, - {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ff1d0899f104f3921d94579a5638847f783c9b04f2d5f229392ca77fba5b82fc"}, - {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dc43f1ec66eb8440567186ae2f8c447d91e0372d793dfe8c222aec857b81a8cf"}, - {file = "msgpack-1.0.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dd632777ff3beaaf629f1ab4396caf7ba0bdd075d948a69460d13d44357aca4c"}, - {file = "msgpack-1.0.7-cp38-cp38-win32.whl", hash = "sha256:4e71bc4416de195d6e9b4ee93ad3f2f6b2ce11d042b4d7a7ee00bbe0358bd0c2"}, - {file = "msgpack-1.0.7-cp38-cp38-win_amd64.whl", hash = "sha256:8f5b234f567cf76ee489502ceb7165c2a5cecec081db2b37e35332b537f8157c"}, - {file = "msgpack-1.0.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfef2bb6ef068827bbd021017a107194956918ab43ce4d6dc945ffa13efbc25f"}, - {file = "msgpack-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:484ae3240666ad34cfa31eea7b8c6cd2f1fdaae21d73ce2974211df099a95d81"}, - {file = "msgpack-1.0.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3967e4ad1aa9da62fd53e346ed17d7b2e922cba5ab93bdd46febcac39be636fc"}, - {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dd178c4c80706546702c59529ffc005681bd6dc2ea234c450661b205445a34d"}, - {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6ffbc252eb0d229aeb2f9ad051200668fc3a9aaa8994e49f0cb2ffe2b7867e7"}, - {file = "msgpack-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:822ea70dc4018c7e6223f13affd1c5c30c0f5c12ac1f96cd8e9949acddb48a61"}, - {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:384d779f0d6f1b110eae74cb0659d9aa6ff35aaf547b3955abf2ab4c901c4819"}, - {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f64e376cd20d3f030190e8c32e1c64582eba56ac6dc7d5b0b49a9d44021b52fd"}, - {file = "msgpack-1.0.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5ed82f5a7af3697b1c4786053736f24a0efd0a1b8a130d4c7bfee4b9ded0f08f"}, - {file = "msgpack-1.0.7-cp39-cp39-win32.whl", hash = "sha256:f26a07a6e877c76a88e3cecac8531908d980d3d5067ff69213653649ec0f60ad"}, - {file = "msgpack-1.0.7-cp39-cp39-win_amd64.whl", hash = "sha256:1dc93e8e4653bdb5910aed79f11e165c85732067614f180f70534f056da97db3"}, - {file = "msgpack-1.0.7.tar.gz", hash = "sha256:572efc93db7a4d27e404501975ca6d2d9775705c2d922390d878fcf768d92c87"}, + {file = "msgpack-1.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:525228efd79bb831cf6830a732e2e80bc1b05436b086d4264814b4b2955b2fa9"}, + {file = "msgpack-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4f8d8b3bf1ff2672567d6b5c725a1b347fe838b912772aa8ae2bf70338d5a198"}, + {file = "msgpack-1.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdc793c50be3f01106245a61b739328f7dccc2c648b501e237f0699fe1395b81"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cb47c21a8a65b165ce29f2bec852790cbc04936f502966768e4aae9fa763cb7"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e42b9594cc3bf4d838d67d6ed62b9e59e201862a25e9a157019e171fbe672dd3"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:55b56a24893105dc52c1253649b60f475f36b3aa0fc66115bffafb624d7cb30b"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:1967f6129fc50a43bfe0951c35acbb729be89a55d849fab7686004da85103f1c"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20a97bf595a232c3ee6d57ddaadd5453d174a52594bf9c21d10407e2a2d9b3bd"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d25dd59bbbbb996eacf7be6b4ad082ed7eacc4e8f3d2df1ba43822da9bfa122a"}, + {file = "msgpack-1.0.5-cp310-cp310-win32.whl", hash = "sha256:382b2c77589331f2cb80b67cc058c00f225e19827dbc818d700f61513ab47bea"}, + {file = "msgpack-1.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:4867aa2df9e2a5fa5f76d7d5565d25ec76e84c106b55509e78c1ede0f152659a"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9f5ae84c5c8a857ec44dc180a8b0cc08238e021f57abdf51a8182e915e6299f0"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9e6ca5d5699bcd89ae605c150aee83b5321f2115695e741b99618f4856c50898"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5494ea30d517a3576749cad32fa27f7585c65f5f38309c88c6d137877fa28a5a"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ab2f3331cb1b54165976a9d976cb251a83183631c88076613c6c780f0d6e45a"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28592e20bbb1620848256ebc105fc420436af59515793ed27d5c77a217477705"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe5c63197c55bce6385d9aee16c4d0641684628f63ace85f73571e65ad1c1e8d"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ed40e926fa2f297e8a653c954b732f125ef97bdd4c889f243182299de27e2aa9"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b2de4c1c0538dcb7010902a2b97f4e00fc4ddf2c8cda9749af0e594d3b7fa3d7"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bf22a83f973b50f9d38e55c6aade04c41ddda19b00c4ebc558930d78eecc64ed"}, + {file = "msgpack-1.0.5-cp311-cp311-win32.whl", hash = "sha256:c396e2cc213d12ce017b686e0f53497f94f8ba2b24799c25d913d46c08ec422c"}, + {file = "msgpack-1.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c4c68d87497f66f96d50142a2b73b97972130d93677ce930718f68828b382e2"}, + {file = "msgpack-1.0.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:a2b031c2e9b9af485d5e3c4520f4220d74f4d222a5b8dc8c1a3ab9448ca79c57"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f837b93669ce4336e24d08286c38761132bc7ab29782727f8557e1eb21b2080"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1d46dfe3832660f53b13b925d4e0fa1432b00f5f7210eb3ad3bb9a13c6204a6"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:366c9a7b9057e1547f4ad51d8facad8b406bab69c7d72c0eb6f529cf76d4b85f"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:4c075728a1095efd0634a7dccb06204919a2f67d1893b6aa8e00497258bf926c"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:f933bbda5a3ee63b8834179096923b094b76f0c7a73c1cfe8f07ad608c58844b"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:36961b0568c36027c76e2ae3ca1132e35123dcec0706c4b7992683cc26c1320c"}, + {file = "msgpack-1.0.5-cp36-cp36m-win32.whl", hash = "sha256:b5ef2f015b95f912c2fcab19c36814963b5463f1fb9049846994b007962743e9"}, + {file = "msgpack-1.0.5-cp36-cp36m-win_amd64.whl", hash = "sha256:288e32b47e67f7b171f86b030e527e302c91bd3f40fd9033483f2cacc37f327a"}, + {file = "msgpack-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:137850656634abddfb88236008339fdaba3178f4751b28f270d2ebe77a563b6c"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c05a4a96585525916b109bb85f8cb6511db1c6f5b9d9cbcbc940dc6b4be944b"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56a62ec00b636583e5cb6ad313bbed36bb7ead5fa3a3e38938503142c72cba4f"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef8108f8dedf204bb7b42994abf93882da1159728a2d4c5e82012edd92c9da9f"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1835c84d65f46900920b3708f5ba829fb19b1096c1800ad60bae8418652a951d"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e57916ef1bd0fee4f21c4600e9d1da352d8816b52a599c46460e93a6e9f17086"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:17358523b85973e5f242ad74aa4712b7ee560715562554aa2134d96e7aa4cbbf"}, + {file = "msgpack-1.0.5-cp37-cp37m-win32.whl", hash = "sha256:cb5aaa8c17760909ec6cb15e744c3ebc2ca8918e727216e79607b7bbce9c8f77"}, + {file = "msgpack-1.0.5-cp37-cp37m-win_amd64.whl", hash = "sha256:ab31e908d8424d55601ad7075e471b7d0140d4d3dd3272daf39c5c19d936bd82"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b72d0698f86e8d9ddf9442bdedec15b71df3598199ba33322d9711a19f08145c"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:379026812e49258016dd84ad79ac8446922234d498058ae1d415f04b522d5b2d"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:332360ff25469c346a1c5e47cbe2a725517919892eda5cfaffe6046656f0b7bb"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:476a8fe8fae289fdf273d6d2a6cb6e35b5a58541693e8f9f019bfe990a51e4ba"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9985b214f33311df47e274eb788a5893a761d025e2b92c723ba4c63936b69b1"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48296af57cdb1d885843afd73c4656be5c76c0c6328db3440c9601a98f303d87"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:addab7e2e1fcc04bd08e4eb631c2a90960c340e40dfc4a5e24d2ff0d5a3b3edb"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:916723458c25dfb77ff07f4c66aed34e47503b2eb3188b3adbec8d8aa6e00f48"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:821c7e677cc6acf0fd3f7ac664c98803827ae6de594a9f99563e48c5a2f27eb0"}, + {file = "msgpack-1.0.5-cp38-cp38-win32.whl", hash = "sha256:1c0f7c47f0087ffda62961d425e4407961a7ffd2aa004c81b9c07d9269512f6e"}, + {file = "msgpack-1.0.5-cp38-cp38-win_amd64.whl", hash = "sha256:bae7de2026cbfe3782c8b78b0db9cbfc5455e079f1937cb0ab8d133496ac55e1"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:20c784e66b613c7f16f632e7b5e8a1651aa5702463d61394671ba07b2fc9e025"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:266fa4202c0eb94d26822d9bfd7af25d1e2c088927fe8de9033d929dd5ba24c5"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18334484eafc2b1aa47a6d42427da7fa8f2ab3d60b674120bce7a895a0a85bdd"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57e1f3528bd95cc44684beda696f74d3aaa8a5e58c816214b9046512240ef437"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:586d0d636f9a628ddc6a17bfd45aa5b5efaf1606d2b60fa5d87b8986326e933f"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a740fa0e4087a734455f0fc3abf5e746004c9da72fbd541e9b113013c8dc3282"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3055b0455e45810820db1f29d900bf39466df96ddca11dfa6d074fa47054376d"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a61215eac016f391129a013c9e46f3ab308db5f5ec9f25811e811f96962599a8"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:362d9655cd369b08fda06b6657a303eb7172d5279997abe094512e919cf74b11"}, + {file = "msgpack-1.0.5-cp39-cp39-win32.whl", hash = "sha256:ac9dd47af78cae935901a9a500104e2dea2e253207c924cc95de149606dc43cc"}, + {file = "msgpack-1.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:06f5174b5f8ed0ed919da0e62cbd4ffde676a374aba4020034da05fab67b9164"}, + {file = "msgpack-1.0.5.tar.gz", hash = "sha256:c075544284eadc5cddc70f4757331d99dcbc16b2bbd4849d15f8aae4cf36d31c"}, ] [[package]] name = "multidict" version = "6.0.4" description = "multidict implementation" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2667,7 +2566,6 @@ files = [ name = "mypy" version = "0.982" description = "Optional static typing for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2711,7 +2609,6 @@ reports = ["lxml"] name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -2723,7 +2620,6 @@ files = [ name = "neo4j" version = "5.14.1" description = "Neo4j Bolt driver for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2740,21 +2636,19 @@ pyarrow = ["pyarrow (>=1.0.0)"] [[package]] name = "nest-asyncio" -version = "1.5.8" +version = "1.5.6" description = "Patch asyncio to allow nested event loops" -category = "dev" optional = false python-versions = ">=3.5" files = [ - {file = "nest_asyncio-1.5.8-py3-none-any.whl", hash = "sha256:accda7a339a70599cb08f9dd09a67e0c2ef8d8d6f4c07f96ab203f2ae254e48d"}, - {file = "nest_asyncio-1.5.8.tar.gz", hash = "sha256:25aa2ca0d2a5b5531956b9e273b45cf664cae2b145101d73b86b199978d48fdb"}, + {file = "nest_asyncio-1.5.6-py3-none-any.whl", hash = "sha256:b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8"}, + {file = "nest_asyncio-1.5.6.tar.gz", hash = "sha256:d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290"}, ] [[package]] name = "networkx" version = "2.8.8" description = "Python package for creating and manipulating graphs and networks" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -2773,7 +2667,6 @@ test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] name = "nltk" version = "3.8.1" description = "Natural Language Toolkit" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2797,14 +2690,13 @@ twitter = ["twython"] [[package]] name = "nodeenv" -version = "1.8.0" +version = "1.7.0" description = "Node.js virtual environment builder" -category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ - {file = "nodeenv-1.8.0-py2.py3-none-any.whl", hash = "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec"}, - {file = "nodeenv-1.8.0.tar.gz", hash = "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2"}, + {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"}, + {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"}, ] [package.dependencies] @@ -2814,7 +2706,6 @@ setuptools = "*" name = "oauth2client" version = "4.1.3" description = "OAuth 2.0 client library" -category = "main" optional = true python-versions = "*" files = [ @@ -2833,7 +2724,6 @@ six = ">=1.6.1" name = "ordered-set" version = "4.1.0" description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2846,81 +2736,79 @@ dev = ["black", "mypy", "pytest"] [[package]] name = "orjson" -version = "3.9.10" +version = "3.8.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">= 3.7" files = [ - {file = "orjson-3.9.10-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c18a4da2f50050a03d1da5317388ef84a16013302a5281d6f64e4a3f406aabc4"}, - {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5148bab4d71f58948c7c39d12b14a9005b6ab35a0bdf317a8ade9a9e4d9d0bd5"}, - {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4cf7837c3b11a2dfb589f8530b3cff2bd0307ace4c301e8997e95c7468c1378e"}, - {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c62b6fa2961a1dcc51ebe88771be5319a93fd89bd247c9ddf732bc250507bc2b"}, - {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deeb3922a7a804755bbe6b5be9b312e746137a03600f488290318936c1a2d4dc"}, - {file = "orjson-3.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1234dc92d011d3554d929b6cf058ac4a24d188d97be5e04355f1b9223e98bbe9"}, - {file = "orjson-3.9.10-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:06ad5543217e0e46fd7ab7ea45d506c76f878b87b1b4e369006bdb01acc05a83"}, - {file = "orjson-3.9.10-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4fd72fab7bddce46c6826994ce1e7de145ae1e9e106ebb8eb9ce1393ca01444d"}, - {file = "orjson-3.9.10-cp310-none-win32.whl", hash = "sha256:b5b7d4a44cc0e6ff98da5d56cde794385bdd212a86563ac321ca64d7f80c80d1"}, - {file = "orjson-3.9.10-cp310-none-win_amd64.whl", hash = "sha256:61804231099214e2f84998316f3238c4c2c4aaec302df12b21a64d72e2a135c7"}, - {file = "orjson-3.9.10-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:cff7570d492bcf4b64cc862a6e2fb77edd5e5748ad715f487628f102815165e9"}, - {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed8bc367f725dfc5cabeed1ae079d00369900231fbb5a5280cf0736c30e2adf7"}, - {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c812312847867b6335cfb264772f2a7e85b3b502d3a6b0586aa35e1858528ab1"}, - {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9edd2856611e5050004f4722922b7b1cd6268da34102667bd49d2a2b18bafb81"}, - {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:674eb520f02422546c40401f4efaf8207b5e29e420c17051cddf6c02783ff5ca"}, - {file = "orjson-3.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d0dc4310da8b5f6415949bd5ef937e60aeb0eb6b16f95041b5e43e6200821fb"}, - {file = "orjson-3.9.10-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e99c625b8c95d7741fe057585176b1b8783d46ed4b8932cf98ee145c4facf499"}, - {file = "orjson-3.9.10-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ec6f18f96b47299c11203edfbdc34e1b69085070d9a3d1f302810cc23ad36bf3"}, - {file = "orjson-3.9.10-cp311-none-win32.whl", hash = "sha256:ce0a29c28dfb8eccd0f16219360530bc3cfdf6bf70ca384dacd36e6c650ef8e8"}, - {file = "orjson-3.9.10-cp311-none-win_amd64.whl", hash = "sha256:cf80b550092cc480a0cbd0750e8189247ff45457e5a023305f7ef1bcec811616"}, - {file = "orjson-3.9.10-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:602a8001bdf60e1a7d544be29c82560a7b49319a0b31d62586548835bbe2c862"}, - {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f295efcd47b6124b01255d1491f9e46f17ef40d3d7eabf7364099e463fb45f0f"}, - {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:92af0d00091e744587221e79f68d617b432425a7e59328ca4c496f774a356071"}, - {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5a02360e73e7208a872bf65a7554c9f15df5fe063dc047f79738998b0506a14"}, - {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:858379cbb08d84fe7583231077d9a36a1a20eb72f8c9076a45df8b083724ad1d"}, - {file = "orjson-3.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666c6fdcaac1f13eb982b649e1c311c08d7097cbda24f32612dae43648d8db8d"}, - {file = "orjson-3.9.10-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3fb205ab52a2e30354640780ce4587157a9563a68c9beaf52153e1cea9aa0921"}, - {file = "orjson-3.9.10-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7ec960b1b942ee3c69323b8721df2a3ce28ff40e7ca47873ae35bfafeb4555ca"}, - {file = "orjson-3.9.10-cp312-none-win_amd64.whl", hash = "sha256:3e892621434392199efb54e69edfff9f699f6cc36dd9553c5bf796058b14b20d"}, - {file = "orjson-3.9.10-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8b9ba0ccd5a7f4219e67fbbe25e6b4a46ceef783c42af7dbc1da548eb28b6531"}, - {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e2ecd1d349e62e3960695214f40939bbfdcaeaaa62ccc638f8e651cf0970e5f"}, - {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f433be3b3f4c66016d5a20e5b4444ef833a1f802ced13a2d852c637f69729c1"}, - {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4689270c35d4bb3102e103ac43c3f0b76b169760aff8bcf2d401a3e0e58cdb7f"}, - {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4bd176f528a8151a6efc5359b853ba3cc0e82d4cd1fab9c1300c5d957dc8f48c"}, - {file = "orjson-3.9.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a2ce5ea4f71681623f04e2b7dadede3c7435dfb5e5e2d1d0ec25b35530e277b"}, - {file = "orjson-3.9.10-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:49f8ad582da6e8d2cf663c4ba5bf9f83cc052570a3a767487fec6af839b0e777"}, - {file = "orjson-3.9.10-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2a11b4b1a8415f105d989876a19b173f6cdc89ca13855ccc67c18efbd7cbd1f8"}, - {file = "orjson-3.9.10-cp38-none-win32.whl", hash = "sha256:a353bf1f565ed27ba71a419b2cd3db9d6151da426b61b289b6ba1422a702e643"}, - {file = "orjson-3.9.10-cp38-none-win_amd64.whl", hash = "sha256:e28a50b5be854e18d54f75ef1bb13e1abf4bc650ab9d635e4258c58e71eb6ad5"}, - {file = "orjson-3.9.10-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ee5926746232f627a3be1cc175b2cfad24d0170d520361f4ce3fa2fd83f09e1d"}, - {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a73160e823151f33cdc05fe2cea557c5ef12fdf276ce29bb4f1c571c8368a60"}, - {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c338ed69ad0b8f8f8920c13f529889fe0771abbb46550013e3c3d01e5174deef"}, - {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5869e8e130e99687d9e4be835116c4ebd83ca92e52e55810962446d841aba8de"}, - {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d2c1e559d96a7f94a4f581e2a32d6d610df5840881a8cba8f25e446f4d792df3"}, - {file = "orjson-3.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81a3a3a72c9811b56adf8bcc829b010163bb2fc308877e50e9910c9357e78521"}, - {file = "orjson-3.9.10-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7f8fb7f5ecf4f6355683ac6881fd64b5bb2b8a60e3ccde6ff799e48791d8f864"}, - {file = "orjson-3.9.10-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c943b35ecdf7123b2d81d225397efddf0bce2e81db2f3ae633ead38e85cd5ade"}, - {file = "orjson-3.9.10-cp39-none-win32.whl", hash = "sha256:fb0b361d73f6b8eeceba47cd37070b5e6c9de5beaeaa63a1cb35c7e1a73ef088"}, - {file = "orjson-3.9.10-cp39-none-win_amd64.whl", hash = "sha256:b90f340cb6397ec7a854157fac03f0c82b744abdd1c0941a024c3c29d1340aff"}, - {file = "orjson-3.9.10.tar.gz", hash = "sha256:9ebbdbd6a046c304b1845e96fbcc5559cd296b4dfd3ad2509e33c4d9ce07d6a1"}, + {file = "orjson-3.8.11-cp310-cp310-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:9fa900bdd84b4576c8dd6f3e2a00b35797f29283af328c6e3d70addfa4c2d599"}, + {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1103e597c16f82c241e1b02beadc9c91cecd93e60433ca73cb6464dcc235f37c"}, + {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d70b6db9d4e1e6057829cd7fe119c217cebaf989f88d14b2445fa69fc568d03e"}, + {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3afccf7f8684dca7f017837a315de0a1ab5c095de22a4eed206d079f9325ed72"}, + {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1fedcc428416e23a6c9de62a000c22ae33bbe0108302ad5d5935e29ea739bf37"}, + {file = "orjson-3.8.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf48ed8d4b6ab9f23b7ee642462369d7133412d72824bad89f9bf4311c06c6a1"}, + {file = "orjson-3.8.11-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:3c55065bc2075a5ea6ffb30462d84fd3aa5bbb7ae600855c325ee5753feec715"}, + {file = "orjson-3.8.11-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:08729e339ff3146e6de56c1166f014c3d2ec3e79ffb76d6c55d52cc892e5e477"}, + {file = "orjson-3.8.11-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:358e515b8b19a275b259f5ee1e0efa2859b1d976b5ed5d016ac59f9e6c8788a3"}, + {file = "orjson-3.8.11-cp310-none-win_amd64.whl", hash = "sha256:62eb8bdcf6f4cdbe12743e88ad98696277a75f91a35e8fb93a7ea2b9f4a7000c"}, + {file = "orjson-3.8.11-cp311-cp311-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:982ab319b7a5ece4199caf2a2b3a28e62a8e289cb6418548ef98bced7e2a6cfe"}, + {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e14903bfeb591a9117b7d40d81e3ebca9700b4e77bd829d6f22ea57941bb0ebf"}, + {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:58c068f93d701f9466f667bf3b5cb4e4946aee940df2b07ca5101f1cf1b60ce4"}, + {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9486963d2e65482c565dacb366adb36d22aa22acf7274b61490244c3d87fa631"}, + {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c3b5405edc3a5f9e34516ee1a729f6c46aecf6de960ae07a7b3e95ebdd0e1d9"}, + {file = "orjson-3.8.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b65424ceee82b94e3613233b67ef110dc58f9d83b0076ec47a506289552a861"}, + {file = "orjson-3.8.11-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:173b8f8c750590f432757292cfb197582e5c14347b913b4017561d47af0e759b"}, + {file = "orjson-3.8.11-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:37f38c8194ce086e6a9816b4b8dde5e7f383feeed92feec0385d99baf64f9b6e"}, + {file = "orjson-3.8.11-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:553fdaf9f4b5060a0dcc517ae0c511c289c184a83d6719d03c5602ed0eef0390"}, + {file = "orjson-3.8.11-cp311-none-win_amd64.whl", hash = "sha256:12f647d4da0aab1997e25bed4fa2b76782b5b9d2d1bf3066b5f0a57d34d833c4"}, + {file = "orjson-3.8.11-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:71a656f1c62e84c69060093e20cedff6a92e472d53ff5b8b9026b1b298542a68"}, + {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:176d742f53434541e50a5e659694073aa51dcbd8f29a1708a4fa1a320193c615"}, + {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b369019e597b59c4b97e9f925a3b725321fa1481c129d76c74c6ea3823f5d1e8"}, + {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a53b3c02a38aadc5302661c2ca18645093971488992df77ce14fef16f598b2e"}, + {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6d7b050135669d2335e40120215ad4120e29958c139f8bab68ce06a1cb1a1b2c"}, + {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66f0c9e4e8f6641497a7dc50591af3704b11468e9fc90cfb5874f28b0a61edb5"}, + {file = "orjson-3.8.11-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:235926b38ed9b76ab2bca99ff26ece79c1c46bc10079b06e660b087aecffbe69"}, + {file = "orjson-3.8.11-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c2d3e6b65458ed71b6797f321d6e8bfeeadee9d3d31cac47806a608ea745edd7"}, + {file = "orjson-3.8.11-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4118dcd2b5a27a22af5ad92414073f25d93bca1868f1f580056003c84841062f"}, + {file = "orjson-3.8.11-cp37-none-win_amd64.whl", hash = "sha256:b68a07794834b7bd53ae2a8b4fe4bf010734cae3f0917d434c83b97acf8e5bce"}, + {file = "orjson-3.8.11-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:98befa717efaab7ddb847ebe47d473f6bd6f0cb53e98e6c3d487c7c58ba2e174"}, + {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f9415b86ef154bf247fa78a6918aac50089c296e26fb6cf15bc9d7e6402a1f8"}, + {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f7aeefac55848aeb29f20b91fa55f9e488f446201bb1bb31dc17480d113d8955"}, + {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d47f97b99beb9bcac6e288a76b559543a61e0187443d8089204b757726b1d000"}, + {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d7d5aecccfaf2052cd07ed5bec8efba9ddfea055682fcd346047b1a3e9da3034"}, + {file = "orjson-3.8.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04b60dfc1251742e79bb075d7a7c4e37078b932a02e6f005c45761bd90c69189"}, + {file = "orjson-3.8.11-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:ef52f1d5a2f89ef9049781c90ea35d5edf74374ed6ed515c286a706d1b290267"}, + {file = "orjson-3.8.11-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7c7b4fae3b8fc69c8e76f1c0694f3decfe8a57f87e7ac7779ebb59cd71135438"}, + {file = "orjson-3.8.11-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f4e4a1001933166fd1c257b920b241b35322bef99ed7329338bf266ac053abe7"}, + {file = "orjson-3.8.11-cp38-none-win_amd64.whl", hash = "sha256:5ff10789cbc08a9fd94507c907ba55b9315e99f20345ff8ef34fac432dacd948"}, + {file = "orjson-3.8.11-cp39-cp39-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:c67ac094a4dde914297543af19f22532d7124f3a35245580d8b756c4ff2f5884"}, + {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdf201e77d3fac9d8d6f68d872ef45dccfe46f30b268bb88b6c5af5065b433aa"}, + {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3485c458670c0edb79ca149fe201f199dd9ccfe7ca3acbdef617e3c683e7b97f"}, + {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e97fdbb779a3b8f5d9fc7dfddef5325f81ee45897eb7cb4638d5d9734d42514"}, + {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2fc050f8e7f2e4061c8c9968ad0be745b11b03913b77ffa8ceca65914696886c"}, + {file = "orjson-3.8.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2ef933da50b31c112b252be03d1ef59e0d0552c1a08e48295bd529ce42aaab8"}, + {file = "orjson-3.8.11-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:714c3e2be6ed7e4ff6e887926d6e171bfd94fdee76d7d3bfa74ee19237a2d49d"}, + {file = "orjson-3.8.11-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7e4ded77ac7432a155d1d27a83bcadf722750aea3b9e6c4d47f2a92054ab71cb"}, + {file = "orjson-3.8.11-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:382f15861a4bf447ab9d07106010e61b217ef6d4245c6cf64af0c12c4c5e2346"}, + {file = "orjson-3.8.11-cp39-none-win_amd64.whl", hash = "sha256:0bc3d1b93a73b46a698c054697eb2d27bdedbc5ea0d11ec5f1a6bfbec36346b5"}, + {file = "orjson-3.8.11.tar.gz", hash = "sha256:882c77126c42dd93bb35288632d69b1e393863a2b752de3e5fe0112833609496"}, ] [[package]] name = "packaging" -version = "23.2" +version = "23.1" description = "Core utilities for Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, ] [[package]] name = "paramiko" version = "2.12.0" description = "SSH2 protocol library" -category = "main" optional = false python-versions = "*" files = [ @@ -2944,7 +2832,6 @@ invoke = ["invoke (>=1.3)"] name = "parso" version = "0.8.3" description = "A Python Parser" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2960,7 +2847,6 @@ testing = ["docopt", "pytest (<6.0.0)"] name = "passlib" version = "1.7.4" description = "comprehensive password hashing framework supporting over 30 schemes" -category = "dev" optional = false python-versions = "*" files = [ @@ -2976,33 +2862,30 @@ totp = ["cryptography"] [[package]] name = "pathspec" -version = "0.11.2" +version = "0.11.1" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, - {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, + {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, + {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, ] [[package]] name = "pbr" -version = "6.0.0" +version = "5.11.1" description = "Python Build Reasonableness" -category = "main" optional = false python-versions = ">=2.6" files = [ - {file = "pbr-6.0.0-py2.py3-none-any.whl", hash = "sha256:4a7317d5e3b17a3dccb6a8cfe67dab65b20551404c52c8ed41279fa4f0cb4cda"}, - {file = "pbr-6.0.0.tar.gz", hash = "sha256:d1377122a5a00e2f940ee482999518efe16d745d423a670c27773dfbc3c9a7d9"}, + {file = "pbr-5.11.1-py2.py3-none-any.whl", hash = "sha256:567f09558bae2b3ab53cb3c1e2e33e726ff3338e7bae3db5dc954b3a44eef12b"}, + {file = "pbr-5.11.1.tar.gz", hash = "sha256:aefc51675b0b533d56bb5fd1c8c6c0522fe31896679882e1c4c63d5e4a0fccb3"}, ] [[package]] name = "pebble" version = "5.0.3" description = "Threading and multiprocessing eye-candy." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3014,7 +2897,6 @@ files = [ name = "pexpect" version = "4.8.0" description = "Pexpect allows easy control of interactive console applications." -category = "dev" optional = false python-versions = "*" files = [ @@ -3029,7 +2911,6 @@ ptyprocess = ">=0.5" name = "pickleshare" version = "0.7.5" description = "Tiny 'shelve'-like database with concurrency support" -category = "dev" optional = false python-versions = "*" files = [ @@ -3041,7 +2922,6 @@ files = [ name = "pkgutil-resolve-name" version = "1.3.10" description = "Resolve a name to an object." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3051,30 +2931,28 @@ files = [ [[package]] name = "platformdirs" -version = "3.11.0" +version = "3.5.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, - {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, + {file = "platformdirs-3.5.0-py3-none-any.whl", hash = "sha256:47692bc24c1958e8b0f13dd727307cff1db103fca36399f457da8e05f222fdc4"}, + {file = "platformdirs-3.5.0.tar.gz", hash = "sha256:7954a68d0ba23558d753f73437c55f89027cf8f5108c19844d4b82e5af396335"}, ] [package.extras] -docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] +docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] [[package]] name = "pluggy" -version = "1.3.0" +version = "1.0.0" description = "plugin and hook calling mechanisms for python" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "pluggy-1.3.0-py3-none-any.whl", hash = "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7"}, - {file = "pluggy-1.3.0.tar.gz", hash = "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"}, + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, ] [package.extras] @@ -3085,7 +2963,6 @@ testing = ["pytest", "pytest-benchmark"] name = "pre-commit" version = "2.21.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3102,14 +2979,13 @@ virtualenv = ">=20.10.0" [[package]] name = "prettytable" -version = "3.9.0" +version = "3.7.0" description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "prettytable-3.9.0-py3-none-any.whl", hash = "sha256:a71292ab7769a5de274b146b276ce938786f56c31cf7cea88b6f3775d82fe8c8"}, - {file = "prettytable-3.9.0.tar.gz", hash = "sha256:f4ed94803c23073a90620b201965e5dc0bccf1760b7a7eaf3158cab8aaffdf34"}, + {file = "prettytable-3.7.0-py3-none-any.whl", hash = "sha256:f4aaf2ed6e6062a82fd2e6e5289bbbe705ec2788fe401a3a1f62a1cea55526d2"}, + {file = "prettytable-3.7.0.tar.gz", hash = "sha256:ef8334ee40b7ec721651fc4d37ecc7bb2ef55fde5098d994438f0dfdaa385c0c"}, ] [package.dependencies] @@ -3120,14 +2996,13 @@ tests = ["pytest", "pytest-cov", "pytest-lazy-fixture"] [[package]] name = "prompt-toolkit" -version = "3.0.41" +version = "3.0.38" description = "Library for building powerful interactive command lines in Python" -category = "dev" optional = false python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.41-py3-none-any.whl", hash = "sha256:f36fe301fafb7470e86aaf90f036eef600a3210be4decf461a5b1ca8403d3cb2"}, - {file = "prompt_toolkit-3.0.41.tar.gz", hash = "sha256:941367d97fc815548822aa26c2a269fdc4eb21e9ec05fc5d447cf09bad5d75f0"}, + {file = "prompt_toolkit-3.0.38-py3-none-any.whl", hash = "sha256:45ea77a2f7c60418850331366c81cf6b5b9cf4c7fd34616f733c5427e6abbb1f"}, + {file = "prompt_toolkit-3.0.38.tar.gz", hash = "sha256:23ac5d50538a9a38c8bde05fecb47d0b403ecd0662857a86f886f798563d5b9b"}, ] [package.dependencies] @@ -3137,7 +3012,6 @@ wcwidth = "*" name = "proto-plus" version = "1.22.3" description = "Beautiful, Pythonic protocol buffers." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3155,7 +3029,6 @@ testing = ["google-api-core[grpc] (>=1.31.5)"] name = "protobuf" version = "3.19.6" description = "Protocol Buffers" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3188,28 +3061,25 @@ files = [ [[package]] name = "psutil" -version = "5.9.6" +version = "5.9.5" description = "Cross-platform lib for process and system monitoring in Python." -category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ - {file = "psutil-5.9.6-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:fb8a697f11b0f5994550555fcfe3e69799e5b060c8ecf9e2f75c69302cc35c0d"}, - {file = "psutil-5.9.6-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:91ecd2d9c00db9817a4b4192107cf6954addb5d9d67a969a4f436dbc9200f88c"}, - {file = "psutil-5.9.6-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:10e8c17b4f898d64b121149afb136c53ea8b68c7531155147867b7b1ac9e7e28"}, - {file = "psutil-5.9.6-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:18cd22c5db486f33998f37e2bb054cc62fd06646995285e02a51b1e08da97017"}, - {file = "psutil-5.9.6-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:ca2780f5e038379e520281e4c032dddd086906ddff9ef0d1b9dcf00710e5071c"}, - {file = "psutil-5.9.6-cp27-none-win32.whl", hash = "sha256:70cb3beb98bc3fd5ac9ac617a327af7e7f826373ee64c80efd4eb2856e5051e9"}, - {file = "psutil-5.9.6-cp27-none-win_amd64.whl", hash = "sha256:51dc3d54607c73148f63732c727856f5febec1c7c336f8f41fcbd6315cce76ac"}, - {file = "psutil-5.9.6-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c69596f9fc2f8acd574a12d5f8b7b1ba3765a641ea5d60fb4736bf3c08a8214a"}, - {file = "psutil-5.9.6-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92e0cc43c524834af53e9d3369245e6cc3b130e78e26100d1f63cdb0abeb3d3c"}, - {file = "psutil-5.9.6-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:748c9dd2583ed86347ed65d0035f45fa8c851e8d90354c122ab72319b5f366f4"}, - {file = "psutil-5.9.6-cp36-cp36m-win32.whl", hash = "sha256:3ebf2158c16cc69db777e3c7decb3c0f43a7af94a60d72e87b2823aebac3d602"}, - {file = "psutil-5.9.6-cp36-cp36m-win_amd64.whl", hash = "sha256:ff18b8d1a784b810df0b0fff3bcb50ab941c3b8e2c8de5726f9c71c601c611aa"}, - {file = "psutil-5.9.6-cp37-abi3-win32.whl", hash = "sha256:a6f01f03bf1843280f4ad16f4bde26b817847b4c1a0db59bf6419807bc5ce05c"}, - {file = "psutil-5.9.6-cp37-abi3-win_amd64.whl", hash = "sha256:6e5fb8dc711a514da83098bc5234264e551ad980cec5f85dabf4d38ed6f15e9a"}, - {file = "psutil-5.9.6-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:daecbcbd29b289aac14ece28eca6a3e60aa361754cf6da3dfb20d4d32b6c7f57"}, - {file = "psutil-5.9.6.tar.gz", hash = "sha256:e4b92ddcd7dd4cdd3f900180ea1e104932c7bce234fb88976e2a3b296441225a"}, + {file = "psutil-5.9.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:be8929ce4313f9f8146caad4272f6abb8bf99fc6cf59344a3167ecd74f4f203f"}, + {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ab8ed1a1d77c95453db1ae00a3f9c50227ebd955437bcf2a574ba8adbf6a74d5"}, + {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4aef137f3345082a3d3232187aeb4ac4ef959ba3d7c10c33dd73763fbc063da4"}, + {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ea8518d152174e1249c4f2a1c89e3e6065941df2fa13a1ab45327716a23c2b48"}, + {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:acf2aef9391710afded549ff602b5887d7a2349831ae4c26be7c807c0a39fac4"}, + {file = "psutil-5.9.5-cp27-none-win32.whl", hash = "sha256:5b9b8cb93f507e8dbaf22af6a2fd0ccbe8244bf30b1baad6b3954e935157ae3f"}, + {file = "psutil-5.9.5-cp27-none-win_amd64.whl", hash = "sha256:8c5f7c5a052d1d567db4ddd231a9d27a74e8e4a9c3f44b1032762bd7b9fdcd42"}, + {file = "psutil-5.9.5-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3c6f686f4225553615612f6d9bc21f1c0e305f75d7d8454f9b46e901778e7217"}, + {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a7dd9997128a0d928ed4fb2c2d57e5102bb6089027939f3b722f3a210f9a8da"}, + {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89518112647f1276b03ca97b65cc7f64ca587b1eb0278383017c2a0dcc26cbe4"}, + {file = "psutil-5.9.5-cp36-abi3-win32.whl", hash = "sha256:104a5cc0e31baa2bcf67900be36acde157756b9c44017b86b2c049f11957887d"}, + {file = "psutil-5.9.5-cp36-abi3-win_amd64.whl", hash = "sha256:b258c0c1c9d145a1d5ceffab1134441c4c5113b2417fafff7315a917a026c3c9"}, + {file = "psutil-5.9.5-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:c607bb3b57dc779d55e1554846352b4e358c10fff3abf3514a7a6601beebdb30"}, + {file = "psutil-5.9.5.tar.gz", hash = "sha256:5410638e4df39c54d957fc51ce03048acd8e6d60abc0f5107af51e5fb566eb3c"}, ] [package.extras] @@ -3219,7 +3089,6 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" -category = "dev" optional = false python-versions = "*" files = [ @@ -3231,7 +3100,6 @@ files = [ name = "publicsuffix2" version = "2.20191221" description = "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package." -category = "dev" optional = false python-versions = "*" files = [ @@ -3243,7 +3111,6 @@ files = [ name = "pure-eval" version = "0.2.2" description = "Safely evaluate AST nodes without side effects" -category = "dev" optional = false python-versions = "*" files = [ @@ -3256,21 +3123,19 @@ tests = ["pytest"] [[package]] name = "pyasn1" -version = "0.5.1" +version = "0.5.0" description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "pyasn1-0.5.1-py2.py3-none-any.whl", hash = "sha256:4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58"}, - {file = "pyasn1-0.5.1.tar.gz", hash = "sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"}, + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, ] [[package]] name = "pyasn1-modules" version = "0.3.0" description = "A collection of ASN.1-based protocols modules" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3283,21 +3148,19 @@ pyasn1 = ">=0.4.6,<0.6.0" [[package]] name = "pycodestyle" -version = "2.11.1" +version = "2.10.0" description = "Python style guide checker" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "pycodestyle-2.11.1-py2.py3-none-any.whl", hash = "sha256:44fe31000b2d866f2e41841b18528a505fbd7fef9017b04eff4e2648a0fadc67"}, - {file = "pycodestyle-2.11.1.tar.gz", hash = "sha256:41ba0e7afc9752dfb53ced5489e89f8186be00e599e712660695b7a75ff2663f"}, + {file = "pycodestyle-2.10.0-py2.py3-none-any.whl", hash = "sha256:8a4eaf0d0495c7395bdab3589ac2db602797d76207242c17d470186815706610"}, + {file = "pycodestyle-2.10.0.tar.gz", hash = "sha256:347187bdb476329d98f695c213d7295a846d1152ff4fe9bacb8a9590b8ee7053"}, ] [[package]] name = "pycparser" version = "2.21" description = "C parser in Python" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3307,48 +3170,47 @@ files = [ [[package]] name = "pydantic" -version = "1.10.13" +version = "1.10.7" description = "Data validation and settings management using python type hints" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic-1.10.13-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:efff03cc7a4f29d9009d1c96ceb1e7a70a65cfe86e89d34e4a5f2ab1e5693737"}, - {file = "pydantic-1.10.13-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ecea2b9d80e5333303eeb77e180b90e95eea8f765d08c3d278cd56b00345d01"}, - {file = "pydantic-1.10.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1740068fd8e2ef6eb27a20e5651df000978edce6da6803c2bef0bc74540f9548"}, - {file = "pydantic-1.10.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84bafe2e60b5e78bc64a2941b4c071a4b7404c5c907f5f5a99b0139781e69ed8"}, - {file = "pydantic-1.10.13-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bc0898c12f8e9c97f6cd44c0ed70d55749eaf783716896960b4ecce2edfd2d69"}, - {file = "pydantic-1.10.13-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:654db58ae399fe6434e55325a2c3e959836bd17a6f6a0b6ca8107ea0571d2e17"}, - {file = "pydantic-1.10.13-cp310-cp310-win_amd64.whl", hash = "sha256:75ac15385a3534d887a99c713aa3da88a30fbd6204a5cd0dc4dab3d770b9bd2f"}, - {file = "pydantic-1.10.13-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c553f6a156deb868ba38a23cf0df886c63492e9257f60a79c0fd8e7173537653"}, - {file = "pydantic-1.10.13-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5e08865bc6464df8c7d61439ef4439829e3ab62ab1669cddea8dd00cd74b9ffe"}, - {file = "pydantic-1.10.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e31647d85a2013d926ce60b84f9dd5300d44535a9941fe825dc349ae1f760df9"}, - {file = "pydantic-1.10.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:210ce042e8f6f7c01168b2d84d4c9eb2b009fe7bf572c2266e235edf14bacd80"}, - {file = "pydantic-1.10.13-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8ae5dd6b721459bfa30805f4c25880e0dd78fc5b5879f9f7a692196ddcb5a580"}, - {file = "pydantic-1.10.13-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f8e81fc5fb17dae698f52bdd1c4f18b6ca674d7068242b2aff075f588301bbb0"}, - {file = "pydantic-1.10.13-cp311-cp311-win_amd64.whl", hash = "sha256:61d9dce220447fb74f45e73d7ff3b530e25db30192ad8d425166d43c5deb6df0"}, - {file = "pydantic-1.10.13-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4b03e42ec20286f052490423682016fd80fda830d8e4119f8ab13ec7464c0132"}, - {file = "pydantic-1.10.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f59ef915cac80275245824e9d771ee939133be38215555e9dc90c6cb148aaeb5"}, - {file = "pydantic-1.10.13-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a1f9f747851338933942db7af7b6ee8268568ef2ed86c4185c6ef4402e80ba8"}, - {file = "pydantic-1.10.13-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:97cce3ae7341f7620a0ba5ef6cf043975cd9d2b81f3aa5f4ea37928269bc1b87"}, - {file = "pydantic-1.10.13-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854223752ba81e3abf663d685f105c64150873cc6f5d0c01d3e3220bcff7d36f"}, - {file = "pydantic-1.10.13-cp37-cp37m-win_amd64.whl", hash = "sha256:b97c1fac8c49be29486df85968682b0afa77e1b809aff74b83081cc115e52f33"}, - {file = "pydantic-1.10.13-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c958d053453a1c4b1c2062b05cd42d9d5c8eb67537b8d5a7e3c3032943ecd261"}, - {file = "pydantic-1.10.13-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c5370a7edaac06daee3af1c8b1192e305bc102abcbf2a92374b5bc793818599"}, - {file = "pydantic-1.10.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d6f6e7305244bddb4414ba7094ce910560c907bdfa3501e9db1a7fd7eaea127"}, - {file = "pydantic-1.10.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3a3c792a58e1622667a2837512099eac62490cdfd63bd407993aaf200a4cf1f"}, - {file = "pydantic-1.10.13-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c636925f38b8db208e09d344c7aa4f29a86bb9947495dd6b6d376ad10334fb78"}, - {file = "pydantic-1.10.13-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:678bcf5591b63cc917100dc50ab6caebe597ac67e8c9ccb75e698f66038ea953"}, - {file = "pydantic-1.10.13-cp38-cp38-win_amd64.whl", hash = "sha256:6cf25c1a65c27923a17b3da28a0bdb99f62ee04230c931d83e888012851f4e7f"}, - {file = "pydantic-1.10.13-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8ef467901d7a41fa0ca6db9ae3ec0021e3f657ce2c208e98cd511f3161c762c6"}, - {file = "pydantic-1.10.13-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:968ac42970f57b8344ee08837b62f6ee6f53c33f603547a55571c954a4225691"}, - {file = "pydantic-1.10.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9849f031cf8a2f0a928fe885e5a04b08006d6d41876b8bbd2fc68a18f9f2e3fd"}, - {file = "pydantic-1.10.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:56e3ff861c3b9c6857579de282ce8baabf443f42ffba355bf070770ed63e11e1"}, - {file = "pydantic-1.10.13-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f00790179497767aae6bcdc36355792c79e7bbb20b145ff449700eb076c5f96"}, - {file = "pydantic-1.10.13-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:75b297827b59bc229cac1a23a2f7a4ac0031068e5be0ce385be1462e7e17a35d"}, - {file = "pydantic-1.10.13-cp39-cp39-win_amd64.whl", hash = "sha256:e70ca129d2053fb8b728ee7d1af8e553a928d7e301a311094b8a0501adc8763d"}, - {file = "pydantic-1.10.13-py3-none-any.whl", hash = "sha256:b87326822e71bd5f313e7d3bfdc77ac3247035ac10b0c0618bd99dcf95b1e687"}, - {file = "pydantic-1.10.13.tar.gz", hash = "sha256:32c8b48dcd3b2ac4e78b0ba4af3a2c2eb6048cb75202f0ea7b34feb740efc340"}, + {file = "pydantic-1.10.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e79e999e539872e903767c417c897e729e015872040e56b96e67968c3b918b2d"}, + {file = "pydantic-1.10.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:01aea3a42c13f2602b7ecbbea484a98169fb568ebd9e247593ea05f01b884b2e"}, + {file = "pydantic-1.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:516f1ed9bc2406a0467dd777afc636c7091d71f214d5e413d64fef45174cfc7a"}, + {file = "pydantic-1.10.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae150a63564929c675d7f2303008d88426a0add46efd76c3fc797cd71cb1b46f"}, + {file = "pydantic-1.10.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ecbbc51391248116c0a055899e6c3e7ffbb11fb5e2a4cd6f2d0b93272118a209"}, + {file = "pydantic-1.10.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f4a2b50e2b03d5776e7f21af73e2070e1b5c0d0df255a827e7c632962f8315af"}, + {file = "pydantic-1.10.7-cp310-cp310-win_amd64.whl", hash = "sha256:a7cd2251439988b413cb0a985c4ed82b6c6aac382dbaff53ae03c4b23a70e80a"}, + {file = "pydantic-1.10.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:68792151e174a4aa9e9fc1b4e653e65a354a2fa0fed169f7b3d09902ad2cb6f1"}, + {file = "pydantic-1.10.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe2507b8ef209da71b6fb5f4e597b50c5a34b78d7e857c4f8f3115effaef5fe"}, + {file = "pydantic-1.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10a86d8c8db68086f1e30a530f7d5f83eb0685e632e411dbbcf2d5c0150e8dcd"}, + {file = "pydantic-1.10.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d75ae19d2a3dbb146b6f324031c24f8a3f52ff5d6a9f22f0683694b3afcb16fb"}, + {file = "pydantic-1.10.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:464855a7ff7f2cc2cf537ecc421291b9132aa9c79aef44e917ad711b4a93163b"}, + {file = "pydantic-1.10.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:193924c563fae6ddcb71d3f06fa153866423ac1b793a47936656e806b64e24ca"}, + {file = "pydantic-1.10.7-cp311-cp311-win_amd64.whl", hash = "sha256:b4a849d10f211389502059c33332e91327bc154acc1845f375a99eca3afa802d"}, + {file = "pydantic-1.10.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cc1dde4e50a5fc1336ee0581c1612215bc64ed6d28d2c7c6f25d2fe3e7c3e918"}, + {file = "pydantic-1.10.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e0cfe895a504c060e5d36b287ee696e2fdad02d89e0d895f83037245218a87fe"}, + {file = "pydantic-1.10.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:670bb4683ad1e48b0ecb06f0cfe2178dcf74ff27921cdf1606e527d2617a81ee"}, + {file = "pydantic-1.10.7-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:950ce33857841f9a337ce07ddf46bc84e1c4946d2a3bba18f8280297157a3fd1"}, + {file = "pydantic-1.10.7-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c15582f9055fbc1bfe50266a19771bbbef33dd28c45e78afbe1996fd70966c2a"}, + {file = "pydantic-1.10.7-cp37-cp37m-win_amd64.whl", hash = "sha256:82dffb306dd20bd5268fd6379bc4bfe75242a9c2b79fec58e1041fbbdb1f7914"}, + {file = "pydantic-1.10.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c7f51861d73e8b9ddcb9916ae7ac39fb52761d9ea0df41128e81e2ba42886cd"}, + {file = "pydantic-1.10.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6434b49c0b03a51021ade5c4daa7d70c98f7a79e95b551201fff682fc1661245"}, + {file = "pydantic-1.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64d34ab766fa056df49013bb6e79921a0265204c071984e75a09cbceacbbdd5d"}, + {file = "pydantic-1.10.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:701daea9ffe9d26f97b52f1d157e0d4121644f0fcf80b443248434958fd03dc3"}, + {file = "pydantic-1.10.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:cf135c46099ff3f919d2150a948ce94b9ce545598ef2c6c7bf55dca98a304b52"}, + {file = "pydantic-1.10.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b0f85904f73161817b80781cc150f8b906d521fa11e3cdabae19a581c3606209"}, + {file = "pydantic-1.10.7-cp38-cp38-win_amd64.whl", hash = "sha256:9f6f0fd68d73257ad6685419478c5aece46432f4bdd8d32c7345f1986496171e"}, + {file = "pydantic-1.10.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c230c0d8a322276d6e7b88c3f7ce885f9ed16e0910354510e0bae84d54991143"}, + {file = "pydantic-1.10.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:976cae77ba6a49d80f461fd8bba183ff7ba79f44aa5cfa82f1346b5626542f8e"}, + {file = "pydantic-1.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d45fc99d64af9aaf7e308054a0067fdcd87ffe974f2442312372dfa66e1001d"}, + {file = "pydantic-1.10.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d2a5ebb48958754d386195fe9e9c5106f11275867051bf017a8059410e9abf1f"}, + {file = "pydantic-1.10.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:abfb7d4a7cd5cc4e1d1887c43503a7c5dd608eadf8bc615413fc498d3e4645cd"}, + {file = "pydantic-1.10.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:80b1fab4deb08a8292d15e43a6edccdffa5377a36a4597bb545b93e79c5ff0a5"}, + {file = "pydantic-1.10.7-cp39-cp39-win_amd64.whl", hash = "sha256:d71e69699498b020ea198468e2480a2f1e7433e32a3a99760058c6520e2bea7e"}, + {file = "pydantic-1.10.7-py3-none-any.whl", hash = "sha256:0cd181f1d0b1d00e2b705f1bf1ac7799a2d938cce3376b8007df62b29be3c2c6"}, + {file = "pydantic-1.10.7.tar.gz", hash = "sha256:cfc83c0678b6ba51b0532bea66860617c4cd4251ecf76e9846fa5a9f3454e97e"}, ] [package.dependencies] @@ -3362,7 +3224,6 @@ email = ["email-validator (>=1.0.3)"] name = "pydivert" version = "2.1.0" description = "Python binding to windivert driver" -category = "dev" optional = false python-versions = "*" files = [ @@ -3376,25 +3237,22 @@ test = ["codecov (>=2.0.5)", "hypothesis (>=3.5.3)", "mock (>=1.0.1)", "pytest ( [[package]] name = "pygments" -version = "2.17.1" +version = "2.15.1" description = "Pygments is a syntax highlighting package written in Python." -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pygments-2.17.1-py3-none-any.whl", hash = "sha256:1b37f1b1e1bff2af52ecaf28cc601e2ef7077000b227a0675da25aef85784bc4"}, - {file = "pygments-2.17.1.tar.gz", hash = "sha256:e45a0e74bf9c530f564ca81b8952343be986a29f6afe7f5ad95c5f06b7bdf5e8"}, + {file = "Pygments-2.15.1-py3-none-any.whl", hash = "sha256:db2db3deb4b4179f399a09054b023b6a586b76499d36965813c71aa8ed7b5fd1"}, + {file = "Pygments-2.15.1.tar.gz", hash = "sha256:8ace4d3c1dd481894b2005f560ead0f9f19ee64fe983366be1a21e171d12775c"}, ] [package.extras] plugins = ["importlib-metadata"] -windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pykwalify" version = "1.8.0" description = "Python lib/cli for JSON/YAML schema validation" -category = "main" optional = false python-versions = "*" files = [ @@ -3411,7 +3269,6 @@ python-dateutil = ">=2.8.0" name = "pylint" version = "2.12.2" description = "python code static checker" -category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -3432,7 +3289,6 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\"" name = "pynacl" version = "1.5.0" description = "Python binding to the Networking and Cryptography (NaCl) library" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3459,7 +3315,6 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] name = "pyopenssl" version = "22.0.0" description = "Python wrapper module around the OpenSSL library" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3478,7 +3333,6 @@ test = ["flaky", "pretend", "pytest (>=3.0.1)"] name = "pyparsing" version = "3.0.9" description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "main" optional = false python-versions = ">=3.6.8" files = [ @@ -3493,7 +3347,6 @@ diagrams = ["jinja2", "railroad-diagrams"] name = "pypdf2" version = "1.28.6" description = "A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files" -category = "main" optional = false python-versions = ">=2.7" files = [ @@ -3505,7 +3358,6 @@ files = [ name = "pyperclip" version = "1.8.2" description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" -category = "dev" optional = false python-versions = "*" files = [ @@ -3516,7 +3368,6 @@ files = [ name = "pyreadline3" version = "3.4.1" description = "A python implementation of GNU readline." -category = "main" optional = false python-versions = "*" files = [ @@ -3524,11 +3375,46 @@ files = [ {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, ] +[[package]] +name = "pyrsistent" +version = "0.19.3" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] + [[package]] name = "pyspellchecker" version = "0.6.3" description = "Pure python spell checker based on work by Peter Norvig" -category = "main" optional = false python-versions = "*" files = [ @@ -3538,14 +3424,13 @@ files = [ [[package]] name = "pytest" -version = "7.4.3" +version = "7.3.1" description = "pytest: simple powerful testing with Python" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.4.3-py3-none-any.whl", hash = "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac"}, - {file = "pytest-7.4.3.tar.gz", hash = "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5"}, + {file = "pytest-7.3.1-py3-none-any.whl", hash = "sha256:3799fa815351fea3a5e96ac7e503a96fa51cc9942c3753cda7651b93c1cfa362"}, + {file = "pytest-7.3.1.tar.gz", hash = "sha256:434afafd78b1d78ed0addf160ad2b77a30d35d4bdf8af234fe621919d9ed15e3"}, ] [package.dependencies] @@ -3557,18 +3442,17 @@ pluggy = ">=0.12,<2.0" tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] +testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] [[package]] name = "pytest-cov" -version = "4.1.0" +version = "4.0.0" description = "Pytest plugin for measuring coverage." -category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.6" files = [ - {file = "pytest-cov-4.1.0.tar.gz", hash = "sha256:3904b13dfbfec47f003b8e77fd5b589cd11904a21ddf1ab38a64f204d6a10ef6"}, - {file = "pytest_cov-4.1.0-py3-none-any.whl", hash = "sha256:6ba70b9e97e69fcc3fb45bfeab2d0a138fb65c4d0d6a41ef33983ad114be8c3a"}, + {file = "pytest-cov-4.0.0.tar.gz", hash = "sha256:996b79efde6433cdbd0088872dbc5fb3ed7fe1578b68cdbba634f14bb8dd0470"}, + {file = "pytest_cov-4.0.0-py3-none-any.whl", hash = "sha256:2feb1b751d66a8bd934e5edfa2e961d11309dc37b73b0eabe73b5945fee20f6b"}, ] [package.dependencies] @@ -3582,7 +3466,6 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-datadir-ng" version = "1.1.1" description = "Fixtures for pytest allowing test functions/methods to easily retrieve test resources from the local filesystem." -category = "dev" optional = false python-versions = "*" files = [ @@ -3597,7 +3480,6 @@ pytest = "*" name = "pytest-freezegun" version = "0.4.2" description = "Wrap tests with fixtures in freeze_time" -category = "main" optional = false python-versions = "*" files = [ @@ -3611,14 +3493,13 @@ pytest = ">=3.0.0" [[package]] name = "pytest-mock" -version = "3.12.0" +version = "3.10.0" description = "Thin-wrapper around the mock package for easier use with pytest" -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "pytest-mock-3.12.0.tar.gz", hash = "sha256:31a40f038c22cad32287bb43932054451ff5583ff094bca6f675df2f8bc1a6e9"}, - {file = "pytest_mock-3.12.0-py3-none-any.whl", hash = "sha256:0972719a7263072da3a21c7f4773069bcc7486027d7e8e1f81d98a47e701bc4f"}, + {file = "pytest-mock-3.10.0.tar.gz", hash = "sha256:fbbdb085ef7c252a326fd8cdcac0aa3b1333d8811f131bdcc701002e1be7ed4f"}, + {file = "pytest_mock-3.10.0-py3-none-any.whl", hash = "sha256:f4c973eeae0282963eb293eb173ce91b091a79c1334455acfac9ddee8a1c784b"}, ] [package.dependencies] @@ -3627,26 +3508,10 @@ 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." -category = "dev" -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" description = "A plugin to fake subprocess for pytest" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3666,7 +3531,6 @@ test = ["Pygments (>=2.0)", "anyio", "coverage", "docutils (>=0.12)", "pytest (> name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ @@ -3681,7 +3545,6 @@ six = ">=1.5" name = "python-dotenv" version = "0.20.0" description = "Read key-value pairs from a .env file and set them as environment variables" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3694,21 +3557,19 @@ cli = ["click (>=5.0)"] [[package]] name = "pytz" -version = "2023.3.post1" +version = "2023.3" description = "World timezone definitions, modern and historical" -category = "main" optional = false python-versions = "*" files = [ - {file = "pytz-2023.3.post1-py2.py3-none-any.whl", hash = "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7"}, - {file = "pytz-2023.3.post1.tar.gz", hash = "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b"}, + {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, + {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, ] [[package]] name = "pytz-deprecation-shim" version = "0.1.0.post0" description = "Shims to make deprecation of pytz easier" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3724,7 +3585,6 @@ tzdata = {version = "*", markers = "python_version >= \"3.6\""} name = "pyu2f" version = "0.1.5" description = "U2F host library for interacting with a U2F device over USB." -category = "main" optional = true python-versions = "*" files = [ @@ -3738,7 +3598,6 @@ six = "*" name = "pywin32" version = "227" description = "Python for Window Extensions" -category = "main" optional = false python-versions = "*" files = [ @@ -3758,291 +3617,255 @@ files = [ [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0" description = "YAML parser and emitter for Python" -category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, ] [[package]] name = "pyzmq" -version = "25.1.1" +version = "25.0.2" description = "Python bindings for 0MQ" -category = "dev" optional = false python-versions = ">=3.6" files = [ - {file = "pyzmq-25.1.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:381469297409c5adf9a0e884c5eb5186ed33137badcbbb0560b86e910a2f1e76"}, - {file = "pyzmq-25.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:955215ed0604dac5b01907424dfa28b40f2b2292d6493445dd34d0dfa72586a8"}, - {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:985bbb1316192b98f32e25e7b9958088431d853ac63aca1d2c236f40afb17c83"}, - {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:afea96f64efa98df4da6958bae37f1cbea7932c35878b185e5982821bc883369"}, - {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76705c9325d72a81155bb6ab48d4312e0032bf045fb0754889133200f7a0d849"}, - {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:77a41c26205d2353a4c94d02be51d6cbdf63c06fbc1295ea57dad7e2d3381b71"}, - {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:12720a53e61c3b99d87262294e2b375c915fea93c31fc2336898c26d7aed34cd"}, - {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:57459b68e5cd85b0be8184382cefd91959cafe79ae019e6b1ae6e2ba8a12cda7"}, - {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:292fe3fc5ad4a75bc8df0dfaee7d0babe8b1f4ceb596437213821f761b4589f9"}, - {file = "pyzmq-25.1.1-cp310-cp310-win32.whl", hash = "sha256:35b5ab8c28978fbbb86ea54958cd89f5176ce747c1fb3d87356cf698048a7790"}, - {file = "pyzmq-25.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:11baebdd5fc5b475d484195e49bae2dc64b94a5208f7c89954e9e354fc609d8f"}, - {file = "pyzmq-25.1.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:d20a0ddb3e989e8807d83225a27e5c2eb2260eaa851532086e9e0fa0d5287d83"}, - {file = "pyzmq-25.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e1c1be77bc5fb77d923850f82e55a928f8638f64a61f00ff18a67c7404faf008"}, - {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d89528b4943d27029a2818f847c10c2cecc79fa9590f3cb1860459a5be7933eb"}, - {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90f26dc6d5f241ba358bef79be9ce06de58d477ca8485e3291675436d3827cf8"}, - {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2b92812bd214018e50b6380ea3ac0c8bb01ac07fcc14c5f86a5bb25e74026e9"}, - {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:2f957ce63d13c28730f7fd6b72333814221c84ca2421298f66e5143f81c9f91f"}, - {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:047a640f5c9c6ade7b1cc6680a0e28c9dd5a0825135acbd3569cc96ea00b2505"}, - {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7f7e58effd14b641c5e4dec8c7dab02fb67a13df90329e61c869b9cc607ef752"}, - {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c2910967e6ab16bf6fbeb1f771c89a7050947221ae12a5b0b60f3bca2ee19bca"}, - {file = "pyzmq-25.1.1-cp311-cp311-win32.whl", hash = "sha256:76c1c8efb3ca3a1818b837aea423ff8a07bbf7aafe9f2f6582b61a0458b1a329"}, - {file = "pyzmq-25.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:44e58a0554b21fc662f2712814a746635ed668d0fbc98b7cb9d74cb798d202e6"}, - {file = "pyzmq-25.1.1-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:e1ffa1c924e8c72778b9ccd386a7067cddf626884fd8277f503c48bb5f51c762"}, - {file = "pyzmq-25.1.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1af379b33ef33757224da93e9da62e6471cf4a66d10078cf32bae8127d3d0d4a"}, - {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cff084c6933680d1f8b2f3b4ff5bbb88538a4aac00d199ac13f49d0698727ecb"}, - {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2400a94f7dd9cb20cd012951a0cbf8249e3d554c63a9c0cdfd5cbb6c01d2dec"}, - {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d81f1ddae3858b8299d1da72dd7d19dd36aab654c19671aa8a7e7fb02f6638a"}, - {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:255ca2b219f9e5a3a9ef3081512e1358bd4760ce77828e1028b818ff5610b87b"}, - {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a882ac0a351288dd18ecae3326b8a49d10c61a68b01419f3a0b9a306190baf69"}, - {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:724c292bb26365659fc434e9567b3f1adbdb5e8d640c936ed901f49e03e5d32e"}, - {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ca1ed0bb2d850aa8471387882247c68f1e62a4af0ce9c8a1dbe0d2bf69e41fb"}, - {file = "pyzmq-25.1.1-cp312-cp312-win32.whl", hash = "sha256:b3451108ab861040754fa5208bca4a5496c65875710f76789a9ad27c801a0075"}, - {file = "pyzmq-25.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:eadbefd5e92ef8a345f0525b5cfd01cf4e4cc651a2cffb8f23c0dd184975d787"}, - {file = "pyzmq-25.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:db0b2af416ba735c6304c47f75d348f498b92952f5e3e8bff449336d2728795d"}, - {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7c133e93b405eb0d36fa430c94185bdd13c36204a8635470cccc200723c13bb"}, - {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:273bc3959bcbff3f48606b28229b4721716598d76b5aaea2b4a9d0ab454ec062"}, - {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:cbc8df5c6a88ba5ae385d8930da02201165408dde8d8322072e3e5ddd4f68e22"}, - {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:18d43df3f2302d836f2a56f17e5663e398416e9dd74b205b179065e61f1a6edf"}, - {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:73461eed88a88c866656e08f89299720a38cb4e9d34ae6bf5df6f71102570f2e"}, - {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:34c850ce7976d19ebe7b9d4b9bb8c9dfc7aac336c0958e2651b88cbd46682123"}, - {file = "pyzmq-25.1.1-cp36-cp36m-win32.whl", hash = "sha256:d2045d6d9439a0078f2a34b57c7b18c4a6aef0bee37f22e4ec9f32456c852c71"}, - {file = "pyzmq-25.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:458dea649f2f02a0b244ae6aef8dc29325a2810aa26b07af8374dc2a9faf57e3"}, - {file = "pyzmq-25.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7cff25c5b315e63b07a36f0c2bab32c58eafbe57d0dce61b614ef4c76058c115"}, - {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1579413ae492b05de5a6174574f8c44c2b9b122a42015c5292afa4be2507f28"}, - {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3d0a409d3b28607cc427aa5c30a6f1e4452cc44e311f843e05edb28ab5e36da0"}, - {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:21eb4e609a154a57c520e3d5bfa0d97e49b6872ea057b7c85257b11e78068222"}, - {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:034239843541ef7a1aee0c7b2cb7f6aafffb005ede965ae9cbd49d5ff4ff73cf"}, - {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f8115e303280ba09f3898194791a153862cbf9eef722ad8f7f741987ee2a97c7"}, - {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1a5d26fe8f32f137e784f768143728438877d69a586ddeaad898558dc971a5ae"}, - {file = "pyzmq-25.1.1-cp37-cp37m-win32.whl", hash = "sha256:f32260e556a983bc5c7ed588d04c942c9a8f9c2e99213fec11a031e316874c7e"}, - {file = "pyzmq-25.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:abf34e43c531bbb510ae7e8f5b2b1f2a8ab93219510e2b287a944432fad135f3"}, - {file = "pyzmq-25.1.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:87e34f31ca8f168c56d6fbf99692cc8d3b445abb5bfd08c229ae992d7547a92a"}, - {file = "pyzmq-25.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c9c6c9b2c2f80747a98f34ef491c4d7b1a8d4853937bb1492774992a120f475d"}, - {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5619f3f5a4db5dbb572b095ea3cb5cc035335159d9da950830c9c4db2fbb6995"}, - {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5a34d2395073ef862b4032343cf0c32a712f3ab49d7ec4f42c9661e0294d106f"}, - {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25f0e6b78220aba09815cd1f3a32b9c7cb3e02cb846d1cfc526b6595f6046618"}, - {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3669cf8ee3520c2f13b2e0351c41fea919852b220988d2049249db10046a7afb"}, - {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:2d163a18819277e49911f7461567bda923461c50b19d169a062536fffe7cd9d2"}, - {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:df27ffddff4190667d40de7beba4a950b5ce78fe28a7dcc41d6f8a700a80a3c0"}, - {file = "pyzmq-25.1.1-cp38-cp38-win32.whl", hash = "sha256:a382372898a07479bd34bda781008e4a954ed8750f17891e794521c3e21c2e1c"}, - {file = "pyzmq-25.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:52533489f28d62eb1258a965f2aba28a82aa747202c8fa5a1c7a43b5db0e85c1"}, - {file = "pyzmq-25.1.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:03b3f49b57264909aacd0741892f2aecf2f51fb053e7d8ac6767f6c700832f45"}, - {file = "pyzmq-25.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:330f9e188d0d89080cde66dc7470f57d1926ff2fb5576227f14d5be7ab30b9fa"}, - {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2ca57a5be0389f2a65e6d3bb2962a971688cbdd30b4c0bd188c99e39c234f414"}, - {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d457aed310f2670f59cc5b57dcfced452aeeed77f9da2b9763616bd57e4dbaae"}, - {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c56d748ea50215abef7030c72b60dd723ed5b5c7e65e7bc2504e77843631c1a6"}, - {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8f03d3f0d01cb5a018debeb412441996a517b11c5c17ab2001aa0597c6d6882c"}, - {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:820c4a08195a681252f46926de10e29b6bbf3e17b30037bd4250d72dd3ddaab8"}, - {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17ef5f01d25b67ca8f98120d5fa1d21efe9611604e8eb03a5147360f517dd1e2"}, - {file = "pyzmq-25.1.1-cp39-cp39-win32.whl", hash = "sha256:04ccbed567171579ec2cebb9c8a3e30801723c575601f9a990ab25bcac6b51e2"}, - {file = "pyzmq-25.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:e61f091c3ba0c3578411ef505992d356a812fb200643eab27f4f70eed34a29ef"}, - {file = "pyzmq-25.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ade6d25bb29c4555d718ac6d1443a7386595528c33d6b133b258f65f963bb0f6"}, - {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0c95ddd4f6e9fca4e9e3afaa4f9df8552f0ba5d1004e89ef0a68e1f1f9807c7"}, - {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48e466162a24daf86f6b5ca72444d2bf39a5e58da5f96370078be67c67adc978"}, - {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:abc719161780932c4e11aaebb203be3d6acc6b38d2f26c0f523b5b59d2fc1996"}, - {file = "pyzmq-25.1.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ccf825981640b8c34ae54231b7ed00271822ea1c6d8ba1090ebd4943759abf5"}, - {file = "pyzmq-25.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c2f20ce161ebdb0091a10c9ca0372e023ce24980d0e1f810f519da6f79c60800"}, - {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:deee9ca4727f53464daf089536e68b13e6104e84a37820a88b0a057b97bba2d2"}, - {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:aa8d6cdc8b8aa19ceb319aaa2b660cdaccc533ec477eeb1309e2a291eaacc43a"}, - {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019e59ef5c5256a2c7378f2fb8560fc2a9ff1d315755204295b2eab96b254d0a"}, - {file = "pyzmq-25.1.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:b9af3757495c1ee3b5c4e945c1df7be95562277c6e5bccc20a39aec50f826cd0"}, - {file = "pyzmq-25.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:548d6482dc8aadbe7e79d1b5806585c8120bafa1ef841167bc9090522b610fa6"}, - {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:057e824b2aae50accc0f9a0570998adc021b372478a921506fddd6c02e60308e"}, - {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2243700cc5548cff20963f0ca92d3e5e436394375ab8a354bbea2b12911b20b0"}, - {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79986f3b4af059777111409ee517da24a529bdbd46da578b33f25580adcff728"}, - {file = "pyzmq-25.1.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:11d58723d44d6ed4dd677c5615b2ffb19d5c426636345567d6af82be4dff8a55"}, - {file = "pyzmq-25.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:49d238cf4b69652257db66d0c623cd3e09b5d2e9576b56bc067a396133a00d4a"}, - {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fedbdc753827cf014c01dbbee9c3be17e5a208dcd1bf8641ce2cd29580d1f0d4"}, - {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc16ac425cc927d0a57d242589f87ee093884ea4804c05a13834d07c20db203c"}, - {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11c1d2aed9079c6b0c9550a7257a836b4a637feb334904610f06d70eb44c56d2"}, - {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e8a701123029cc240cea61dd2d16ad57cab4691804143ce80ecd9286b464d180"}, - {file = "pyzmq-25.1.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:61706a6b6c24bdece85ff177fec393545a3191eeda35b07aaa1458a027ad1304"}, - {file = "pyzmq-25.1.1.tar.gz", hash = "sha256:259c22485b71abacdfa8bf79720cd7bcf4b9d128b30ea554f01ae71fdbfdaa23"}, + {file = "pyzmq-25.0.2-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ac178e666c097c8d3deb5097b58cd1316092fc43e8ef5b5fdb259b51da7e7315"}, + {file = "pyzmq-25.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:659e62e1cbb063151c52f5b01a38e1df6b54feccfa3e2509d44c35ca6d7962ee"}, + {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8280ada89010735a12b968ec3ea9a468ac2e04fddcc1cede59cb7f5178783b9c"}, + {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9b5eeb5278a8a636bb0abdd9ff5076bcbb836cd2302565df53ff1fa7d106d54"}, + {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a2e5fe42dfe6b73ca120b97ac9f34bfa8414feb15e00e37415dbd51cf227ef6"}, + {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:827bf60e749e78acb408a6c5af6688efbc9993e44ecc792b036ec2f4b4acf485"}, + {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7b504ae43d37e282301da586529e2ded8b36d4ee2cd5e6db4386724ddeaa6bbc"}, + {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:cb1f69a0a2a2b1aae8412979dd6293cc6bcddd4439bf07e4758d864ddb112354"}, + {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2b9c9cc965cdf28381e36da525dcb89fc1571d9c54800fdcd73e3f73a2fc29bd"}, + {file = "pyzmq-25.0.2-cp310-cp310-win32.whl", hash = "sha256:24abbfdbb75ac5039205e72d6c75f10fc39d925f2df8ff21ebc74179488ebfca"}, + {file = "pyzmq-25.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6a821a506822fac55d2df2085a52530f68ab15ceed12d63539adc32bd4410f6e"}, + {file = "pyzmq-25.0.2-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:9af0bb0277e92f41af35e991c242c9c71920169d6aa53ade7e444f338f4c8128"}, + {file = "pyzmq-25.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:54a96cf77684a3a537b76acfa7237b1e79a8f8d14e7f00e0171a94b346c5293e"}, + {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88649b19ede1cab03b96b66c364cbbf17c953615cdbc844f7f6e5f14c5e5261c"}, + {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:715cff7644a80a7795953c11b067a75f16eb9fc695a5a53316891ebee7f3c9d5"}, + {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:312b3f0f066b4f1d17383aae509bacf833ccaf591184a1f3c7a1661c085063ae"}, + {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d488c5c8630f7e782e800869f82744c3aca4aca62c63232e5d8c490d3d66956a"}, + {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:38d9f78d69bcdeec0c11e0feb3bc70f36f9b8c44fc06e5d06d91dc0a21b453c7"}, + {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3059a6a534c910e1d5d068df42f60d434f79e6cc6285aa469b384fa921f78cf8"}, + {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6526d097b75192f228c09d48420854d53dfbc7abbb41b0e26f363ccb26fbc177"}, + {file = "pyzmq-25.0.2-cp311-cp311-win32.whl", hash = "sha256:5c5fbb229e40a89a2fe73d0c1181916f31e30f253cb2d6d91bea7927c2e18413"}, + {file = "pyzmq-25.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:ed15e3a2c3c2398e6ae5ce86d6a31b452dfd6ad4cd5d312596b30929c4b6e182"}, + {file = "pyzmq-25.0.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:032f5c8483c85bf9c9ca0593a11c7c749d734ce68d435e38c3f72e759b98b3c9"}, + {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:374b55516393bfd4d7a7daa6c3b36d6dd6a31ff9d2adad0838cd6a203125e714"}, + {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:08bfcc21b5997a9be4fefa405341320d8e7f19b4d684fb9c0580255c5bd6d695"}, + {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1a843d26a8da1b752c74bc019c7b20e6791ee813cd6877449e6a1415589d22ff"}, + {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:b48616a09d7df9dbae2f45a0256eee7b794b903ddc6d8657a9948669b345f220"}, + {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d4427b4a136e3b7f85516c76dd2e0756c22eec4026afb76ca1397152b0ca8145"}, + {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:26b0358e8933990502f4513c991c9935b6c06af01787a36d133b7c39b1df37fa"}, + {file = "pyzmq-25.0.2-cp36-cp36m-win32.whl", hash = "sha256:c8fedc3ccd62c6b77dfe6f43802057a803a411ee96f14e946f4a76ec4ed0e117"}, + {file = "pyzmq-25.0.2-cp36-cp36m-win_amd64.whl", hash = "sha256:2da6813b7995b6b1d1307329c73d3e3be2fd2d78e19acfc4eff2e27262732388"}, + {file = "pyzmq-25.0.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a35960c8b2f63e4ef67fd6731851030df68e4b617a6715dd11b4b10312d19fef"}, + {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eef2a0b880ab40aca5a878933376cb6c1ec483fba72f7f34e015c0f675c90b20"}, + {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:85762712b74c7bd18e340c3639d1bf2f23735a998d63f46bb6584d904b5e401d"}, + {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:64812f29d6eee565e129ca14b0c785744bfff679a4727137484101b34602d1a7"}, + {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:510d8e55b3a7cd13f8d3e9121edf0a8730b87d925d25298bace29a7e7bc82810"}, + {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b164cc3c8acb3d102e311f2eb6f3c305865ecb377e56adc015cb51f721f1dda6"}, + {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:28fdb9224a258134784a9cf009b59265a9dde79582fb750d4e88a6bcbc6fa3dc"}, + {file = "pyzmq-25.0.2-cp37-cp37m-win32.whl", hash = "sha256:dd771a440effa1c36d3523bc6ba4e54ff5d2e54b4adcc1e060d8f3ca3721d228"}, + {file = "pyzmq-25.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:9bdc40efb679b9dcc39c06d25629e55581e4c4f7870a5e88db4f1c51ce25e20d"}, + {file = "pyzmq-25.0.2-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:1f82906a2d8e4ee310f30487b165e7cc8ed09c009e4502da67178b03083c4ce0"}, + {file = "pyzmq-25.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:21ec0bf4831988af43c8d66ba3ccd81af2c5e793e1bf6790eb2d50e27b3c570a"}, + {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abbce982a17c88d2312ec2cf7673985d444f1beaac6e8189424e0a0e0448dbb3"}, + {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9e1d2f2d86fc75ed7f8845a992c5f6f1ab5db99747fb0d78b5e4046d041164d2"}, + {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2e92ff20ad5d13266bc999a29ed29a3b5b101c21fdf4b2cf420c09db9fb690e"}, + {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:edbbf06cc2719889470a8d2bf5072bb00f423e12de0eb9ffec946c2c9748e149"}, + {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:77942243ff4d14d90c11b2afd8ee6c039b45a0be4e53fb6fa7f5e4fd0b59da39"}, + {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ab046e9cb902d1f62c9cc0eca055b1d11108bdc271caf7c2171487298f229b56"}, + {file = "pyzmq-25.0.2-cp38-cp38-win32.whl", hash = "sha256:ad761cfbe477236802a7ab2c080d268c95e784fe30cafa7e055aacd1ca877eb0"}, + {file = "pyzmq-25.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:8560756318ec7c4c49d2c341012167e704b5a46d9034905853c3d1ade4f55bee"}, + {file = "pyzmq-25.0.2-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:ab2c056ac503f25a63f6c8c6771373e2a711b98b304614151dfb552d3d6c81f6"}, + {file = "pyzmq-25.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cca8524b61c0eaaa3505382dc9b9a3bc8165f1d6c010fdd1452c224225a26689"}, + {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cfb9f7eae02d3ac42fbedad30006b7407c984a0eb4189a1322241a20944d61e5"}, + {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5eaeae038c68748082137d6896d5c4db7927e9349237ded08ee1bbd94f7361c9"}, + {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a31992a8f8d51663ebf79df0df6a04ffb905063083d682d4380ab8d2c67257c"}, + {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6a979e59d2184a0c8f2ede4b0810cbdd86b64d99d9cc8a023929e40dce7c86cc"}, + {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1f124cb73f1aa6654d31b183810febc8505fd0c597afa127c4f40076be4574e0"}, + {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:65c19a63b4a83ae45d62178b70223adeee5f12f3032726b897431b6553aa25af"}, + {file = "pyzmq-25.0.2-cp39-cp39-win32.whl", hash = "sha256:83d822e8687621bed87404afc1c03d83fa2ce39733d54c2fd52d8829edb8a7ff"}, + {file = "pyzmq-25.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:24683285cc6b7bf18ad37d75b9db0e0fefe58404e7001f1d82bf9e721806daa7"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4a4b4261eb8f9ed71f63b9eb0198dd7c934aa3b3972dac586d0ef502ba9ab08b"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:62ec8d979f56c0053a92b2b6a10ff54b9ec8a4f187db2b6ec31ee3dd6d3ca6e2"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:affec1470351178e892121b3414c8ef7803269f207bf9bef85f9a6dd11cde264"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffc71111433bd6ec8607a37b9211f4ef42e3d3b271c6d76c813669834764b248"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:6fadc60970714d86eff27821f8fb01f8328dd36bebd496b0564a500fe4a9e354"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:269968f2a76c0513490aeb3ba0dc3c77b7c7a11daa894f9d1da88d4a0db09835"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f7c8b8368e84381ae7c57f1f5283b029c888504aaf4949c32e6e6fb256ec9bf0"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:25e6873a70ad5aa31e4a7c41e5e8c709296edef4a92313e1cd5fc87bbd1874e2"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b733076ff46e7db5504c5e7284f04a9852c63214c74688bdb6135808531755a3"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:a6f6ae12478fdc26a6d5fdb21f806b08fa5403cd02fd312e4cb5f72df078f96f"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:67da1c213fbd208906ab3470cfff1ee0048838365135a9bddc7b40b11e6d6c89"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531e36d9fcd66f18de27434a25b51d137eb546931033f392e85674c7a7cea853"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34a6fddd159ff38aa9497b2e342a559f142ab365576284bc8f77cb3ead1f79c5"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b491998ef886662c1f3d49ea2198055a9a536ddf7430b051b21054f2a5831800"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5d496815074e3e3d183fe2c7fcea2109ad67b74084c254481f87b64e04e9a471"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:56a94ab1d12af982b55ca96c6853db6ac85505e820d9458ac76364c1998972f4"}, + {file = "pyzmq-25.0.2.tar.gz", hash = "sha256:6b8c1bbb70e868dc88801aa532cae6bd4e3b5233784692b786f17ad2962e5149"}, ] [package.dependencies] cffi = {version = "*", markers = "implementation_name == \"pypy\""} -[[package]] -name = "referencing" -version = "0.31.0" -description = "JSON Referencing + Python" -category = "main" -optional = false -python-versions = ">=3.8" -files = [ - {file = "referencing-0.31.0-py3-none-any.whl", hash = "sha256:381b11e53dd93babb55696c71cf42aef2d36b8a150c49bf0bc301e36d536c882"}, - {file = "referencing-0.31.0.tar.gz", hash = "sha256:cc28f2c88fbe7b961a7817a0abc034c09a1e36358f82fedb4ffdf29a25398863"}, -] - -[package.dependencies] -attrs = ">=22.2.0" -rpds-py = ">=0.7.0" - [[package]] name = "regex" -version = "2023.10.3" +version = "2023.5.5" description = "Alternative regular expression module, to replace re." -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.6" files = [ - {file = "regex-2023.10.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4c34d4f73ea738223a094d8e0ffd6d2c1a1b4c175da34d6b0de3d8d69bee6bcc"}, - {file = "regex-2023.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8f4e49fc3ce020f65411432183e6775f24e02dff617281094ba6ab079ef0915"}, - {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4cd1bccf99d3ef1ab6ba835308ad85be040e6a11b0977ef7ea8c8005f01a3c29"}, - {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:81dce2ddc9f6e8f543d94b05d56e70d03a0774d32f6cca53e978dc01e4fc75b8"}, - {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c6b4d23c04831e3ab61717a707a5d763b300213db49ca680edf8bf13ab5d91b"}, - {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c15ad0aee158a15e17e0495e1e18741573d04eb6da06d8b84af726cfc1ed02ee"}, - {file = "regex-2023.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6239d4e2e0b52c8bd38c51b760cd870069f0bdf99700a62cd509d7a031749a55"}, - {file = "regex-2023.10.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4a8bf76e3182797c6b1afa5b822d1d5802ff30284abe4599e1247be4fd6b03be"}, - {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9c727bbcf0065cbb20f39d2b4f932f8fa1631c3e01fcedc979bd4f51fe051c5"}, - {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:3ccf2716add72f80714b9a63899b67fa711b654be3fcdd34fa391d2d274ce767"}, - {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:107ac60d1bfdc3edb53be75e2a52aff7481b92817cfdddd9b4519ccf0e54a6ff"}, - {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:00ba3c9818e33f1fa974693fb55d24cdc8ebafcb2e4207680669d8f8d7cca79a"}, - {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f0a47efb1dbef13af9c9a54a94a0b814902e547b7f21acb29434504d18f36e3a"}, - {file = "regex-2023.10.3-cp310-cp310-win32.whl", hash = "sha256:36362386b813fa6c9146da6149a001b7bd063dabc4d49522a1f7aa65b725c7ec"}, - {file = "regex-2023.10.3-cp310-cp310-win_amd64.whl", hash = "sha256:c65a3b5330b54103e7d21cac3f6bf3900d46f6d50138d73343d9e5b2900b2353"}, - {file = "regex-2023.10.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:90a79bce019c442604662d17bf69df99090e24cdc6ad95b18b6725c2988a490e"}, - {file = "regex-2023.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c7964c2183c3e6cce3f497e3a9f49d182e969f2dc3aeeadfa18945ff7bdd7051"}, - {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ef80829117a8061f974b2fda8ec799717242353bff55f8a29411794d635d964"}, - {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5addc9d0209a9afca5fc070f93b726bf7003bd63a427f65ef797a931782e7edc"}, - {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c148bec483cc4b421562b4bcedb8e28a3b84fcc8f0aa4418e10898f3c2c0eb9b"}, - {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d1f21af4c1539051049796a0f50aa342f9a27cde57318f2fc41ed50b0dbc4ac"}, - {file = "regex-2023.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b9ac09853b2a3e0d0082104036579809679e7715671cfbf89d83c1cb2a30f58"}, - {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ebedc192abbc7fd13c5ee800e83a6df252bec691eb2c4bedc9f8b2e2903f5e2a"}, - {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d8a993c0a0ffd5f2d3bda23d0cd75e7086736f8f8268de8a82fbc4bd0ac6791e"}, - {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:be6b7b8d42d3090b6c80793524fa66c57ad7ee3fe9722b258aec6d0672543fd0"}, - {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4023e2efc35a30e66e938de5aef42b520c20e7eda7bb5fb12c35e5d09a4c43f6"}, - {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0d47840dc05e0ba04fe2e26f15126de7c755496d5a8aae4a08bda4dd8d646c54"}, - {file = "regex-2023.10.3-cp311-cp311-win32.whl", hash = "sha256:9145f092b5d1977ec8c0ab46e7b3381b2fd069957b9862a43bd383e5c01d18c2"}, - {file = "regex-2023.10.3-cp311-cp311-win_amd64.whl", hash = "sha256:b6104f9a46bd8743e4f738afef69b153c4b8b592d35ae46db07fc28ae3d5fb7c"}, - {file = "regex-2023.10.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:bff507ae210371d4b1fe316d03433ac099f184d570a1a611e541923f78f05037"}, - {file = "regex-2023.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:be5e22bbb67924dea15039c3282fa4cc6cdfbe0cbbd1c0515f9223186fc2ec5f"}, - {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a992f702c9be9c72fa46f01ca6e18d131906a7180950958f766c2aa294d4b41"}, - {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7434a61b158be563c1362d9071358f8ab91b8d928728cd2882af060481244c9e"}, - {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2169b2dcabf4e608416f7f9468737583ce5f0a6e8677c4efbf795ce81109d7c"}, - {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9e908ef5889cda4de038892b9accc36d33d72fb3e12c747e2799a0e806ec841"}, - {file = "regex-2023.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:12bd4bc2c632742c7ce20db48e0d99afdc05e03f0b4c1af90542e05b809a03d9"}, - {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bc72c231f5449d86d6c7d9cc7cd819b6eb30134bb770b8cfdc0765e48ef9c420"}, - {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bce8814b076f0ce5766dc87d5a056b0e9437b8e0cd351b9a6c4e1134a7dfbda9"}, - {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:ba7cd6dc4d585ea544c1412019921570ebd8a597fabf475acc4528210d7c4a6f"}, - {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b0c7d2f698e83f15228ba41c135501cfe7d5740181d5903e250e47f617eb4292"}, - {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5a8f91c64f390ecee09ff793319f30a0f32492e99f5dc1c72bc361f23ccd0a9a"}, - {file = "regex-2023.10.3-cp312-cp312-win32.whl", hash = "sha256:ad08a69728ff3c79866d729b095872afe1e0557251da4abb2c5faff15a91d19a"}, - {file = "regex-2023.10.3-cp312-cp312-win_amd64.whl", hash = "sha256:39cdf8d141d6d44e8d5a12a8569d5a227f645c87df4f92179bd06e2e2705e76b"}, - {file = "regex-2023.10.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4a3ee019a9befe84fa3e917a2dd378807e423d013377a884c1970a3c2792d293"}, - {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76066d7ff61ba6bf3cb5efe2428fc82aac91802844c022d849a1f0f53820502d"}, - {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfe50b61bab1b1ec260fa7cd91106fa9fece57e6beba05630afe27c71259c59b"}, - {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fd88f373cb71e6b59b7fa597e47e518282455c2734fd4306a05ca219a1991b0"}, - {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3ab05a182c7937fb374f7e946f04fb23a0c0699c0450e9fb02ef567412d2fa3"}, - {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dac37cf08fcf2094159922edc7a2784cfcc5c70f8354469f79ed085f0328ebdf"}, - {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e54ddd0bb8fb626aa1f9ba7b36629564544954fff9669b15da3610c22b9a0991"}, - {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3367007ad1951fde612bf65b0dffc8fd681a4ab98ac86957d16491400d661302"}, - {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:16f8740eb6dbacc7113e3097b0a36065a02e37b47c936b551805d40340fb9971"}, - {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:f4f2ca6df64cbdd27f27b34f35adb640b5d2d77264228554e68deda54456eb11"}, - {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:39807cbcbe406efca2a233884e169d056c35aa7e9f343d4e78665246a332f597"}, - {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:7eece6fbd3eae4a92d7c748ae825cbc1ee41a89bb1c3db05b5578ed3cfcfd7cb"}, - {file = "regex-2023.10.3-cp37-cp37m-win32.whl", hash = "sha256:ce615c92d90df8373d9e13acddd154152645c0dc060871abf6bd43809673d20a"}, - {file = "regex-2023.10.3-cp37-cp37m-win_amd64.whl", hash = "sha256:0f649fa32fe734c4abdfd4edbb8381c74abf5f34bc0b3271ce687b23729299ed"}, - {file = "regex-2023.10.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9b98b7681a9437262947f41c7fac567c7e1f6eddd94b0483596d320092004533"}, - {file = "regex-2023.10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:91dc1d531f80c862441d7b66c4505cd6ea9d312f01fb2f4654f40c6fdf5cc37a"}, - {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82fcc1f1cc3ff1ab8a57ba619b149b907072e750815c5ba63e7aa2e1163384a4"}, - {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7979b834ec7a33aafae34a90aad9f914c41fd6eaa8474e66953f3f6f7cbd4368"}, - {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef71561f82a89af6cfcbee47f0fabfdb6e63788a9258e913955d89fdd96902ab"}, - {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd829712de97753367153ed84f2de752b86cd1f7a88b55a3a775eb52eafe8a94"}, - {file = "regex-2023.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00e871d83a45eee2f8688d7e6849609c2ca2a04a6d48fba3dff4deef35d14f07"}, - {file = "regex-2023.10.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:706e7b739fdd17cb89e1fbf712d9dc21311fc2333f6d435eac2d4ee81985098c"}, - {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:cc3f1c053b73f20c7ad88b0d1d23be7e7b3901229ce89f5000a8399746a6e039"}, - {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6f85739e80d13644b981a88f529d79c5bdf646b460ba190bffcaf6d57b2a9863"}, - {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:741ba2f511cc9626b7561a440f87d658aabb3d6b744a86a3c025f866b4d19e7f"}, - {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e77c90ab5997e85901da85131fd36acd0ed2221368199b65f0d11bca44549711"}, - {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:979c24cbefaf2420c4e377ecd1f165ea08cc3d1fbb44bdc51bccbbf7c66a2cb4"}, - {file = "regex-2023.10.3-cp38-cp38-win32.whl", hash = "sha256:58837f9d221744d4c92d2cf7201c6acd19623b50c643b56992cbd2b745485d3d"}, - {file = "regex-2023.10.3-cp38-cp38-win_amd64.whl", hash = "sha256:c55853684fe08d4897c37dfc5faeff70607a5f1806c8be148f1695be4a63414b"}, - {file = "regex-2023.10.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2c54e23836650bdf2c18222c87f6f840d4943944146ca479858404fedeb9f9af"}, - {file = "regex-2023.10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:69c0771ca5653c7d4b65203cbfc5e66db9375f1078689459fe196fe08b7b4930"}, - {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ac965a998e1388e6ff2e9781f499ad1eaa41e962a40d11c7823c9952c77123e"}, - {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c0e8fae5b27caa34177bdfa5a960c46ff2f78ee2d45c6db15ae3f64ecadde14"}, - {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c56c3d47da04f921b73ff9415fbaa939f684d47293f071aa9cbb13c94afc17d"}, - {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ef1e014eed78ab650bef9a6a9cbe50b052c0aebe553fb2881e0453717573f52"}, - {file = "regex-2023.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d29338556a59423d9ff7b6eb0cb89ead2b0875e08fe522f3e068b955c3e7b59b"}, - {file = "regex-2023.10.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9c6d0ced3c06d0f183b73d3c5920727268d2201aa0fe6d55c60d68c792ff3588"}, - {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:994645a46c6a740ee8ce8df7911d4aee458d9b1bc5639bc968226763d07f00fa"}, - {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:66e2fe786ef28da2b28e222c89502b2af984858091675044d93cb50e6f46d7af"}, - {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:11175910f62b2b8c055f2b089e0fedd694fe2be3941b3e2633653bc51064c528"}, - {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:06e9abc0e4c9ab4779c74ad99c3fc10d3967d03114449acc2c2762ad4472b8ca"}, - {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:fb02e4257376ae25c6dd95a5aec377f9b18c09be6ebdefa7ad209b9137b73d48"}, - {file = "regex-2023.10.3-cp39-cp39-win32.whl", hash = "sha256:3b2c3502603fab52d7619b882c25a6850b766ebd1b18de3df23b2f939360e1bd"}, - {file = "regex-2023.10.3-cp39-cp39-win_amd64.whl", hash = "sha256:adbccd17dcaff65704c856bd29951c58a1bd4b2b0f8ad6b826dbd543fe740988"}, - {file = "regex-2023.10.3.tar.gz", hash = "sha256:3fef4f844d2290ee0ba57addcec17eec9e3df73f10a2748485dfd6a3a188cc0f"}, + {file = "regex-2023.5.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:48c9ec56579d4ba1c88f42302194b8ae2350265cb60c64b7b9a88dcb7fbde309"}, + {file = "regex-2023.5.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02f4541550459c08fdd6f97aa4e24c6f1932eec780d58a2faa2068253df7d6ff"}, + {file = "regex-2023.5.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53e22e4460f0245b468ee645156a4f84d0fc35a12d9ba79bd7d79bdcd2f9629d"}, + {file = "regex-2023.5.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b870b6f632fc74941cadc2a0f3064ed8409e6f8ee226cdfd2a85ae50473aa94"}, + {file = "regex-2023.5.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:171c52e320fe29260da550d81c6b99f6f8402450dc7777ef5ced2e848f3b6f8f"}, + {file = "regex-2023.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aad5524c2aedaf9aa14ef1bc9327f8abd915699dea457d339bebbe2f0d218f86"}, + {file = "regex-2023.5.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a0f874ee8c0bc820e649c900243c6d1e6dc435b81da1492046716f14f1a2a96"}, + {file = "regex-2023.5.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e645c757183ee0e13f0bbe56508598e2d9cd42b8abc6c0599d53b0d0b8dd1479"}, + {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a4c5da39bca4f7979eefcbb36efea04471cd68db2d38fcbb4ee2c6d440699833"}, + {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5e3f4468b8c6fd2fd33c218bbd0a1559e6a6fcf185af8bb0cc43f3b5bfb7d636"}, + {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:59e4b729eae1a0919f9e4c0fc635fbcc9db59c74ad98d684f4877be3d2607dd6"}, + {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ba73a14e9c8f9ac409863543cde3290dba39098fc261f717dc337ea72d3ebad2"}, + {file = "regex-2023.5.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0bbd5dcb19603ab8d2781fac60114fb89aee8494f4505ae7ad141a3314abb1f9"}, + {file = "regex-2023.5.5-cp310-cp310-win32.whl", hash = "sha256:40005cbd383438aecf715a7b47fe1e3dcbc889a36461ed416bdec07e0ef1db66"}, + {file = "regex-2023.5.5-cp310-cp310-win_amd64.whl", hash = "sha256:59597cd6315d3439ed4b074febe84a439c33928dd34396941b4d377692eca810"}, + {file = "regex-2023.5.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8f08276466fedb9e36e5193a96cb944928301152879ec20c2d723d1031cd4ddd"}, + {file = "regex-2023.5.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cd46f30e758629c3ee91713529cfbe107ac50d27110fdcc326a42ce2acf4dafc"}, + {file = "regex-2023.5.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2910502f718828cecc8beff004917dcf577fc5f8f5dd40ffb1ea7612124547b"}, + {file = "regex-2023.5.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:445d6f4fc3bd9fc2bf0416164454f90acab8858cd5a041403d7a11e3356980e8"}, + {file = "regex-2023.5.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18196c16a584619c7c1d843497c069955d7629ad4a3fdee240eb347f4a2c9dbe"}, + {file = "regex-2023.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33d430a23b661629661f1fe8395be2004006bc792bb9fc7c53911d661b69dd7e"}, + {file = "regex-2023.5.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72a28979cc667e5f82ef433db009184e7ac277844eea0f7f4d254b789517941d"}, + {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f764e4dfafa288e2eba21231f455d209f4709436baeebb05bdecfb5d8ddc3d35"}, + {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23d86ad2121b3c4fc78c58f95e19173790e22ac05996df69b84e12da5816cb17"}, + {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:690a17db524ee6ac4a27efc5406530dd90e7a7a69d8360235323d0e5dafb8f5b"}, + {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:1ecf3dcff71f0c0fe3e555201cbe749fa66aae8d18f80d2cc4de8e66df37390a"}, + {file = "regex-2023.5.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:811040d7f3dd9c55eb0d8b00b5dcb7fd9ae1761c454f444fd9f37fe5ec57143a"}, + {file = "regex-2023.5.5-cp311-cp311-win32.whl", hash = "sha256:c8c143a65ce3ca42e54d8e6fcaf465b6b672ed1c6c90022794a802fb93105d22"}, + {file = "regex-2023.5.5-cp311-cp311-win_amd64.whl", hash = "sha256:586a011f77f8a2da4b888774174cd266e69e917a67ba072c7fc0e91878178a80"}, + {file = "regex-2023.5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b6365703e8cf1644b82104cdd05270d1a9f043119a168d66c55684b1b557d008"}, + {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a56c18f21ac98209da9c54ae3ebb3b6f6e772038681d6cb43b8d53da3b09ee81"}, + {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8b942d8b3ce765dbc3b1dad0a944712a89b5de290ce8f72681e22b3c55f3cc8"}, + {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:844671c9c1150fcdac46d43198364034b961bd520f2c4fdaabfc7c7d7138a2dd"}, + {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2ce65bdeaf0a386bb3b533a28de3994e8e13b464ac15e1e67e4603dd88787fa"}, + {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fee0016cc35a8a91e8cc9312ab26a6fe638d484131a7afa79e1ce6165328a135"}, + {file = "regex-2023.5.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:18f05d14f14a812fe9723f13afafefe6b74ca042d99f8884e62dbd34dcccf3e2"}, + {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:941b3f1b2392f0bcd6abf1bc7a322787d6db4e7457be6d1ffd3a693426a755f2"}, + {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:921473a93bcea4d00295799ab929522fc650e85c6b9f27ae1e6bb32a790ea7d3"}, + {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:e2205a81f815b5bb17e46e74cc946c575b484e5f0acfcb805fb252d67e22938d"}, + {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:385992d5ecf1a93cb85adff2f73e0402dd9ac29b71b7006d342cc920816e6f32"}, + {file = "regex-2023.5.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:890a09cb0a62198bff92eda98b2b507305dd3abf974778bae3287f98b48907d3"}, + {file = "regex-2023.5.5-cp36-cp36m-win32.whl", hash = "sha256:821a88b878b6589c5068f4cc2cfeb2c64e343a196bc9d7ac68ea8c2a776acd46"}, + {file = "regex-2023.5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:7918a1b83dd70dc04ab5ed24c78ae833ae8ea228cef84e08597c408286edc926"}, + {file = "regex-2023.5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:338994d3d4ca4cf12f09822e025731a5bdd3a37aaa571fa52659e85ca793fb67"}, + {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a69cf0c00c4d4a929c6c7717fd918414cab0d6132a49a6d8fc3ded1988ed2ea"}, + {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f5e06df94fff8c4c85f98c6487f6636848e1dc85ce17ab7d1931df4a081f657"}, + {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8906669b03c63266b6a7693d1f487b02647beb12adea20f8840c1a087e2dfb5"}, + {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fda3e50abad8d0f48df621cf75adc73c63f7243cbe0e3b2171392b445401550"}, + {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ac2b7d341dc1bd102be849d6dd33b09701223a851105b2754339e390be0627a"}, + {file = "regex-2023.5.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fb2b495dd94b02de8215625948132cc2ea360ae84fe6634cd19b6567709c8ae2"}, + {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:aa7d032c1d84726aa9edeb6accf079b4caa87151ca9fabacef31fa028186c66d"}, + {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:3d45864693351c15531f7e76f545ec35000d50848daa833cead96edae1665559"}, + {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21e90a288e6ba4bf44c25c6a946cb9b0f00b73044d74308b5e0afd190338297c"}, + {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:10250a093741ec7bf74bcd2039e697f519b028518f605ff2aa7ac1e9c9f97423"}, + {file = "regex-2023.5.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:6b8d0c153f07a953636b9cdb3011b733cadd4178123ef728ccc4d5969e67f3c2"}, + {file = "regex-2023.5.5-cp37-cp37m-win32.whl", hash = "sha256:10374c84ee58c44575b667310d5bbfa89fb2e64e52349720a0182c0017512f6c"}, + {file = "regex-2023.5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:9b320677521aabf666cdd6e99baee4fb5ac3996349c3b7f8e7c4eee1c00dfe3a"}, + {file = "regex-2023.5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:afb1c70ec1e594a547f38ad6bf5e3d60304ce7539e677c1429eebab115bce56e"}, + {file = "regex-2023.5.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cf123225945aa58b3057d0fba67e8061c62d14cc8a4202630f8057df70189051"}, + {file = "regex-2023.5.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a99757ad7fe5c8a2bb44829fc57ced11253e10f462233c1255fe03888e06bc19"}, + {file = "regex-2023.5.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a623564d810e7a953ff1357f7799c14bc9beeab699aacc8b7ab7822da1e952b8"}, + {file = "regex-2023.5.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ced02e3bd55e16e89c08bbc8128cff0884d96e7f7a5633d3dc366b6d95fcd1d6"}, + {file = "regex-2023.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1cbe6b5be3b9b698d8cc4ee4dee7e017ad655e83361cd0ea8e653d65e469468"}, + {file = "regex-2023.5.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a6e4b0e0531223f53bad07ddf733af490ba2b8367f62342b92b39b29f72735a"}, + {file = "regex-2023.5.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2e9c4f778514a560a9c9aa8e5538bee759b55f6c1dcd35613ad72523fd9175b8"}, + {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:256f7f4c6ba145f62f7a441a003c94b8b1af78cee2cccacfc1e835f93bc09426"}, + {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:bd7b68fd2e79d59d86dcbc1ccd6e2ca09c505343445daaa4e07f43c8a9cc34da"}, + {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4a5059bd585e9e9504ef9c07e4bc15b0a621ba20504388875d66b8b30a5c4d18"}, + {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:6893544e06bae009916a5658ce7207e26ed17385149f35a3125f5259951f1bbe"}, + {file = "regex-2023.5.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c64d5abe91a3dfe5ff250c6bb267ef00dbc01501518225b45a5f9def458f31fb"}, + {file = "regex-2023.5.5-cp38-cp38-win32.whl", hash = "sha256:7923470d6056a9590247ff729c05e8e0f06bbd4efa6569c916943cb2d9b68b91"}, + {file = "regex-2023.5.5-cp38-cp38-win_amd64.whl", hash = "sha256:4035d6945cb961c90c3e1c1ca2feb526175bcfed44dfb1cc77db4fdced060d3e"}, + {file = "regex-2023.5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:50fd2d9b36938d4dcecbd684777dd12a407add4f9f934f235c66372e630772b0"}, + {file = "regex-2023.5.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d19e57f888b00cd04fc38f5e18d0efbd91ccba2d45039453ab2236e6eec48d4d"}, + {file = "regex-2023.5.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd966475e963122ee0a7118ec9024388c602d12ac72860f6eea119a3928be053"}, + {file = "regex-2023.5.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db09e6c18977a33fea26fe67b7a842f706c67cf8bda1450974d0ae0dd63570df"}, + {file = "regex-2023.5.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6164d4e2a82f9ebd7752a06bd6c504791bedc6418c0196cd0a23afb7f3e12b2d"}, + {file = "regex-2023.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84397d3f750d153ebd7f958efaa92b45fea170200e2df5e0e1fd4d85b7e3f58a"}, + {file = "regex-2023.5.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9c3efee9bb53cbe7b285760c81f28ac80dc15fa48b5fe7e58b52752e642553f1"}, + {file = "regex-2023.5.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:144b5b017646b5a9392a5554a1e5db0000ae637be4971c9747566775fc96e1b2"}, + {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1189fbbb21e2c117fda5303653b61905aeeeea23de4a94d400b0487eb16d2d60"}, + {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f83fe9e10f9d0b6cf580564d4d23845b9d692e4c91bd8be57733958e4c602956"}, + {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:72aa4746993a28c841e05889f3f1b1e5d14df8d3daa157d6001a34c98102b393"}, + {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:de2f780c3242ea114dd01f84848655356af4dd561501896c751d7b885ea6d3a1"}, + {file = "regex-2023.5.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:290fd35219486dfbc00b0de72f455ecdd63e59b528991a6aec9fdfc0ce85672e"}, + {file = "regex-2023.5.5-cp39-cp39-win32.whl", hash = "sha256:732176f5427e72fa2325b05c58ad0b45af341c459910d766f814b0584ac1f9ac"}, + {file = "regex-2023.5.5-cp39-cp39-win_amd64.whl", hash = "sha256:1307aa4daa1cbb23823d8238e1f61292fd07e4e5d8d38a6efff00b67a7cdb764"}, + {file = "regex-2023.5.5.tar.gz", hash = "sha256:7d76a8a1fc9da08296462a18f16620ba73bcbf5909e42383b253ef34d9d5141e"}, ] [[package]] name = "requests" -version = "2.31.0" +version = "2.29.0" description = "Python HTTP for Humans." -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, - {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, + {file = "requests-2.29.0-py3-none-any.whl", hash = "sha256:e8f3c9be120d3333921d213eef078af392fba3933ab7ed2d1cba3b56f2568c3b"}, + {file = "requests-2.29.0.tar.gz", hash = "sha256:f2e34a75f4749019bb0e3effb66683630e4ffeaf75819fb51bebef1bf5aef059"}, ] [package.dependencies] certifi = ">=2017.4.17" charset-normalizer = ">=2,<4" idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" +urllib3 = ">=1.21.1,<1.27" [package.extras] socks = ["PySocks (>=1.5.6,!=1.5.7)"] @@ -4050,14 +3873,13 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "requests-mock" -version = "1.11.0" +version = "1.10.0" description = "Mock out responses from the requests package" -category = "dev" optional = false python-versions = "*" files = [ - {file = "requests-mock-1.11.0.tar.gz", hash = "sha256:ef10b572b489a5f28e09b708697208c4a3b2b89ef80a9f01584340ea357ec3c4"}, - {file = "requests_mock-1.11.0-py2.py3-none-any.whl", hash = "sha256:f7fae383f228633f6bececebdab236c478ace2284d6292c6e7e2867b9ab74d15"}, + {file = "requests-mock-1.10.0.tar.gz", hash = "sha256:59c9c32419a9fb1ae83ec242d98e889c45bd7d7a65d48375cc243ec08441658b"}, + {file = "requests_mock-1.10.0-py2.py3-none-any.whl", hash = "sha256:2fdbb637ad17ee15c06f33d31169e71bf9fe2bdb7bc9da26185be0dd8d842699"}, ] [package.dependencies] @@ -4066,13 +3888,12 @@ six = "*" [package.extras] fixture = ["fixtures"] -test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "testtools"] +test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "testrepository (>=0.0.18)", "testtools"] [[package]] name = "retry-decorator" version = "1.1.1" description = "Retry Decorator" -category = "main" optional = true python-versions = "*" files = [ @@ -4083,7 +3904,6 @@ files = [ name = "rich" version = "12.6.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" -category = "main" optional = false python-versions = ">=3.6.3,<4.0.0" files = [ @@ -4099,120 +3919,10 @@ typing-extensions = {version = ">=4.0.0,<5.0", markers = "python_version < \"3.9 [package.extras] jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] -[[package]] -name = "rpds-py" -version = "0.13.1" -description = "Python bindings to Rust's persistent data structures (rpds)" -category = "main" -optional = false -python-versions = ">=3.8" -files = [ - {file = "rpds_py-0.13.1-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:83feb0f682d75a09ddc11aa37ba5c07dd9b824b22915207f6176ea458474ff75"}, - {file = "rpds_py-0.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fa84bbe22ffa108f91631935c28a623001e335d66e393438258501e618fb0dde"}, - {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e04f8c76b8d5c70695b4e8f1d0b391d8ef91df00ef488c6c1ffb910176459bc6"}, - {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:032c242a595629aacace44128f9795110513ad27217b091e834edec2fb09e800"}, - {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91276caef95556faeb4b8f09fe4439670d3d6206fee78d47ddb6e6de837f0b4d"}, - {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d22f2cb82e0b40e427a74a93c9a4231335bbc548aed79955dde0b64ea7f88146"}, - {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63c9e2794329ef070844ff9bfc012004aeddc0468dc26970953709723f76c8a5"}, - {file = "rpds_py-0.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c797ea56f36c6f248656f0223b11307fdf4a1886f3555eba371f34152b07677f"}, - {file = "rpds_py-0.13.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:82dbcd6463e580bcfb7561cece35046aaabeac5a9ddb775020160b14e6c58a5d"}, - {file = "rpds_py-0.13.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:736817dbbbd030a69a1faf5413a319976c9c8ba8cdcfa98c022d3b6b2e01eca6"}, - {file = "rpds_py-0.13.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1f36a1e80ef4ed1996445698fd91e0d3e54738bf597c9995118b92da537d7a28"}, - {file = "rpds_py-0.13.1-cp310-none-win32.whl", hash = "sha256:4f13d3f6585bd07657a603780e99beda96a36c86acaba841f131e81393958336"}, - {file = "rpds_py-0.13.1-cp310-none-win_amd64.whl", hash = "sha256:545e94c84575057d3d5c62634611858dac859702b1519b6ffc58eca7fb1adfcf"}, - {file = "rpds_py-0.13.1-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:6bfe72b249264cc1ff2f3629be240d7d2fdc778d9d298087cdec8524c91cd11f"}, - {file = "rpds_py-0.13.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edc91c50e17f5cd945d821f0f1af830522dba0c10267c3aab186dc3dbaab8def"}, - {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2eca04a365be380ca1f8fa48b334462e19e3382c0bb7386444d8ca43aa01c481"}, - {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3e3ac5b602fea378243f993d8b707189f9061e55ebb4e56cb9fdef8166060f28"}, - {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dfb5d2ab183c0efe5e7b8917e4eaa2e837aacafad8a69b89aa6bc81550eed857"}, - {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d9793d46d3e6522ae58e9321032827c9c0df1e56cbe5d3de965facb311aed6aa"}, - {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9cd935c0220d012a27c20135c140f9cdcbc6249d5954345c81bfb714071b985c"}, - {file = "rpds_py-0.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:37b08df45f02ff1866043b95096cbe91ac99de05936dd09d6611987a82a3306a"}, - {file = "rpds_py-0.13.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad666a904212aa9a6c77da7dce9d5170008cda76b7776e6731928b3f8a0d40fa"}, - {file = "rpds_py-0.13.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8a6ad8429340e0a4de89353447c6441329def3632e7b2293a7d6e873217d3c2b"}, - {file = "rpds_py-0.13.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7c40851b659d958c5245c1236e34f0d065cc53dca8d978b49a032c8e0adfda6e"}, - {file = "rpds_py-0.13.1-cp311-none-win32.whl", hash = "sha256:4145172ab59b6c27695db6d78d040795f635cba732cead19c78cede74800949a"}, - {file = "rpds_py-0.13.1-cp311-none-win_amd64.whl", hash = "sha256:46a07a258bda12270de02b34c4884f200f864bba3dcd6e3a37fef36a168b859d"}, - {file = "rpds_py-0.13.1-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:ba4432301ad7eeb1b00848cf46fae0e5fecfd18a8cb5fdcf856c67985f79ecc7"}, - {file = "rpds_py-0.13.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d22e0660de24bd8e9ac82f4230a22a5fe4e397265709289d61d5fb333839ba50"}, - {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76a8374b294e4ccb39ccaf11d39a0537ed107534139c00b4393ca3b542cc66e5"}, - {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7d152ec7bb431040af2500e01436c9aa0d993f243346f0594a15755016bf0be1"}, - {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:74a2044b870df7c9360bb3ce7e12f9ddf8e72e49cd3a353a1528cbf166ad2383"}, - {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:960e7e460fda2d0af18c75585bbe0c99f90b8f09963844618a621b804f8c3abe"}, - {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37f79f4f1f06cc96151f4a187528c3fd4a7e1065538a4af9eb68c642365957f7"}, - {file = "rpds_py-0.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cd4ea56c9542ad0091dfdef3e8572ae7a746e1e91eb56c9e08b8d0808b40f1d1"}, - {file = "rpds_py-0.13.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0290712eb5603a725769b5d857f7cf15cf6ca93dda3128065bbafe6fdb709beb"}, - {file = "rpds_py-0.13.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0b70c1f800059c92479dc94dda41288fd6607f741f9b1b8f89a21a86428f6383"}, - {file = "rpds_py-0.13.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3dd5fb7737224e1497c886fb3ca681c15d9c00c76171f53b3c3cc8d16ccfa7fb"}, - {file = "rpds_py-0.13.1-cp312-none-win32.whl", hash = "sha256:74be3b215a5695690a0f1a9f68b1d1c93f8caad52e23242fcb8ba56aaf060281"}, - {file = "rpds_py-0.13.1-cp312-none-win_amd64.whl", hash = "sha256:f47eef55297799956464efc00c74ae55c48a7b68236856d56183fe1ddf866205"}, - {file = "rpds_py-0.13.1-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:e4a45ba34f904062c63049a760790c6a2fa7a4cc4bd160d8af243b12371aaa05"}, - {file = "rpds_py-0.13.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:20147996376be452cd82cd6c17701daba69a849dc143270fa10fe067bb34562a"}, - {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b9535aa22ab023704cfc6533e968f7e420affe802d85e956d8a7b4c0b0b5ea"}, - {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d4fa1eeb9bea6d9b64ac91ec51ee94cc4fc744955df5be393e1c923c920db2b0"}, - {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2b2415d5a7b7ee96aa3a54d4775c1fec140476a17ee12353806297e900eaeddc"}, - {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:577d40a72550eac1386b77b43836151cb61ff6700adacda2ad4d883ca5a0b6f2"}, - {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af2d1648eb625a460eee07d3e1ea3a4a6e84a1fb3a107f6a8e95ac19f7dcce67"}, - {file = "rpds_py-0.13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5b769396eb358d6b55dbf78f3f7ca631ca1b2fe02136faad5af74f0111b4b6b7"}, - {file = "rpds_py-0.13.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:249c8e0055ca597707d71c5ad85fd2a1c8fdb99386a8c6c257e1b47b67a9bec1"}, - {file = "rpds_py-0.13.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:fe30ef31172bdcf946502a945faad110e8fff88c32c4bec9a593df0280e64d8a"}, - {file = "rpds_py-0.13.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:2647192facf63be9ed2d7a49ceb07efe01dc6cfb083bd2cc53c418437400cb99"}, - {file = "rpds_py-0.13.1-cp38-none-win32.whl", hash = "sha256:4011d5c854aa804c833331d38a2b6f6f2fe58a90c9f615afdb7aa7cf9d31f721"}, - {file = "rpds_py-0.13.1-cp38-none-win_amd64.whl", hash = "sha256:7cfae77da92a20f56cf89739a557b76e5c6edc094f6ad5c090b9e15fbbfcd1a4"}, - {file = "rpds_py-0.13.1-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:e9be1f7c5f9673616f875299339984da9447a40e3aea927750c843d6e5e2e029"}, - {file = "rpds_py-0.13.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:839676475ac2ccd1532d36af3d10d290a2ca149b702ed464131e450a767550df"}, - {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a90031658805c63fe488f8e9e7a88b260ea121ba3ee9cdabcece9c9ddb50da39"}, - {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ba9fbc5d6e36bfeb5292530321cc56c4ef3f98048647fabd8f57543c34174ec"}, - {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:08832078767545c5ee12561ce980714e1e4c6619b5b1e9a10248de60cddfa1fd"}, - {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19f5aa7f5078d35ed8e344bcba40f35bc95f9176dddb33fc4f2084e04289fa63"}, - {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80080972e1d000ad0341c7cc58b6855c80bd887675f92871221451d13a975072"}, - {file = "rpds_py-0.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:181ee352691c4434eb1c01802e9daa5edcc1007ff15023a320e2693fed6a661b"}, - {file = "rpds_py-0.13.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d20da6b4c7aa9ee75ad0730beaba15d65157f5beeaca54a038bb968f92bf3ce3"}, - {file = "rpds_py-0.13.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:faa12a9f34671a30ea6bb027f04ec4e1fb8fa3fb3ed030893e729d4d0f3a9791"}, - {file = "rpds_py-0.13.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7cf241dbb50ea71c2e628ab2a32b5bfcd36e199152fc44e5c1edb0b773f1583e"}, - {file = "rpds_py-0.13.1-cp39-none-win32.whl", hash = "sha256:dab979662da1c9fbb464e310c0b06cb5f1d174d09a462553af78f0bfb3e01920"}, - {file = "rpds_py-0.13.1-cp39-none-win_amd64.whl", hash = "sha256:a2b3c79586636f1fa69a7bd59c87c15fca80c0d34b5c003d57f2f326e5276575"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:5967fa631d0ed9f8511dede08bc943a9727c949d05d1efac4ac82b2938024fb7"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8308a8d49d1354278d5c068c888a58d7158a419b2e4d87c7839ed3641498790c"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0580faeb9def6d0beb7aa666294d5604e569c4e24111ada423cf9936768d95c"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2da81c1492291c1a90987d76a47c7b2d310661bf7c93a9de0511e27b796a8b46"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c9a1dc5e898ce30e2f9c0aa57181cddd4532b22b7780549441d6429d22d3b58"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4ae6f423cb7d1c6256b7482025ace2825728f53b7ac58bcd574de6ee9d242c2"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc3179e0815827cf963e634095ae5715ee73a5af61defbc8d6ca79f1bdae1d1d"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0d9f8930092558fd15c9e07198625efb698f7cc00b3dc311c83eeec2540226a8"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:d1d388d2f5f5a6065cf83c54dd12112b7389095669ff395e632003ae8999c6b8"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:08b335fb0c45f0a9e2478a9ece6a1bfb00b6f4c4780f9be3cf36479c5d8dd374"}, - {file = "rpds_py-0.13.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d11afdc5992bbd7af60ed5eb519873690d921425299f51d80aa3099ed49f2bcc"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:8c1f6c8df23be165eb0cb78f305483d00c6827a191e3a38394c658d5b9c80bbd"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:528e2afaa56d815d2601b857644aeb395afe7e59212ab0659906dc29ae68d9a6"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df2af1180b8eeececf4f819d22cc0668bfadadfd038b19a90bd2fb2ee419ec6f"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:88956c993a20201744282362e3fd30962a9d86dc4f1dcf2bdb31fab27821b61f"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee70ee5f4144a45a9e6169000b5b525d82673d5dab9f7587eccc92794814e7ac"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5fd099acaee2325f01281a130a39da08d885e4dedf01b84bf156ec2737d78fe"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9656a09653b18b80764647d585750df2dff8928e03a706763ab40ec8c4872acc"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7ba239bb37663b2b4cd08e703e79e13321512dccd8e5f0e9451d9e53a6b8509a"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:3f55ae773abd96b1de25fc5c3fb356f491bd19116f8f854ba705beffc1ddc3c5"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:f4b15a163448ec79241fb2f1bc5a8ae1a4a304f7a48d948d208a2935b26bf8a5"}, - {file = "rpds_py-0.13.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:1a3b2583c86bbfbf417304eeb13400ce7f8725376dc7d3efbf35dc5d7052ad48"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f1059ca9a51c936c9a8d46fbc2c9a6b4c15ab3f13a97f1ad32f024b39666ba85"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f55601fb58f92e4f4f1d05d80c24cb77505dc42103ddfd63ddfdc51d3da46fa2"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcfd5f91b882eedf8d9601bd21261d6ce0e61a8c66a7152d1f5df08d3f643ab1"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6574f619e8734140d96c59bfa8a6a6e7a3336820ccd1bfd95ffa610673b650a2"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a4b9d3f5c48bbe8d9e3758e498b3c34863f2c9b1ac57a4e6310183740e59c980"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cdd6f8738e1f1d9df5b1603bb03cb30e442710e5672262b95d0f9fcb4edb0dab"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8c2bf286e5d755a075e5e97ba56b3de08cccdad6b323ab0b21cc98875176b03"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b3d4b390ee70ca9263b331ccfaf9819ee20e90dfd0201a295e23eb64a005dbef"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:db8d0f0ad92f74feb61c4e4a71f1d573ef37c22ef4dc19cab93e501bfdad8cbd"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:2abd669a39be69cdfe145927c7eb53a875b157740bf1e2d49e9619fc6f43362e"}, - {file = "rpds_py-0.13.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2c173f529666bab8e3f948b74c6d91afa22ea147e6ebae49a48229d9020a47c4"}, - {file = "rpds_py-0.13.1.tar.gz", hash = "sha256:264f3a5906c62b9df3a00ad35f6da1987d321a053895bd85f9d5c708de5c0fbf"}, -] - [[package]] name = "rsa" version = "4.7.2" description = "Pure-Python RSA implementation" -category = "main" optional = false python-versions = ">=3.5, <4" files = [ @@ -4225,130 +3935,125 @@ pyasn1 = ">=0.1.3" [[package]] name = "ruamel-yaml" -version = "0.17.40" +version = "0.17.22" description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" -category = "main" optional = false python-versions = ">=3" files = [ - {file = "ruamel.yaml-0.17.40-py3-none-any.whl", hash = "sha256:b16b6c3816dff0a93dca12acf5e70afd089fa5acb80604afd1ffa8b465b7722c"}, - {file = "ruamel.yaml-0.17.40.tar.gz", hash = "sha256:6024b986f06765d482b5b07e086cc4b4cd05dd22ddcbc758fa23d54873cf313d"}, + {file = "ruamel.yaml-0.17.22-py3-none-any.whl", hash = "sha256:b4c6e66d103d8af198aa6139580ab735169be4922eb4c515ac121bdabf6f9361"}, + {file = "ruamel.yaml-0.17.22.tar.gz", hash = "sha256:c22ec58aaca5105f771cb8f7ac45ad631b5e8b00454ebe1822d442fb696e9e62"}, ] [package.dependencies] -"ruamel.yaml.clib" = {version = ">=0.2.7", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.13\""} +"ruamel.yaml.clib" = {version = ">=0.2.6", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.11\""} [package.extras] -docs = ["mercurial (>5.7)", "ryd"] +docs = ["ryd"] jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] [[package]] name = "ruamel-yaml-clib" -version = "0.2.8" +version = "0.2.7" description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.5" files = [ - {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b42169467c42b692c19cf539c38d4602069d8c1505e97b86387fcf7afb766e1d"}, - {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-macosx_13_0_arm64.whl", hash = "sha256:07238db9cbdf8fc1e9de2489a4f68474e70dffcb32232db7c08fa61ca0c7c462"}, - {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:d92f81886165cb14d7b067ef37e142256f1c6a90a65cd156b063a43da1708cfd"}, - {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:fff3573c2db359f091e1589c3d7c5fc2f86f5bdb6f24252c2d8e539d4e45f412"}, - {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-win32.whl", hash = "sha256:c69212f63169ec1cfc9bb44723bf2917cbbd8f6191a00ef3410f5a7fe300722d"}, - {file = "ruamel.yaml.clib-0.2.8-cp310-cp310-win_amd64.whl", hash = "sha256:cabddb8d8ead485e255fe80429f833172b4cadf99274db39abc080e068cbcc31"}, - {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:bef08cd86169d9eafb3ccb0a39edb11d8e25f3dae2b28f5c52fd997521133069"}, - {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:b16420e621d26fdfa949a8b4b47ade8810c56002f5389970db4ddda51dbff248"}, - {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:b5edda50e5e9e15e54a6a8a0070302b00c518a9d32accc2346ad6c984aacd279"}, - {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:25c515e350e5b739842fc3228d662413ef28f295791af5e5110b543cf0b57d9b"}, - {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-win32.whl", hash = "sha256:53a300ed9cea38cf5a2a9b069058137c2ca1ce658a874b79baceb8f892f915a7"}, - {file = "ruamel.yaml.clib-0.2.8-cp311-cp311-win_amd64.whl", hash = "sha256:c2a72e9109ea74e511e29032f3b670835f8a59bbdc9ce692c5b4ed91ccf1eedb"}, - {file = "ruamel.yaml.clib-0.2.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:ebc06178e8821efc9692ea7544aa5644217358490145629914d8020042c24aa1"}, - {file = "ruamel.yaml.clib-0.2.8-cp312-cp312-macosx_13_0_arm64.whl", hash = "sha256:edaef1c1200c4b4cb914583150dcaa3bc30e592e907c01117c08b13a07255ec2"}, - {file = "ruamel.yaml.clib-0.2.8-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:7048c338b6c86627afb27faecf418768acb6331fc24cfa56c93e8c9780f815fa"}, - {file = "ruamel.yaml.clib-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d176b57452ab5b7028ac47e7b3cf644bcfdc8cacfecf7e71759f7f51a59e5c92"}, - {file = "ruamel.yaml.clib-0.2.8-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a5aa27bad2bb83670b71683aae140a1f52b0857a2deff56ad3f6c13a017a26ed"}, - {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c58ecd827313af6864893e7af0a3bb85fd529f862b6adbefe14643947cfe2942"}, - {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-macosx_12_0_arm64.whl", hash = "sha256:f481f16baec5290e45aebdc2a5168ebc6d35189ae6fea7a58787613a25f6e875"}, - {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3fcc54cb0c8b811ff66082de1680b4b14cf8a81dce0d4fbf665c2265a81e07a1"}, - {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:7f67a1ee819dc4562d444bbafb135832b0b909f81cc90f7aa00260968c9ca1b3"}, - {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-win32.whl", hash = "sha256:75e1ed13e1f9de23c5607fe6bd1aeaae21e523b32d83bb33918245361e9cc51b"}, - {file = "ruamel.yaml.clib-0.2.8-cp37-cp37m-win_amd64.whl", hash = "sha256:3f215c5daf6a9d7bbed4a0a4f760f3113b10e82ff4c5c44bec20a68c8014f675"}, - {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1b617618914cb00bf5c34d4357c37aa15183fa229b24767259657746c9077615"}, - {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:a6a9ffd280b71ad062eae53ac1659ad86a17f59a0fdc7699fd9be40525153337"}, - {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:665f58bfd29b167039f714c6998178d27ccd83984084c286110ef26b230f259f"}, - {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:700e4ebb569e59e16a976857c8798aee258dceac7c7d6b50cab63e080058df91"}, - {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-win32.whl", hash = "sha256:955eae71ac26c1ab35924203fda6220f84dce57d6d7884f189743e2abe3a9fbe"}, - {file = "ruamel.yaml.clib-0.2.8-cp38-cp38-win_amd64.whl", hash = "sha256:56f4252222c067b4ce51ae12cbac231bce32aee1d33fbfc9d17e5b8d6966c312"}, - {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:03d1162b6d1df1caa3a4bd27aa51ce17c9afc2046c31b0ad60a0a96ec22f8001"}, - {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:bba64af9fa9cebe325a62fa398760f5c7206b215201b0ec825005f1b18b9bccf"}, - {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:9eb5dee2772b0f704ca2e45b1713e4e5198c18f515b52743576d196348f374d3"}, - {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:da09ad1c359a728e112d60116f626cc9f29730ff3e0e7db72b9a2dbc2e4beed5"}, - {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-win32.whl", hash = "sha256:84b554931e932c46f94ab306913ad7e11bba988104c5cff26d90d03f68258cd5"}, - {file = "ruamel.yaml.clib-0.2.8-cp39-cp39-win_amd64.whl", hash = "sha256:25ac8c08322002b06fa1d49d1646181f0b2c72f5cbc15a85e80b4c30a544bb15"}, - {file = "ruamel.yaml.clib-0.2.8.tar.gz", hash = "sha256:beb2e0404003de9a4cab9753a8805a8fe9320ee6673136ed7f04255fe60bb512"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d5859983f26d8cd7bb5c287ef452e8aacc86501487634573d260968f753e1d71"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:debc87a9516b237d0466a711b18b6ebeb17ba9f391eb7f91c649c5c4ec5006c7"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:df5828871e6648db72d1c19b4bd24819b80a755c4541d3409f0f7acd0f335c80"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:efa08d63ef03d079dcae1dfe334f6c8847ba8b645d08df286358b1f5293d24ab"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win32.whl", hash = "sha256:763d65baa3b952479c4e972669f679fe490eee058d5aa85da483ebae2009d231"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win_amd64.whl", hash = "sha256:d000f258cf42fec2b1bbf2863c61d7b8918d31ffee905da62dede869254d3b8a"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:045e0626baf1c52e5527bd5db361bc83180faaba2ff586e763d3d5982a876a9e"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:1a6391a7cabb7641c32517539ca42cf84b87b667bad38b78d4d42dd23e957c81"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:9c7617df90c1365638916b98cdd9be833d31d337dbcd722485597b43c4a215bf"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:41d0f1fa4c6830176eef5b276af04c89320ea616655d01327d5ce65e50575c94"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-win32.whl", hash = "sha256:f6d3d39611ac2e4f62c3128a9eed45f19a6608670c5a2f4f07f24e8de3441d38"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-win_amd64.whl", hash = "sha256:da538167284de58a52109a9b89b8f6a53ff8437dd6dc26d33b57bf6699153122"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:4b3a93bb9bc662fc1f99c5c3ea8e623d8b23ad22f861eb6fce9377ac07ad6072"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_12_0_arm64.whl", hash = "sha256:a234a20ae07e8469da311e182e70ef6b199d0fbeb6c6cc2901204dd87fb867e8"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:15910ef4f3e537eea7fe45f8a5d19997479940d9196f357152a09031c5be59f3"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:370445fd795706fd291ab00c9df38a0caed0f17a6fb46b0f607668ecb16ce763"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-win32.whl", hash = "sha256:ecdf1a604009bd35c674b9225a8fa609e0282d9b896c03dd441a91e5f53b534e"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-win_amd64.whl", hash = "sha256:f34019dced51047d6f70cb9383b2ae2853b7fc4dce65129a5acd49f4f9256646"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2aa261c29a5545adfef9296b7e33941f46aa5bbd21164228e833412af4c9c75f"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_12_0_arm64.whl", hash = "sha256:f01da5790e95815eb5a8a138508c01c758e5f5bc0ce4286c4f7028b8dd7ac3d0"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:40d030e2329ce5286d6b231b8726959ebbe0404c92f0a578c0e2482182e38282"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:c3ca1fbba4ae962521e5eb66d72998b51f0f4d0f608d3c0347a48e1af262efa7"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-win32.whl", hash = "sha256:7bdb4c06b063f6fd55e472e201317a3bb6cdeeee5d5a38512ea5c01e1acbdd93"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-win_amd64.whl", hash = "sha256:be2a7ad8fd8f7442b24323d24ba0b56c51219513cfa45b9ada3b87b76c374d4b"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91a789b4aa0097b78c93e3dc4b40040ba55bef518f84a40d4442f713b4094acb"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:99e77daab5d13a48a4054803d052ff40780278240a902b880dd37a51ba01a307"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:3243f48ecd450eddadc2d11b5feb08aca941b5cd98c9b1db14b2fd128be8c697"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:8831a2cedcd0f0927f788c5bdf6567d9dc9cc235646a434986a852af1cb54b4b"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-win32.whl", hash = "sha256:3110a99e0f94a4a3470ff67fc20d3f96c25b13d24c6980ff841e82bafe827cac"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-win_amd64.whl", hash = "sha256:92460ce908546ab69770b2e576e4f99fbb4ce6ab4b245345a3869a0a0410488f"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:4a4d8d417868d68b979076a9be6a38c676eca060785abaa6709c7b31593c35d1"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-win32.whl", hash = "sha256:d5e51e2901ec2366b79f16c2299a03e74ba4531ddcfacc1416639c557aef0ad8"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-win_amd64.whl", hash = "sha256:184faeaec61dbaa3cace407cffc5819f7b977e75360e8d5ca19461cd851a5fc5"}, + {file = "ruamel.yaml.clib-0.2.7.tar.gz", hash = "sha256:1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497"}, ] [[package]] name = "ruff" -version = "0.1.6" -description = "An extremely fast Python linter and code formatter, written in Rust." -category = "dev" +version = "0.1.2" +description = "An extremely fast Python linter, written in Rust." optional = false python-versions = ">=3.7" files = [ - {file = "ruff-0.1.6-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:88b8cdf6abf98130991cbc9f6438f35f6e8d41a02622cc5ee130a02a0ed28703"}, - {file = "ruff-0.1.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:5c549ed437680b6105a1299d2cd30e4964211606eeb48a0ff7a93ef70b902248"}, - {file = "ruff-0.1.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cf5f701062e294f2167e66d11b092bba7af6a057668ed618a9253e1e90cfd76"}, - {file = "ruff-0.1.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:05991ee20d4ac4bb78385360c684e4b417edd971030ab12a4fbd075ff535050e"}, - {file = "ruff-0.1.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87455a0c1f739b3c069e2f4c43b66479a54dea0276dd5d4d67b091265f6fd1dc"}, - {file = "ruff-0.1.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:683aa5bdda5a48cb8266fcde8eea2a6af4e5700a392c56ea5fb5f0d4bfdc0240"}, - {file = "ruff-0.1.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:137852105586dcbf80c1717facb6781555c4e99f520c9c827bd414fac67ddfb6"}, - {file = "ruff-0.1.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd98138a98d48a1c36c394fd6b84cd943ac92a08278aa8ac8c0fdefcf7138f35"}, - {file = "ruff-0.1.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a0cd909d25f227ac5c36d4e7e681577275fb74ba3b11d288aff7ec47e3ae745"}, - {file = "ruff-0.1.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:e8fd1c62a47aa88a02707b5dd20c5ff20d035d634aa74826b42a1da77861b5ff"}, - {file = "ruff-0.1.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fd89b45d374935829134a082617954120d7a1470a9f0ec0e7f3ead983edc48cc"}, - {file = "ruff-0.1.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:491262006e92f825b145cd1e52948073c56560243b55fb3b4ecb142f6f0e9543"}, - {file = "ruff-0.1.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:ea284789861b8b5ca9d5443591a92a397ac183d4351882ab52f6296b4fdd5462"}, - {file = "ruff-0.1.6-py3-none-win32.whl", hash = "sha256:1610e14750826dfc207ccbcdd7331b6bd285607d4181df9c1c6ae26646d6848a"}, - {file = "ruff-0.1.6-py3-none-win_amd64.whl", hash = "sha256:4558b3e178145491e9bc3b2ee3c4b42f19d19384eaa5c59d10acf6e8f8b57e33"}, - {file = "ruff-0.1.6-py3-none-win_arm64.whl", hash = "sha256:03910e81df0d8db0e30050725a5802441c2022ea3ae4fe0609b76081731accbc"}, - {file = "ruff-0.1.6.tar.gz", hash = "sha256:1b09f29b16c6ead5ea6b097ef2764b42372aebe363722f1605ecbcd2b9207184"}, + {file = "ruff-0.1.2-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:0d3ee66b825b713611f89aa35d16de984f76f26c50982a25d52cd0910dff3923"}, + {file = "ruff-0.1.2-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:f85f850a320ff532b8f93e8d1da6a36ef03698c446357c8c43b46ef90bb321eb"}, + {file = "ruff-0.1.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:809c6d4e45683696d19ca79e4c6bd3b2e9204fe9546923f2eb3b126ec314b0dc"}, + {file = "ruff-0.1.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:46005e4abb268e93cad065244e17e2ea16b6fcb55a5c473f34fbc1fd01ae34cb"}, + {file = "ruff-0.1.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10cdb302f519664d5e2cf954562ac86c9d20ca05855e5b5c2f9d542228f45da4"}, + {file = "ruff-0.1.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f89ebcbe57a1eab7d7b4ceb57ddf0af9ed13eae24e443a7c1dc078000bd8cc6b"}, + {file = "ruff-0.1.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7344eaca057d4c32373c9c3a7afb7274f56040c225b6193dd495fcf69453b436"}, + {file = "ruff-0.1.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dffa25f6e03c4950b6ac6f216bc0f98a4be9719cb0c5260c8e88d1bac36f1683"}, + {file = "ruff-0.1.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42ddaea52cb7ba7c785e8593a7532866c193bc774fe570f0e4b1ccedd95b83c5"}, + {file = "ruff-0.1.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:a8533efda625bbec0bf27da2886bd641dae0c209104f6c39abc4be5b7b22de2a"}, + {file = "ruff-0.1.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:b0b1b82221ba7c50e03b7a86b983157b5d3f4d8d4f16728132bdf02c6d651f77"}, + {file = "ruff-0.1.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6c1362eb9288f8cc95535294cb03bd4665c8cef86ec32745476a4e5c6817034c"}, + {file = "ruff-0.1.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:ffa7ef5ded0563329a35bd5a1cfdae40f05a75c0cc2dd30f00b1320b1fb461fc"}, + {file = "ruff-0.1.2-py3-none-win32.whl", hash = "sha256:6e8073f85e47072256e2e1909f1ae515cf61ff5a4d24730a63b8b4ac24b6704a"}, + {file = "ruff-0.1.2-py3-none-win_amd64.whl", hash = "sha256:b836ddff662a45385948ee0878b0a04c3a260949905ad861a37b931d6ee1c210"}, + {file = "ruff-0.1.2-py3-none-win_arm64.whl", hash = "sha256:b0c42d00db5639dbd5f7f9923c63648682dd197bf5de1151b595160c96172691"}, + {file = "ruff-0.1.2.tar.gz", hash = "sha256:afd4785ae060ce6edcd52436d0c197628a918d6d09e3107a892a1bad6a4c6608"}, ] [[package]] name = "setuptools" -version = "69.0.0" +version = "67.7.2" description = "Easily download, build, install, upgrade, and uninstall Python packages" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "setuptools-69.0.0-py3-none-any.whl", hash = "sha256:eb03b43f23910c5fd0909cb677ad017cd9531f493d27f8b3f5316ff1fb07390e"}, - {file = "setuptools-69.0.0.tar.gz", hash = "sha256:4c65d4f7891e5b046e9146913b87098144de2ca2128fbc10135b8556a6ddd946"}, + {file = "setuptools-67.7.2-py3-none-any.whl", hash = "sha256:23aaf86b85ca52ceb801d32703f12d77517b2556af839621c641fca11287952b"}, + {file = "setuptools-67.7.2.tar.gz", hash = "sha256:f104fa03692a2602fa0fec6c6a9e63b6c8a968de13e17c026957dd1f53d80990"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] -testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.1)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] [[package]] name = "shellingham" -version = "1.5.4" +version = "1.5.0.post1" description = "Tool to Detect Surrounding Shell" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686"}, - {file = "shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de"}, + {file = "shellingham-1.5.0.post1-py2.py3-none-any.whl", hash = "sha256:368bf8c00754fd4f55afb7bbb86e272df77e4dc76ac29dbcbb81a59e9fc15744"}, + {file = "shellingham-1.5.0.post1.tar.gz", hash = "sha256:823bc5fb5c34d60f285b624e7264f4dda254bc803a3774a147bf99c0e3004a28"}, ] [[package]] name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4358,37 +4063,34 @@ files = [ [[package]] name = "slack-sdk" -version = "3.24.0" +version = "3.21.3" description = "The Slack API Platform SDK for Python" -category = "main" optional = false python-versions = ">=3.6.0" files = [ - {file = "slack_sdk-3.24.0-py2.py3-none-any.whl", hash = "sha256:cae64f0177a53d34cca59cc691d4535edd18929843a936b97cea421db9e4fbfe"}, - {file = "slack_sdk-3.24.0.tar.gz", hash = "sha256:741ea5381e65f4407d24ed81203912cbd6bfe807a6704b1d3c5ad346c86000b6"}, + {file = "slack_sdk-3.21.3-py2.py3-none-any.whl", hash = "sha256:de3c07b92479940b61cd68c566f49fbc9974c8f38f661d26244078f3903bb9cc"}, + {file = "slack_sdk-3.21.3.tar.gz", hash = "sha256:20829bdc1a423ec93dac903470975ebf3bc76fd3fd91a4dadc0eeffc940ecb0c"}, ] [package.extras] optional = ["SQLAlchemy (>=1.4,<3)", "aiodns (>1.0)", "aiohttp (>=3.7.3,<4)", "boto3 (<=2)", "websocket-client (>=1,<2)", "websockets (>=10,<11)"] -testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "Werkzeug (<2)", "black (==22.8.0)", "boto3 (<=2)", "click (==8.0.4)", "flake8 (>=5,<6)", "itsdangerous (==1.1.0)", "moto (>=3,<4)", "psutil (>=5,<6)", "pytest (>=6.2.5,<7)", "pytest-asyncio (<1)", "pytest-cov (>=2,<3)"] +testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "Werkzeug (<2)", "black (==22.8.0)", "boto3 (<=2)", "click (==8.0.4)", "databases (>=0.5)", "flake8 (>=5,<6)", "itsdangerous (==1.1.0)", "moto (>=3,<4)", "psutil (>=5,<6)", "pytest (>=6.2.5,<7)", "pytest-asyncio (<1)", "pytest-cov (>=2,<3)"] [[package]] name = "smmap" -version = "5.0.1" +version = "5.0.0" description = "A pure Python implementation of a sliding window memory map manager" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.6" files = [ - {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, - {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, + {file = "smmap-5.0.0-py3-none-any.whl", hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94"}, + {file = "smmap-5.0.0.tar.gz", hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936"}, ] [[package]] name = "sortedcontainers" version = "2.4.0" description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" -category = "dev" optional = false python-versions = "*" files = [ @@ -4398,26 +4100,24 @@ files = [ [[package]] name = "soupsieve" -version = "2.5" +version = "2.4.1" description = "A modern CSS selector implementation for Beautiful Soup." -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, - {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, + {file = "soupsieve-2.4.1-py3-none-any.whl", hash = "sha256:1c1bfee6819544a3447586c889157365a27e10d88cde3ad3da0cf0ddf646feb8"}, + {file = "soupsieve-2.4.1.tar.gz", hash = "sha256:89d12b2d5dfcd2c9e8c22326da9d9aa9cb3dfab0a83a024f05704076ee8d35ea"}, ] [[package]] name = "stack-data" -version = "0.6.3" +version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" -category = "dev" optional = false python-versions = "*" files = [ - {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}, - {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}, + {file = "stack_data-0.6.2-py3-none-any.whl", hash = "sha256:cbb2a53eb64e5785878201a97ed7c7b94883f48b87bfb0bbe8b623c74679e4a8"}, + {file = "stack_data-0.6.2.tar.gz", hash = "sha256:32d2dd0376772d01b6cb9fc996f3c8b57a357089dec328ed4b6553d037eaf815"}, ] [package.dependencies] @@ -4430,14 +4130,13 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] [[package]] name = "stevedore" -version = "5.1.0" +version = "5.0.0" description = "Manage dynamic plugins for Python applications" -category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "stevedore-5.1.0-py3-none-any.whl", hash = "sha256:8cc040628f3cea5d7128f2e76cf486b2251a4e543c7b938f58d9a377f6694a2d"}, - {file = "stevedore-5.1.0.tar.gz", hash = "sha256:a54534acf9b89bc7ed264807013b505bf07f74dbe4bcfa37d32bd063870b087c"}, + {file = "stevedore-5.0.0-py3-none-any.whl", hash = "sha256:bd5a71ff5e5e5f5ea983880e4a1dd1bb47f8feebbb3d95b592398e2f02194771"}, + {file = "stevedore-5.0.0.tar.gz", hash = "sha256:2c428d2338976279e8eb2196f7a94910960d9f7ba2f41f3988511e95ca447021"}, ] [package.dependencies] @@ -4447,7 +4146,6 @@ pbr = ">=2.0.0,<2.1.0 || >2.1.0" name = "tabulate" version = "0.9.0" description = "Pretty-print tabular data" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4462,7 +4160,6 @@ widechars = ["wcwidth"] name = "tenacity" version = "8.2.3" description = "Retry code until it succeeds" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4477,7 +4174,6 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"] name = "toml" version = "0.10.2" description = "Python Library for Tom's Obvious, Minimal Language" -category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4489,7 +4185,6 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4499,118 +4194,96 @@ files = [ [[package]] name = "tornado" -version = "6.3.3" +version = "6.3.1" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "dev" optional = false python-versions = ">= 3.8" files = [ - {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:502fba735c84450974fec147340016ad928d29f1e91f49be168c0a4c18181e1d"}, - {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:805d507b1f588320c26f7f097108eb4023bbaa984d63176d1652e184ba24270a"}, - {file = "tornado-6.3.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bd19ca6c16882e4d37368e0152f99c099bad93e0950ce55e71daed74045908f"}, - {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ac51f42808cca9b3613f51ffe2a965c8525cb1b00b7b2d56828b8045354f76a"}, - {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71a8db65160a3c55d61839b7302a9a400074c9c753040455494e2af74e2501f2"}, - {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:ceb917a50cd35882b57600709dd5421a418c29ddc852da8bcdab1f0db33406b0"}, - {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:7d01abc57ea0dbb51ddfed477dfe22719d376119844e33c661d873bf9c0e4a16"}, - {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:9dc4444c0defcd3929d5c1eb5706cbe1b116e762ff3e0deca8b715d14bf6ec17"}, - {file = "tornado-6.3.3-cp38-abi3-win32.whl", hash = "sha256:65ceca9500383fbdf33a98c0087cb975b2ef3bfb874cb35b8de8740cf7f41bd3"}, - {file = "tornado-6.3.3-cp38-abi3-win_amd64.whl", hash = "sha256:22d3c2fa10b5793da13c807e6fc38ff49a4f6e1e3868b0a6f4164768bb8e20f5"}, - {file = "tornado-6.3.3.tar.gz", hash = "sha256:e7d8db41c0181c80d76c982aacc442c0783a2c54d6400fe028954201a2e032fe"}, + {file = "tornado-6.3.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:db181eb3df8738613ff0a26f49e1b394aade05034b01200a63e9662f347d4415"}, + {file = "tornado-6.3.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:b4e7b956f9b5e6f9feb643ea04f07e7c6b49301e03e0023eedb01fa8cf52f579"}, + {file = "tornado-6.3.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9661aa8bc0e9d83d757cd95b6f6d1ece8ca9fd1ccdd34db2de381e25bf818233"}, + {file = "tornado-6.3.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81c17e0cc396908a5e25dc8e9c5e4936e6dfd544c9290be48bd054c79bcad51e"}, + {file = "tornado-6.3.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a27a1cfa9997923f80bdd962b3aab048ac486ad8cfb2f237964f8ab7f7eb824b"}, + {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d7117f3c7ba5d05813b17a1f04efc8e108a1b811ccfddd9134cc68553c414864"}, + {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:ffdce65a281fd708da5a9def3bfb8f364766847fa7ed806821a69094c9629e8a"}, + {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:90f569a35a8ec19bde53aa596952071f445da678ec8596af763b9b9ce07605e6"}, + {file = "tornado-6.3.1-cp38-abi3-win32.whl", hash = "sha256:3455133b9ff262fd0a75630af0a8ee13564f25fb4fd3d9ce239b8a7d3d027bf8"}, + {file = "tornado-6.3.1-cp38-abi3-win_amd64.whl", hash = "sha256:1285f0691143f7ab97150831455d4db17a267b59649f7bd9700282cba3d5e771"}, + {file = "tornado-6.3.1.tar.gz", hash = "sha256:5e2f49ad371595957c50e42dd7e5c14d64a6843a3cf27352b69c706d1b5918af"}, ] [[package]] name = "tqdm" -version = "4.66.1" +version = "4.65.0" description = "Fast, Extensible Progress Meter" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.1-py3-none-any.whl", hash = "sha256:d302b3c5b53d47bce91fea46679d9c3c6508cf6332229aa1e7d8653723793386"}, - {file = "tqdm-4.66.1.tar.gz", hash = "sha256:d88e651f9db8d8551a62556d3cff9e3034274ca5d66e93197cf2490e2dcb69c7"}, + {file = "tqdm-4.65.0-py3-none-any.whl", hash = "sha256:c4f53a17fe37e132815abceec022631be8ffe1b9381c2e6e30aa70edc99e9671"}, + {file = "tqdm-4.65.0.tar.gz", hash = "sha256:1871fb68a86b8fb3b59ca4cdd3dcccbc7e6d613eeed31f4c332531977b89beb5"}, ] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} [package.extras] -dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +dev = ["py-make (>=0.1.0)", "twine", "wheel"] notebook = ["ipywidgets (>=6)"] slack = ["slack-sdk"] telegram = ["requests"] [[package]] name = "traitlets" -version = "5.13.0" +version = "5.9.0" description = "Traitlets Python configuration system" -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "traitlets-5.13.0-py3-none-any.whl", hash = "sha256:baf991e61542da48fe8aef8b779a9ea0aa38d8a54166ee250d5af5ecf4486619"}, - {file = "traitlets-5.13.0.tar.gz", hash = "sha256:9b232b9430c8f57288c1024b34a8f0251ddcc47268927367a0dd3eeaca40deb5"}, + {file = "traitlets-5.9.0-py3-none-any.whl", hash = "sha256:9e6ec080259b9a5940c797d58b613b5e31441c2257b87c2e795c5228ae80d2d8"}, + {file = "traitlets-5.9.0.tar.gz", hash = "sha256:f6cde21a9c68cf756af02035f72d5a723bf607e862e7be33ece505abf4a3bad9"}, ] [package.extras] docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] -test = ["argcomplete (>=3.0.3)", "mypy (>=1.6.0)", "pre-commit", "pytest (>=7.0,<7.5)", "pytest-mock", "pytest-mypy-testing"] +test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] [[package]] name = "typed-ast" -version = "1.5.5" +version = "1.5.4" description = "a fork of Python 2 and 3 ast modules with type comment support" -category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "typed_ast-1.5.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4bc1efe0ce3ffb74784e06460f01a223ac1f6ab31c6bc0376a21184bf5aabe3b"}, - {file = "typed_ast-1.5.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5f7a8c46a8b333f71abd61d7ab9255440d4a588f34a21f126bbfc95f6049e686"}, - {file = "typed_ast-1.5.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:597fc66b4162f959ee6a96b978c0435bd63791e31e4f410622d19f1686d5e769"}, - {file = "typed_ast-1.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d41b7a686ce653e06c2609075d397ebd5b969d821b9797d029fccd71fdec8e04"}, - {file = "typed_ast-1.5.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5fe83a9a44c4ce67c796a1b466c270c1272e176603d5e06f6afbc101a572859d"}, - {file = "typed_ast-1.5.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d5c0c112a74c0e5db2c75882a0adf3133adedcdbfd8cf7c9d6ed77365ab90a1d"}, - {file = "typed_ast-1.5.5-cp310-cp310-win_amd64.whl", hash = "sha256:e1a976ed4cc2d71bb073e1b2a250892a6e968ff02aa14c1f40eba4f365ffec02"}, - {file = "typed_ast-1.5.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c631da9710271cb67b08bd3f3813b7af7f4c69c319b75475436fcab8c3d21bee"}, - {file = "typed_ast-1.5.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b445c2abfecab89a932b20bd8261488d574591173d07827c1eda32c457358b18"}, - {file = "typed_ast-1.5.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc95ffaaab2be3b25eb938779e43f513e0e538a84dd14a5d844b8f2932593d88"}, - {file = "typed_ast-1.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61443214d9b4c660dcf4b5307f15c12cb30bdfe9588ce6158f4a005baeb167b2"}, - {file = "typed_ast-1.5.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6eb936d107e4d474940469e8ec5b380c9b329b5f08b78282d46baeebd3692dc9"}, - {file = "typed_ast-1.5.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e48bf27022897577d8479eaed64701ecaf0467182448bd95759883300ca818c8"}, - {file = "typed_ast-1.5.5-cp311-cp311-win_amd64.whl", hash = "sha256:83509f9324011c9a39faaef0922c6f720f9623afe3fe220b6d0b15638247206b"}, - {file = "typed_ast-1.5.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:44f214394fc1af23ca6d4e9e744804d890045d1643dd7e8229951e0ef39429b5"}, - {file = "typed_ast-1.5.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:118c1ce46ce58fda78503eae14b7664163aa735b620b64b5b725453696f2a35c"}, - {file = "typed_ast-1.5.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be4919b808efa61101456e87f2d4c75b228f4e52618621c77f1ddcaae15904fa"}, - {file = "typed_ast-1.5.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:fc2b8c4e1bc5cd96c1a823a885e6b158f8451cf6f5530e1829390b4d27d0807f"}, - {file = "typed_ast-1.5.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:16f7313e0a08c7de57f2998c85e2a69a642e97cb32f87eb65fbfe88381a5e44d"}, - {file = "typed_ast-1.5.5-cp36-cp36m-win_amd64.whl", hash = "sha256:2b946ef8c04f77230489f75b4b5a4a6f24c078be4aed241cfabe9cbf4156e7e5"}, - {file = "typed_ast-1.5.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2188bc33d85951ea4ddad55d2b35598b2709d122c11c75cffd529fbc9965508e"}, - {file = "typed_ast-1.5.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0635900d16ae133cab3b26c607586131269f88266954eb04ec31535c9a12ef1e"}, - {file = "typed_ast-1.5.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57bfc3cf35a0f2fdf0a88a3044aafaec1d2f24d8ae8cd87c4f58d615fb5b6311"}, - {file = "typed_ast-1.5.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:fe58ef6a764de7b4b36edfc8592641f56e69b7163bba9f9c8089838ee596bfb2"}, - {file = "typed_ast-1.5.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d09d930c2d1d621f717bb217bf1fe2584616febb5138d9b3e8cdd26506c3f6d4"}, - {file = "typed_ast-1.5.5-cp37-cp37m-win_amd64.whl", hash = "sha256:d40c10326893ecab8a80a53039164a224984339b2c32a6baf55ecbd5b1df6431"}, - {file = "typed_ast-1.5.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fd946abf3c31fb50eee07451a6aedbfff912fcd13cf357363f5b4e834cc5e71a"}, - {file = "typed_ast-1.5.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ed4a1a42df8a3dfb6b40c3d2de109e935949f2f66b19703eafade03173f8f437"}, - {file = "typed_ast-1.5.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:045f9930a1550d9352464e5149710d56a2aed23a2ffe78946478f7b5416f1ede"}, - {file = "typed_ast-1.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:381eed9c95484ceef5ced626355fdc0765ab51d8553fec08661dce654a935db4"}, - {file = "typed_ast-1.5.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:bfd39a41c0ef6f31684daff53befddae608f9daf6957140228a08e51f312d7e6"}, - {file = "typed_ast-1.5.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8c524eb3024edcc04e288db9541fe1f438f82d281e591c548903d5b77ad1ddd4"}, - {file = "typed_ast-1.5.5-cp38-cp38-win_amd64.whl", hash = "sha256:7f58fabdde8dcbe764cef5e1a7fcb440f2463c1bbbec1cf2a86ca7bc1f95184b"}, - {file = "typed_ast-1.5.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:042eb665ff6bf020dd2243307d11ed626306b82812aba21836096d229fdc6a10"}, - {file = "typed_ast-1.5.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:622e4a006472b05cf6ef7f9f2636edc51bda670b7bbffa18d26b255269d3d814"}, - {file = "typed_ast-1.5.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1efebbbf4604ad1283e963e8915daa240cb4bf5067053cf2f0baadc4d4fb51b8"}, - {file = "typed_ast-1.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0aefdd66f1784c58f65b502b6cf8b121544680456d1cebbd300c2c813899274"}, - {file = "typed_ast-1.5.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:48074261a842acf825af1968cd912f6f21357316080ebaca5f19abbb11690c8a"}, - {file = "typed_ast-1.5.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:429ae404f69dc94b9361bb62291885894b7c6fb4640d561179548c849f8492ba"}, - {file = "typed_ast-1.5.5-cp39-cp39-win_amd64.whl", hash = "sha256:335f22ccb244da2b5c296e6f96b06ee9bed46526db0de38d2f0e5a6597b81155"}, - {file = "typed_ast-1.5.5.tar.gz", hash = "sha256:94282f7a354f36ef5dbce0ef3467ebf6a258e370ab33d5b40c249fa996e590dd"}, + {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"}, + {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"}, + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"}, + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"}, + {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"}, + {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"}, + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"}, + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"}, + {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"}, + {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"}, + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"}, + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"}, + {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"}, + {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"}, + {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"}, + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"}, + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"}, + {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"}, + {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"}, + {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"}, + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"}, + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"}, + {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"}, + {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"}, ] [[package]] name = "typer" version = "0.7.0" description = "Typer, build great CLIs. Easy to code. Based on Python type hints." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4632,21 +4305,19 @@ test = ["black (>=22.3.0,<23.0.0)", "coverage (>=6.2,<7.0)", "isort (>=5.0.6,<6. [[package]] name = "types-chardet" -version = "5.0.4.6" +version = "5.0.4.5" description = "Typing stubs for chardet" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-chardet-5.0.4.6.tar.gz", hash = "sha256:caf4c74cd13ccfd8b3313c314aba943b159de562a2573ed03137402b2bb37818"}, - {file = "types_chardet-5.0.4.6-py3-none-any.whl", hash = "sha256:ea832d87e798abf1e4dfc73767807c2b7fee35d0003ae90348aea4ae00fb004d"}, + {file = "types-chardet-5.0.4.5.tar.gz", hash = "sha256:b3a94b9d24752ade941e269eb9327d78eda2c482e2d373ec46deed3a150af773"}, + {file = "types_chardet-5.0.4.5-py3-none-any.whl", hash = "sha256:979543861ed7f1efaf97cea9d5ef6b4ac10373da6aa6853a1946061eafda2173"}, ] [[package]] name = "types-cryptography" version = "3.3.23.2" description = "Typing stubs for cryptography" -category = "main" optional = false python-versions = "*" files = [ @@ -4656,33 +4327,30 @@ files = [ [[package]] name = "types-dateparser" -version = "1.1.4.10" +version = "1.1.4.9" description = "Typing stubs for dateparser" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-dateparser-1.1.4.10.tar.gz", hash = "sha256:f9f147147a897ecb99491f59772ab1be1b7a0842fbc22e85ca37c6995b563b52"}, - {file = "types_dateparser-1.1.4.10-py3-none-any.whl", hash = "sha256:b85c664b349412ef0e09afd56c3c554a1d2fc206e45f1222c1001d23cb2fb66d"}, + {file = "types-dateparser-1.1.4.9.tar.gz", hash = "sha256:506668f024c2136a44e9046ee18dd4279a55df1be5dc55e5c29ab07643a2e18a"}, + {file = "types_dateparser-1.1.4.9-py3-none-any.whl", hash = "sha256:6539e49032151a8445092109f93e61f51b2082a9f295691df13e073c6abf9137"}, ] [[package]] name = "types-decorator" -version = "5.1.8.4" +version = "5.1.8.3" description = "Typing stubs for decorator" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-decorator-5.1.8.4.tar.gz", hash = "sha256:a8c39024634e99834bef146cec2e36c585f47884addf4dc65d6d0b7b1f627517"}, - {file = "types_decorator-5.1.8.4-py3-none-any.whl", hash = "sha256:e411203e0ec0116964dcd491e162a951e4a68cd2d4a946172690bee43c4ebe6e"}, + {file = "types-decorator-5.1.8.3.tar.gz", hash = "sha256:32dd380fc88d0e7a1f27a84ba1ce6e29ba0ad42caaa1b88e7b5d27e61f6e4962"}, + {file = "types_decorator-5.1.8.3-py3-none-any.whl", hash = "sha256:2ad329af49b824db8069ebba9bf03b1cbcafba72eb338be255a1fd902e85edb9"}, ] [[package]] name = "types-emoji" version = "2.1.0.3" description = "Typing stubs for emoji" -category = "main" optional = false python-versions = "*" files = [ @@ -4694,7 +4362,6 @@ files = [ name = "types-filelock" version = "3.2.7" description = "Typing stubs for filelock" -category = "main" optional = false python-versions = "*" files = [ @@ -4706,7 +4373,6 @@ files = [ name = "types-futures" version = "3.3.8" description = "Typing stubs for futures" -category = "main" optional = false python-versions = "*" files = [ @@ -4718,7 +4384,6 @@ files = [ name = "types-ipaddress" version = "1.0.8" description = "Typing stubs for ipaddress" -category = "main" optional = false python-versions = "*" files = [ @@ -4728,21 +4393,19 @@ files = [ [[package]] name = "types-markdown" -version = "3.5.0.3" +version = "3.4.2.8" description = "Typing stubs for Markdown" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = "*" files = [ - {file = "types-Markdown-3.5.0.3.tar.gz", hash = "sha256:9afd38a8f53e19d43de3f8d89742b3674b5736767806ed9356d64ccb09f76439"}, - {file = "types_Markdown-3.5.0.3-py3-none-any.whl", hash = "sha256:2299b9086c695f408a3ebabf820f1fba3b239f1b3bfdbb32bf42d530b42cdd83"}, + {file = "types-Markdown-3.4.2.8.tar.gz", hash = "sha256:f4114d44ebd660edfa5e68366971ff32c44c90dce584158faa1abe6bf8075bd8"}, + {file = "types_Markdown-3.4.2.8-py3-none-any.whl", hash = "sha256:737594dc97dd38da72a2f90f5591c36a17003c913dd629a15145f3b221daf95d"}, ] [[package]] name = "types-mock" version = "4.0.15.2" description = "Typing stubs for mock" -category = "main" optional = false python-versions = "*" files = [ @@ -4754,7 +4417,6 @@ files = [ name = "types-paramiko" version = "2.12.0.1" description = "Typing stubs for paramiko" -category = "main" optional = false python-versions = "*" files = [ @@ -4769,7 +4431,6 @@ types-cryptography = "*" name = "types-pkg-resources" version = "0.1.3" description = "Typing stubs for pkg_resources" -category = "main" optional = false python-versions = "*" files = [ @@ -4781,7 +4442,6 @@ files = [ name = "types-protobuf" version = "4.24.0.4" description = "Typing stubs for protobuf" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4791,33 +4451,30 @@ files = [ [[package]] name = "types-pymysql" -version = "1.1.0.1" +version = "1.0.19.6" description = "Typing stubs for PyMySQL" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-PyMySQL-1.1.0.1.tar.gz", hash = "sha256:72bdaecb88de4a30bc3e1842e1d4522ceb3c4b2e883a6a2a7a7162775dd27b93"}, - {file = "types_PyMySQL-1.1.0.1-py3-none-any.whl", hash = "sha256:9aec9ee0453314d477ef26e5832b4a992bc4cc3557358d62b0fe4af760a7728f"}, + {file = "types-PyMySQL-1.0.19.6.tar.gz", hash = "sha256:797f3da31be54778cd814ae1401940b7501004b5780bef53d5ef6de22138dae9"}, + {file = "types_PyMySQL-1.0.19.6-py3-none-any.whl", hash = "sha256:9cbd61c6b478b9d024e56837f846533af9c86d76aed4fed03ba9fa2687eb402a"}, ] [[package]] name = "types-python-dateutil" -version = "2.8.19.14" +version = "2.8.19.12" description = "Typing stubs for python-dateutil" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-python-dateutil-2.8.19.14.tar.gz", hash = "sha256:1f4f10ac98bb8b16ade9dbee3518d9ace017821d94b057a425b069f834737f4b"}, - {file = "types_python_dateutil-2.8.19.14-py3-none-any.whl", hash = "sha256:f977b8de27787639986b4e28963263fd0e5158942b3ecef91b9335c130cb1ce9"}, + {file = "types-python-dateutil-2.8.19.12.tar.gz", hash = "sha256:355b2cb82b31e556fd18e7b074de7c350c680ab80608f0cc55ba6770d986d67d"}, + {file = "types_python_dateutil-2.8.19.12-py3-none-any.whl", hash = "sha256:fe5b545e678ec13e3ddc83a0eee1545c1b5e2fba4cfc39b276ab6f4e7604a923"}, ] [[package]] name = "types-pytz" version = "2022.7.1.2" description = "Typing stubs for pytz" -category = "main" optional = false python-versions = "*" files = [ @@ -4827,33 +4484,30 @@ files = [ [[package]] name = "types-pyvmomi" -version = "8.0.0.6" +version = "8.0.0.1" description = "Typing stubs for pyvmomi" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-pyvmomi-8.0.0.6.tar.gz", hash = "sha256:494114a0ff30fa9cfe80dbd940308757586c836717803d8cb8af90f4f3190932"}, - {file = "types_pyvmomi-8.0.0.6-py3-none-any.whl", hash = "sha256:f1d95b25ce460cef6c2169053dbacfdab3872a2d30d184f1c3b3b2f0ba94be73"}, + {file = "types-pyvmomi-8.0.0.1.tar.gz", hash = "sha256:f4cc4970cb9d316dcec25f7a46c35654c2aa3452ff03f56f47147a80b88fe0ff"}, + {file = "types_pyvmomi-8.0.0.1-py3-none-any.whl", hash = "sha256:b850080d9076fa256fb7579d7634f15e85d0dedef7b74a170b2b15575ce784fd"}, ] [[package]] name = "types-pyyaml" -version = "6.0.12.12" +version = "6.0.12.9" description = "Typing stubs for PyYAML" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-PyYAML-6.0.12.12.tar.gz", hash = "sha256:334373d392fde0fdf95af5c3f1661885fa10c52167b14593eb856289e1855062"}, - {file = "types_PyYAML-6.0.12.12-py3-none-any.whl", hash = "sha256:c05bc6c158facb0676674b7f11fe3960db4f389718e19e62bd2b84d6205cfd24"}, + {file = "types-PyYAML-6.0.12.9.tar.gz", hash = "sha256:c51b1bd6d99ddf0aa2884a7a328810ebf70a4262c292195d3f4f9a0005f9eeb6"}, + {file = "types_PyYAML-6.0.12.9-py3-none-any.whl", hash = "sha256:5aed5aa66bd2d2e158f75dda22b059570ede988559f030cf294871d3b647e3e8"}, ] [[package]] name = "types-requests" version = "2.28.11" description = "Typing stubs for requests" -category = "main" optional = false python-versions = "*" files = [ @@ -4866,81 +4520,74 @@ types-urllib3 = "<1.27" [[package]] name = "types-setuptools" -version = "67.8.0.0" +version = "67.7.0.1" description = "Typing stubs for setuptools" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-setuptools-67.8.0.0.tar.gz", hash = "sha256:95c9ed61871d6c0e258433373a4e1753c0a7c3627a46f4d4058c7b5a08ab844f"}, - {file = "types_setuptools-67.8.0.0-py3-none-any.whl", hash = "sha256:6df73340d96b238a4188b7b7668814b37e8018168aef1eef94a3b1872e3f60ff"}, + {file = "types-setuptools-67.7.0.1.tar.gz", hash = "sha256:980a2651b2b019809817e1585071596b87fbafcb54433ff3b12445461db23790"}, + {file = "types_setuptools-67.7.0.1-py3-none-any.whl", hash = "sha256:471a4ecf6984ffada63ffcfa884bfcb62718bd2d1a1acf8ee5513ec99789ed5e"}, ] [[package]] name = "types-six" -version = "1.16.21.9" +version = "1.16.21.8" description = "Typing stubs for six" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-six-1.16.21.9.tar.gz", hash = "sha256:746e6c25b8c48b3c8ab9efe7f68022839111de423d35ba4b206b88b12d75f233"}, - {file = "types_six-1.16.21.9-py3-none-any.whl", hash = "sha256:1591a09430a3035326da5fdb71692d0b3cc36b25a440cc5929ca6241f3984705"}, + {file = "types-six-1.16.21.8.tar.gz", hash = "sha256:02a892ff8f423c4c5d15de7c6f4d433e643c863bcbefabd19251b478cbb284ab"}, + {file = "types_six-1.16.21.8-py3-none-any.whl", hash = "sha256:e118ebebb4944af96b4c022b15c0769c065af09126eb148b7797023e905e0652"}, ] [[package]] name = "types-tabulate" -version = "0.9.0.3" +version = "0.9.0.2" description = "Typing stubs for tabulate" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-tabulate-0.9.0.3.tar.gz", hash = "sha256:197651f9d6467193cd166d8500116a6d3a26f2a4eb2db093bc9535ee1c0be55e"}, - {file = "types_tabulate-0.9.0.3-py3-none-any.whl", hash = "sha256:462d1b62e01728416e8277614d6a3eb172d53a8efaf04a04a973ff2dd45238f6"}, + {file = "types-tabulate-0.9.0.2.tar.gz", hash = "sha256:1dd4322a3a146e9073169c74278b8f14a58eb9905ca9db0d2588df408f27cac9"}, + {file = "types_tabulate-0.9.0.2-py3-none-any.whl", hash = "sha256:a2e41cc41b6b46bfaec78f8fd8e03058fda7a31af6f203a4b235f5482f571f6f"}, ] [[package]] name = "types-ujson" -version = "5.8.0.1" +version = "5.7.0.5" description = "Typing stubs for ujson" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-ujson-5.8.0.1.tar.gz", hash = "sha256:2b14388248ab4cd1f5efa8c464761112597ccd57c0d84238f73631abe0e20cfd"}, - {file = "types_ujson-5.8.0.1-py3-none-any.whl", hash = "sha256:1923f373ba5df0eaa4e3fe5c85dbf4c0b475e2cce3f77f5f4b773347ea1a62c9"}, + {file = "types-ujson-5.7.0.5.tar.gz", hash = "sha256:7ff2a6776048e6ad6abc7ebedfd42ae1b6c005512affbae44caf3fb1e96b5d12"}, + {file = "types_ujson-5.7.0.5-py3-none-any.whl", hash = "sha256:be07904f1ba1ba0a8b36315ec42393599fca0eb13892900f7ae322d11ce2c7ad"}, ] [[package]] name = "types-urllib3" -version = "1.26.25.14" +version = "1.26.25.12" description = "Typing stubs for urllib3" -category = "main" optional = false python-versions = "*" files = [ - {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, - {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, + {file = "types-urllib3-1.26.25.12.tar.gz", hash = "sha256:a1557355ce8d350a555d142589f3001903757d2d36c18a66f588d9659bbc917d"}, + {file = "types_urllib3-1.26.25.12-py3-none-any.whl", hash = "sha256:3ba3d3a8ee46e0d5512c6bd0594da4f10b2584b47a470f8422044a2ab462f1df"}, ] [[package]] name = "typing-extensions" -version = "4.8.0" -description = "Backported and Experimental Type Hints for Python 3.8+" -category = "main" +version = "4.5.0" +description = "Backported and Experimental Type Hints for Python 3.7+" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, - {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, + {file = "typing_extensions-4.5.0-py3-none-any.whl", hash = "sha256:fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4"}, + {file = "typing_extensions-4.5.0.tar.gz", hash = "sha256:5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb"}, ] [[package]] name = "tzdata" version = "2023.3" description = "Provider of IANA time zone data" -category = "main" optional = false python-versions = ">=2" files = [ @@ -4950,14 +4597,13 @@ files = [ [[package]] name = "tzlocal" -version = "4.3.1" +version = "4.3" description = "tzinfo object for the local timezone" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "tzlocal-4.3.1-py3-none-any.whl", hash = "sha256:67d7e7f4ce0a98e9dfde2e02474c60fe846ed032d78b555c554c2e9cba472d84"}, - {file = "tzlocal-4.3.1.tar.gz", hash = "sha256:ee32ef8c20803c19a96ed366addd3d4a729ef6309cb5c7359a0cc2eeeb7fa46a"}, + {file = "tzlocal-4.3-py3-none-any.whl", hash = "sha256:b44c4388f3d34f25862cfbb387578a4d70fec417649da694a132f628a23367e2"}, + {file = "tzlocal-4.3.tar.gz", hash = "sha256:3f21d09e1b2aa9f2dacca12da240ca37de3ba5237a93addfd6d593afe9073355"}, ] [package.dependencies] @@ -4970,89 +4616,91 @@ devenv = ["black", "check-manifest", "flake8", "pyroma", "pytest (>=4.3)", "pyte [[package]] name = "ujson" -version = "5.8.0" +version = "5.7.0" description = "Ultra fast JSON encoder and decoder for Python" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "ujson-5.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f4511560d75b15ecb367eef561554959b9d49b6ec3b8d5634212f9fed74a6df1"}, - {file = "ujson-5.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9399eaa5d1931a0ead49dce3ffacbea63f3177978588b956036bfe53cdf6af75"}, - {file = "ujson-5.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4e7bb7eba0e1963f8b768f9c458ecb193e5bf6977090182e2b4f4408f35ac76"}, - {file = "ujson-5.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40931d7c08c4ce99adc4b409ddb1bbb01635a950e81239c2382cfe24251b127a"}, - {file = "ujson-5.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d53039d39de65360e924b511c7ca1a67b0975c34c015dd468fca492b11caa8f7"}, - {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bdf04c6af3852161be9613e458a1fb67327910391de8ffedb8332e60800147a2"}, - {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a70f776bda2e5072a086c02792c7863ba5833d565189e09fabbd04c8b4c3abba"}, - {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f26629ac531d712f93192c233a74888bc8b8212558bd7d04c349125f10199fcf"}, - {file = "ujson-5.8.0-cp310-cp310-win32.whl", hash = "sha256:7ecc33b107ae88405aebdb8d82c13d6944be2331ebb04399134c03171509371a"}, - {file = "ujson-5.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:3b27a8da7a080add559a3b73ec9ebd52e82cc4419f7c6fb7266e62439a055ed0"}, - {file = "ujson-5.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:193349a998cd821483a25f5df30b44e8f495423840ee11b3b28df092ddfd0f7f"}, - {file = "ujson-5.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ddeabbc78b2aed531f167d1e70387b151900bc856d61e9325fcdfefb2a51ad8"}, - {file = "ujson-5.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ce24909a9c25062e60653073dd6d5e6ec9d6ad7ed6e0069450d5b673c854405"}, - {file = "ujson-5.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27a2a3c7620ebe43641e926a1062bc04e92dbe90d3501687957d71b4bdddaec4"}, - {file = "ujson-5.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b852bdf920fe9f84e2a2c210cc45f1b64f763b4f7d01468b33f7791698e455e"}, - {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:20768961a6a706170497129960762ded9c89fb1c10db2989c56956b162e2a8a3"}, - {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e0147d41e9fb5cd174207c4a2895c5e24813204499fd0839951d4c8784a23bf5"}, - {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e3673053b036fd161ae7a5a33358ccae6793ee89fd499000204676baafd7b3aa"}, - {file = "ujson-5.8.0-cp311-cp311-win32.whl", hash = "sha256:a89cf3cd8bf33a37600431b7024a7ccf499db25f9f0b332947fbc79043aad879"}, - {file = "ujson-5.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:3659deec9ab9eb19e8646932bfe6fe22730757c4addbe9d7d5544e879dc1b721"}, - {file = "ujson-5.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:102bf31c56f59538cccdfec45649780ae00657e86247c07edac434cb14d5388c"}, - {file = "ujson-5.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:299a312c3e85edee1178cb6453645217ba23b4e3186412677fa48e9a7f986de6"}, - {file = "ujson-5.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2e385a7679b9088d7bc43a64811a7713cc7c33d032d020f757c54e7d41931ae"}, - {file = "ujson-5.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad24ec130855d4430a682c7a60ca0bc158f8253ec81feed4073801f6b6cb681b"}, - {file = "ujson-5.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16fde596d5e45bdf0d7de615346a102510ac8c405098e5595625015b0d4b5296"}, - {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6d230d870d1ce03df915e694dcfa3f4e8714369cce2346686dbe0bc8e3f135e7"}, - {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9571de0c53db5cbc265945e08f093f093af2c5a11e14772c72d8e37fceeedd08"}, - {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7cba16b26efe774c096a5e822e4f27097b7c81ed6fb5264a2b3f5fd8784bab30"}, - {file = "ujson-5.8.0-cp312-cp312-win32.whl", hash = "sha256:48c7d373ff22366eecfa36a52b9b55b0ee5bd44c2b50e16084aa88b9de038916"}, - {file = "ujson-5.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:5ac97b1e182d81cf395ded620528c59f4177eee024b4b39a50cdd7b720fdeec6"}, - {file = "ujson-5.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2a64cc32bb4a436e5813b83f5aab0889927e5ea1788bf99b930fad853c5625cb"}, - {file = "ujson-5.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e54578fa8838ddc722539a752adfce9372474114f8c127bb316db5392d942f8b"}, - {file = "ujson-5.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9721cd112b5e4687cb4ade12a7b8af8b048d4991227ae8066d9c4b3a6642a582"}, - {file = "ujson-5.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d9707e5aacf63fb919f6237d6490c4e0244c7f8d3dc2a0f84d7dec5db7cb54c"}, - {file = "ujson-5.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0be81bae295f65a6896b0c9030b55a106fb2dec69ef877253a87bc7c9c5308f7"}, - {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ae7f4725c344bf437e9b881019c558416fe84ad9c6b67426416c131ad577df67"}, - {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9ab282d67ef3097105552bf151438b551cc4bedb3f24d80fada830f2e132aeb9"}, - {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:94c7bd9880fa33fcf7f6d7f4cc032e2371adee3c5dba2922b918987141d1bf07"}, - {file = "ujson-5.8.0-cp38-cp38-win32.whl", hash = "sha256:bf5737dbcfe0fa0ac8fa599eceafae86b376492c8f1e4b84e3adf765f03fb564"}, - {file = "ujson-5.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:11da6bed916f9bfacf13f4fc6a9594abd62b2bb115acfb17a77b0f03bee4cfd5"}, - {file = "ujson-5.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:69b3104a2603bab510497ceabc186ba40fef38ec731c0ccaa662e01ff94a985c"}, - {file = "ujson-5.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9249fdefeb021e00b46025e77feed89cd91ffe9b3a49415239103fc1d5d9c29a"}, - {file = "ujson-5.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2873d196725a8193f56dde527b322c4bc79ed97cd60f1d087826ac3290cf9207"}, - {file = "ujson-5.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a4dafa9010c366589f55afb0fd67084acd8added1a51251008f9ff2c3e44042"}, - {file = "ujson-5.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a42baa647a50fa8bed53d4e242be61023bd37b93577f27f90ffe521ac9dc7a3"}, - {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f3554eaadffe416c6f543af442066afa6549edbc34fe6a7719818c3e72ebfe95"}, - {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:fb87decf38cc82bcdea1d7511e73629e651bdec3a43ab40985167ab8449b769c"}, - {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:407d60eb942c318482bbfb1e66be093308bb11617d41c613e33b4ce5be789adc"}, - {file = "ujson-5.8.0-cp39-cp39-win32.whl", hash = "sha256:0fe1b7edaf560ca6ab023f81cbeaf9946a240876a993b8c5a21a1c539171d903"}, - {file = "ujson-5.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:3f9b63530a5392eb687baff3989d0fb5f45194ae5b1ca8276282fb647f8dcdb3"}, - {file = "ujson-5.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:efeddf950fb15a832376c0c01d8d7713479fbeceaed1eaecb2665aa62c305aec"}, - {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d8283ac5d03e65f488530c43d6610134309085b71db4f675e9cf5dff96a8282"}, - {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb0142f6f10f57598655340a3b2c70ed4646cbe674191da195eb0985a9813b83"}, - {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07d459aca895eb17eb463b00441986b021b9312c6c8cc1d06880925c7f51009c"}, - {file = "ujson-5.8.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d524a8c15cfc863705991d70bbec998456a42c405c291d0f84a74ad7f35c5109"}, - {file = "ujson-5.8.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d6f84a7a175c75beecde53a624881ff618e9433045a69fcfb5e154b73cdaa377"}, - {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b748797131ac7b29826d1524db1cc366d2722ab7afacc2ce1287cdafccddbf1f"}, - {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e72ba76313d48a1a3a42e7dc9d1db32ea93fac782ad8dde6f8b13e35c229130"}, - {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f504117a39cb98abba4153bf0b46b4954cc5d62f6351a14660201500ba31fe7f"}, - {file = "ujson-5.8.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a8c91b6f4bf23f274af9002b128d133b735141e867109487d17e344d38b87d94"}, - {file = "ujson-5.8.0.tar.gz", hash = "sha256:78e318def4ade898a461b3d92a79f9441e7e0e4d2ad5419abed4336d702c7425"}, + {file = "ujson-5.7.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5eba5e69e4361ac3a311cf44fa71bc619361b6e0626768a494771aacd1c2f09b"}, + {file = "ujson-5.7.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aae4d9e1b4c7b61780f0a006c897a4a1904f862fdab1abb3ea8f45bd11aa58f3"}, + {file = "ujson-5.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2e43ccdba1cb5c6d3448eadf6fc0dae7be6c77e357a3abc968d1b44e265866d"}, + {file = "ujson-5.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54384ce4920a6d35fa9ea8e580bc6d359e3eb961fa7e43f46c78e3ed162d56ff"}, + {file = "ujson-5.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24ad1aa7fc4e4caa41d3d343512ce68e41411fb92adf7f434a4d4b3749dc8f58"}, + {file = "ujson-5.7.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:afff311e9f065a8f03c3753db7011bae7beb73a66189c7ea5fcb0456b7041ea4"}, + {file = "ujson-5.7.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6e80f0d03e7e8646fc3d79ed2d875cebd4c83846e129737fdc4c2532dbd43d9e"}, + {file = "ujson-5.7.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:137831d8a0db302fb6828ee21c67ad63ac537bddc4376e1aab1c8573756ee21c"}, + {file = "ujson-5.7.0-cp310-cp310-win32.whl", hash = "sha256:7df3fd35ebc14dafeea031038a99232b32f53fa4c3ecddb8bed132a43eefb8ad"}, + {file = "ujson-5.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:af4639f684f425177d09ae409c07602c4096a6287027469157bfb6f83e01448b"}, + {file = "ujson-5.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9b0f2680ce8a70f77f5d70aaf3f013d53e6af6d7058727a35d8ceb4a71cdd4e9"}, + {file = "ujson-5.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:67a19fd8e7d8cc58a169bea99fed5666023adf707a536d8f7b0a3c51dd498abf"}, + {file = "ujson-5.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6abb8e6d8f1ae72f0ed18287245f5b6d40094e2656d1eab6d99d666361514074"}, + {file = "ujson-5.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8cd622c069368d5074bd93817b31bdb02f8d818e57c29e206f10a1f9c6337dd"}, + {file = "ujson-5.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14f9082669f90e18e64792b3fd0bf19f2b15e7fe467534a35ea4b53f3bf4b755"}, + {file = "ujson-5.7.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d7ff6ebb43bc81b057724e89550b13c9a30eda0f29c2f506f8b009895438f5a6"}, + {file = "ujson-5.7.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f7f241488879d91a136b299e0c4ce091996c684a53775e63bb442d1a8e9ae22a"}, + {file = "ujson-5.7.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5593263a7fcfb934107444bcfba9dde8145b282de0ee9f61e285e59a916dda0f"}, + {file = "ujson-5.7.0-cp311-cp311-win32.whl", hash = "sha256:26c2b32b489c393106e9cb68d0a02e1a7b9d05a07429d875c46b94ee8405bdb7"}, + {file = "ujson-5.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:ed24406454bb5a31df18f0a423ae14beb27b28cdfa34f6268e7ebddf23da807e"}, + {file = "ujson-5.7.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18679484e3bf9926342b1c43a3bd640f93a9eeeba19ef3d21993af7b0c44785d"}, + {file = "ujson-5.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ee295761e1c6c30400641f0a20d381633d7622633cdf83a194f3c876a0e4b7e"}, + {file = "ujson-5.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b738282e12a05f400b291966630a98d622da0938caa4bc93cf65adb5f4281c60"}, + {file = "ujson-5.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00343501dbaa5172e78ef0e37f9ebd08040110e11c12420ff7c1f9f0332d939e"}, + {file = "ujson-5.7.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c0d1f7c3908357ee100aa64c4d1cf91edf99c40ac0069422a4fd5fd23b263263"}, + {file = "ujson-5.7.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a5d2f44331cf04689eafac7a6596c71d6657967c07ac700b0ae1c921178645da"}, + {file = "ujson-5.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:16b2254a77b310f118717715259a196662baa6b1f63b1a642d12ab1ff998c3d7"}, + {file = "ujson-5.7.0-cp37-cp37m-win32.whl", hash = "sha256:6faf46fa100b2b89e4db47206cf8a1ffb41542cdd34dde615b2fc2288954f194"}, + {file = "ujson-5.7.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ff0004c3f5a9a6574689a553d1b7819d1a496b4f005a7451f339dc2d9f4cf98c"}, + {file = "ujson-5.7.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:75204a1dd7ec6158c8db85a2f14a68d2143503f4bafb9a00b63fe09d35762a5e"}, + {file = "ujson-5.7.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7312731c7826e6c99cdd3ac503cd9acd300598e7a80bcf41f604fee5f49f566c"}, + {file = "ujson-5.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b9dc5a90e2149643df7f23634fe202fed5ebc787a2a1be95cf23632b4d90651"}, + {file = "ujson-5.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6a6961fc48821d84b1198a09516e396d56551e910d489692126e90bf4887d29"}, + {file = "ujson-5.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b01a9af52a0d5c46b2c68e3f258fdef2eacaa0ce6ae3e9eb97983f5b1166edb6"}, + {file = "ujson-5.7.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b7316d3edeba8a403686cdcad4af737b8415493101e7462a70ff73dd0609eafc"}, + {file = "ujson-5.7.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4ee997799a23227e2319a3f8817ce0b058923dbd31904761b788dc8f53bd3e30"}, + {file = "ujson-5.7.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dda9aa4c33435147262cd2ea87c6b7a1ca83ba9b3933ff7df34e69fee9fced0c"}, + {file = "ujson-5.7.0-cp38-cp38-win32.whl", hash = "sha256:bea8d30e362180aafecabbdcbe0e1f0b32c9fa9e39c38e4af037b9d3ca36f50c"}, + {file = "ujson-5.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:c96e3b872bf883090ddf32cc41957edf819c5336ab0007d0cf3854e61841726d"}, + {file = "ujson-5.7.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6411aea4c94a8e93c2baac096fbf697af35ba2b2ed410b8b360b3c0957a952d3"}, + {file = "ujson-5.7.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d3b3499c55911f70d4e074c626acdb79a56f54262c3c83325ffb210fb03e44d"}, + {file = "ujson-5.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:341f891d45dd3814d31764626c55d7ab3fd21af61fbc99d070e9c10c1190680b"}, + {file = "ujson-5.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f242eec917bafdc3f73a1021617db85f9958df80f267db69c76d766058f7b19"}, + {file = "ujson-5.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3af9f9f22a67a8c9466a32115d9073c72a33ae627b11de6f592df0ee09b98b6"}, + {file = "ujson-5.7.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4a3d794afbf134df3056a813e5c8a935208cddeae975bd4bc0ef7e89c52f0ce0"}, + {file = "ujson-5.7.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:800bf998e78dae655008dd10b22ca8dc93bdcfcc82f620d754a411592da4bbf2"}, + {file = "ujson-5.7.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b5ac3d5c5825e30b438ea92845380e812a476d6c2a1872b76026f2e9d8060fc2"}, + {file = "ujson-5.7.0-cp39-cp39-win32.whl", hash = "sha256:cd90027e6d93e8982f7d0d23acf88c896d18deff1903dd96140613389b25c0dd"}, + {file = "ujson-5.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:523ee146cdb2122bbd827f4dcc2a8e66607b3f665186bce9e4f78c9710b6d8ab"}, + {file = "ujson-5.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e87cec407ec004cf1b04c0ed7219a68c12860123dfb8902ef880d3d87a71c172"}, + {file = "ujson-5.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bab10165db6a7994e67001733f7f2caf3400b3e11538409d8756bc9b1c64f7e8"}, + {file = "ujson-5.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b522be14a28e6ac1cf818599aeff1004a28b42df4ed4d7bc819887b9dac915fc"}, + {file = "ujson-5.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7592f40175c723c032cdbe9fe5165b3b5903604f774ab0849363386e99e1f253"}, + {file = "ujson-5.7.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ed22f9665327a981f288a4f758a432824dc0314e4195a0eaeb0da56a477da94d"}, + {file = "ujson-5.7.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:adf445a49d9a97a5a4c9bb1d652a1528de09dd1c48b29f79f3d66cea9f826bf6"}, + {file = "ujson-5.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64772a53f3c4b6122ed930ae145184ebaed38534c60f3d859d8c3f00911eb122"}, + {file = "ujson-5.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35209cb2c13fcb9d76d249286105b4897b75a5e7f0efb0c0f4b90f222ce48910"}, + {file = "ujson-5.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90712dfc775b2c7a07d4d8e059dd58636bd6ff1776d79857776152e693bddea6"}, + {file = "ujson-5.7.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:0e4e8981c6e7e9e637e637ad8ffe948a09e5434bc5f52ecbb82b4b4cfc092bfb"}, + {file = "ujson-5.7.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:581c945b811a3d67c27566539bfcb9705ea09cb27c4be0002f7a553c8886b817"}, + {file = "ujson-5.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d36a807a24c7d44f71686685ae6fbc8793d784bca1adf4c89f5f780b835b6243"}, + {file = "ujson-5.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b4257307e3662aa65e2644a277ca68783c5d51190ed9c49efebdd3cbfd5fa44"}, + {file = "ujson-5.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea7423d8a2f9e160c5e011119741682414c5b8dce4ae56590a966316a07a4618"}, + {file = "ujson-5.7.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4c592eb91a5968058a561d358d0fef59099ed152cfb3e1cd14eee51a7a93879e"}, + {file = "ujson-5.7.0.tar.gz", hash = "sha256:e788e5d5dcae8f6118ac9b45d0b891a0d55f7ac480eddcb7f07263f2bcf37b23"}, ] [[package]] name = "urllib3" -version = "1.26.18" +version = "1.26.15" description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ - {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, - {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, + {file = "urllib3-1.26.15-py2.py3-none-any.whl", hash = "sha256:aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42"}, + {file = "urllib3-1.26.15.tar.gz", hash = "sha256:8a388717b9476f934a21484e8c8e61875ab60644d29b9b39e11e4b9dc1c6b305"}, ] [package.extras] -brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] @@ -5060,7 +4708,6 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] name = "urwid" version = "2.1.2" description = "A full-featured console (xterm et al.) user interface library" -category = "dev" optional = false python-versions = "*" files = [ @@ -5069,35 +4716,33 @@ files = [ [[package]] name = "virtualenv" -version = "20.24.6" +version = "20.23.0" description = "Virtual Python Environment builder" -category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "virtualenv-20.24.6-py3-none-any.whl", hash = "sha256:520d056652454c5098a00c0f073611ccbea4c79089331f60bf9d7ba247bb7381"}, - {file = "virtualenv-20.24.6.tar.gz", hash = "sha256:02ece4f56fbf939dbbc33c0715159951d6bf14aaf5457b092e4548e1382455af"}, + {file = "virtualenv-20.23.0-py3-none-any.whl", hash = "sha256:6abec7670e5802a528357fdc75b26b9f57d5d92f29c5462ba0fbe45feacc685e"}, + {file = "virtualenv-20.23.0.tar.gz", hash = "sha256:a85caa554ced0c0afbd0d638e7e2d7b5f92d23478d05d17a76daeac8f279f924"}, ] [package.dependencies] -distlib = ">=0.3.7,<1" -filelock = ">=3.12.2,<4" -platformdirs = ">=3.9.1,<4" +distlib = ">=0.3.6,<1" +filelock = ">=3.11,<4" +platformdirs = ">=3.2,<4" [package.extras] -docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] -test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"] +docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=22.12)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.3.1)", "pytest-env (>=0.8.1)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.10)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=67.7.1)", "time-machine (>=2.9)"] [[package]] name = "vulture" -version = "2.10" +version = "2.7" description = "Find dead code" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "vulture-2.10-py2.py3-none-any.whl", hash = "sha256:568a4176db7468d0157817ae3bb1847a19f1ddc629849af487f9d3b279bff77d"}, - {file = "vulture-2.10.tar.gz", hash = "sha256:2a5c3160bffba77595b6e6dfcc412016bd2a09cd4b66cdf7fbba913684899f6f"}, + {file = "vulture-2.7-py2.py3-none-any.whl", hash = "sha256:bccc51064ed76db15a6b58277cea8885936af047f53d2655fb5de575e93d0bca"}, + {file = "vulture-2.7.tar.gz", hash = "sha256:67fb80a014ed9fdb599dd44bb96cb54311032a104106fc2e706ef7a6dad88032"}, ] [package.dependencies] @@ -5105,14 +4750,13 @@ toml = "*" [[package]] name = "wcmatch" -version = "8.5" +version = "8.4.1" description = "Wildcard/glob file name matcher." -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "wcmatch-8.5-py3-none-any.whl", hash = "sha256:14554e409b142edeefab901dc68ad570b30a72a8ab9a79106c5d5e9a6d241bd5"}, - {file = "wcmatch-8.5.tar.gz", hash = "sha256:86c17572d0f75cbf3bcb1a18f3bf2f9e72b39a9c08c9b4a74e991e1882a8efb3"}, + {file = "wcmatch-8.4.1-py3-none-any.whl", hash = "sha256:3476cd107aba7b25ba1d59406938a47dc7eec6cfd0ad09ff77193f21a964dee7"}, + {file = "wcmatch-8.4.1.tar.gz", hash = "sha256:b1f042a899ea4c458b7321da1b5e3331e3e0ec781583434de1301946ceadb943"}, ] [package.dependencies] @@ -5120,43 +4764,40 @@ bracex = ">=2.1.1" [[package]] name = "wcwidth" -version = "0.2.10" +version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" -category = "main" optional = false python-versions = "*" files = [ - {file = "wcwidth-0.2.10-py2.py3-none-any.whl", hash = "sha256:aec5179002dd0f0d40c456026e74a729661c9d468e1ed64405e3a6c2176ca36f"}, - {file = "wcwidth-0.2.10.tar.gz", hash = "sha256:390c7454101092a6a5e43baad8f83de615463af459201709556b6e4b1c861f97"}, + {file = "wcwidth-0.2.6-py2.py3-none-any.whl", hash = "sha256:795b138f6875577cd91bba52baf9e445cd5118fd32723b460e30a0af30ea230e"}, + {file = "wcwidth-0.2.6.tar.gz", hash = "sha256:a5220780a404dbe3353789870978e472cfe477761f06ee55077256e509b156d0"}, ] [[package]] name = "websocket-client" -version = "1.6.4" +version = "1.5.1" description = "WebSocket client for Python with low level API options" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "websocket-client-1.6.4.tar.gz", hash = "sha256:b3324019b3c28572086c4a319f91d1dcd44e6e11cd340232978c684a7650d0df"}, - {file = "websocket_client-1.6.4-py3-none-any.whl", hash = "sha256:084072e0a7f5f347ef2ac3d8698a5e0b4ffbfcab607628cadabc650fc9a83a24"}, + {file = "websocket-client-1.5.1.tar.gz", hash = "sha256:3f09e6d8230892547132177f575a4e3e73cfdf06526e20cc02aa1c3b47184d40"}, + {file = "websocket_client-1.5.1-py3-none-any.whl", hash = "sha256:cdf5877568b7e83aa7cf2244ab56a3213de587bbe0ce9d8b9600fc77b455d89e"}, ] [package.extras] -docs = ["Sphinx (>=6.0)", "sphinx-rtd-theme (>=1.1.0)"] +docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] optional = ["python-socks", "wsaccel"] test = ["websockets"] [[package]] name = "werkzeug" -version = "3.0.1" +version = "2.3.3" description = "The comprehensive WSGI web application library." -category = "dev" optional = false python-versions = ">=3.8" files = [ - {file = "werkzeug-3.0.1-py3-none-any.whl", hash = "sha256:90a285dc0e42ad56b34e696398b8122ee4c681833fb35b8334a095d82c56da10"}, - {file = "werkzeug-3.0.1.tar.gz", hash = "sha256:507e811ecea72b18a404947aded4b3390e1db8f826b494d76550ef45bb3b1dcc"}, + {file = "Werkzeug-2.3.3-py3-none-any.whl", hash = "sha256:4866679a0722de00796a74086238bb3b98d90f423f05de039abb09315487254a"}, + {file = "Werkzeug-2.3.3.tar.gz", hash = "sha256:a987caf1092edc7523edb139edb20c70571c4a8d5eed02e0b547b4739174d091"}, ] [package.dependencies] @@ -5169,7 +4810,6 @@ watchdog = ["watchdog (>=2.3)"] name = "wrapt" version = "1.13.3" description = "Module for decorators, wrappers and monkey patching." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ @@ -5230,7 +4870,6 @@ files = [ name = "wsproto" version = "1.1.0" description = "WebSockets state-machine based protocol implementation" -category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -5243,14 +4882,12 @@ h11 = ">=0.9.0,<1" [[package]] name = "yamlordereddictloader" -version = "0.4.2" -description = "YAML loader and dumper for PyYAML allowing to keep keys order." -category = "main" +version = "0.4.0" +description = "YAML loader and dump for PyYAML allowing to keep keys order." optional = false python-versions = "*" files = [ - {file = "yamlordereddictloader-0.4.2-py3-none-any.whl", hash = "sha256:dc048adb67026786cd24119bd71241f35bc8b0fd37d24b415c37bbc8049f9cd7"}, - {file = "yamlordereddictloader-0.4.2.tar.gz", hash = "sha256:36af2f6210fcff5da4fc4c12e1d815f973dceb41044e795e1f06115d634bca13"}, + {file = "yamlordereddictloader-0.4.0.tar.gz", hash = "sha256:7f30f0b99ea3f877f7cb340c570921fa9d639b7f69cba18be051e27f8de2080e"}, ] [package.dependencies] @@ -5260,7 +4897,6 @@ pyyaml = "*" name = "yarl" version = "1.9.2" description = "Yet another URL library" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -5346,41 +4982,38 @@ multidict = ">=4.0" [[package]] name = "z3-solver" -version = "4.12.2.0" +version = "4.12.1.0" description = "an efficient SMT solver library" -category = "main" optional = false python-versions = "*" files = [ - {file = "z3-solver-4.12.2.0.tar.gz", hash = "sha256:65ab47a0a8ef0bfb80db0670775beb11b32c3c0ae4b35943e44121f4af7ef411"}, - {file = "z3_solver-4.12.2.0-py2.py3-none-macosx_10_16_x86_64.whl", hash = "sha256:127b7c3fcadd61415320ef1b469c22464d3270d25a63c9eb5ee31a0859910826"}, - {file = "z3_solver-4.12.2.0-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:f605de84f87cff04de8339a6d007c80167606a4e6904d6ace8208b066f22f4be"}, - {file = "z3_solver-4.12.2.0-py2.py3-none-manylinux2014_x86_64.whl", hash = "sha256:03921d3021cb6e5dbeaeb94634132a5fbf5403748aa21774efac4047e633af1e"}, - {file = "z3_solver-4.12.2.0-py2.py3-none-win32.whl", hash = "sha256:ea1688e64aada67ec720e2f148c5c41fece2870c55a2901dda36f6b4bb9aec7e"}, - {file = "z3_solver-4.12.2.0-py2.py3-none-win_amd64.whl", hash = "sha256:553af6a989d8943d9a556c4f83ea54b2afc8b4fd58230e97fcc526dc3f97249a"}, + {file = "z3-solver-4.12.1.0.tar.gz", hash = "sha256:c6b7c0f1c595ba47609d0e02b0cc263dc755def9f8d6f51c1943aec040a1eb2d"}, + {file = "z3_solver-4.12.1.0-py2.py3-none-macosx_10_16_x86_64.whl", hash = "sha256:c4f1a53bce12b45698e8e49bd980cd3d3f0298c1ba4cf8c40525af86797565c8"}, + {file = "z3_solver-4.12.1.0-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:553ec3cd0188420bc5f007dd873fb0d87075d1b93808eca8c02324eb3a5f6f68"}, + {file = "z3_solver-4.12.1.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:41cb9ac460af30b193811eebf919d61cf51a8856bbd74b200cbe6b21e3e955e4"}, + {file = "z3_solver-4.12.1.0-py2.py3-none-win32.whl", hash = "sha256:85ff9f59b0f87df4dc0cd52baebb247b8049f2df6aad623151f4c4a21d3d01ac"}, + {file = "z3_solver-4.12.1.0-py2.py3-none-win_amd64.whl", hash = "sha256:aa0e06d42070774a2f89818c412514d41fc84578f32d617de618b214e5ed8154"}, ] [[package]] name = "zipp" -version = "3.17.0" +version = "3.15.0" description = "Backport of pathlib-compatible object wrapper for zip files" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, - {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, + {file = "zipp-3.15.0-py3-none-any.whl", hash = "sha256:48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556"}, + {file = "zipp-3.15.0.tar.gz", hash = "sha256:112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [[package]] name = "zstandard" version = "0.17.0" description = "Zstandard bindings for Python" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -5442,4 +5075,4 @@ build = ["gsutil"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "cd51c8be1024ee0daa7d6abeb2029744e54ca16542ce970a31ae16b164e38a5c" +content-hash = "2c4e3c91958bd142bea129022b98692c9f4e0606f56bc7c0893cb0f58b6d0e70" diff --git a/pyproject.toml b/pyproject.toml index f8e0597112..5072643604 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -121,8 +121,6 @@ requests-mock = "^1.9.3" black = "^22.10.0" ipykernel = "^6.16.1" ruff = "^0.1.2" -pytest-split = "^0.8.1" - [tool.poetry.extras] build = ["gsutil"] From 0ab4f5013e6500fdee70d5d26719e2525752c198 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 21 Nov 2023 09:05:59 +0200 Subject: [PATCH 008/204] install only pytest-split --- poetry.lock | 275 +++++++++++++++++++++++++++++++++++++++++++++++-- pyproject.toml | 1 + 2 files changed, 268 insertions(+), 8 deletions(-) diff --git a/poetry.lock b/poetry.lock index 6014915a55..b97bbdcf6b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,9 +1,10 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. [[package]] name = "aiohttp" version = "3.8.5" description = "Async http client/server framework (asyncio)" +category = "main" optional = true python-versions = ">=3.6" files = [ @@ -112,6 +113,7 @@ speedups = ["Brotli", "aiodns", "cchardet"] name = "aiosignal" version = "1.3.1" description = "aiosignal: a list of registered asynchronous callbacks" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -126,6 +128,7 @@ frozenlist = ">=1.1.0" name = "appnope" version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" +category = "dev" optional = false python-versions = "*" files = [ @@ -137,6 +140,7 @@ files = [ name = "argcomplete" version = "3.0.8" description = "Bash tab completion for argparse" +category = "main" optional = true python-versions = ">=3.6" files = [ @@ -151,6 +155,7 @@ test = ["coverage", "mypy", "pexpect", "ruff", "wheel"] name = "asgiref" version = "3.5.2" description = "ASGI specs, helper code, and adapters" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -165,6 +170,7 @@ tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] name = "astor" version = "0.8.1" description = "Read/rewrite/write Python ASTs" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -176,6 +182,7 @@ files = [ name = "astroid" version = "2.9.3" description = "An abstract syntax tree for Python with inference support." +category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -193,6 +200,7 @@ wrapt = ">=1.11,<1.14" name = "asttokens" version = "2.2.1" description = "Annotate AST trees with source code positions" +category = "dev" optional = false python-versions = "*" files = [ @@ -210,6 +218,7 @@ test = ["astroid", "pytest"] name = "async-timeout" version = "4.0.2" description = "Timeout context manager for asyncio programs" +category = "main" optional = true python-versions = ">=3.6" files = [ @@ -221,6 +230,7 @@ files = [ name = "attrs" version = "23.1.0" description = "Classes Without Boilerplate" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -239,6 +249,7 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte name = "autopep8" version = "1.7.0" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" +category = "main" optional = false python-versions = "*" files = [ @@ -254,6 +265,7 @@ toml = "*" name = "backcall" version = "0.2.0" description = "Specifications for callback functions passed in to an API" +category = "dev" optional = false python-versions = "*" files = [ @@ -265,6 +277,7 @@ files = [ name = "backports-zoneinfo" version = "0.2.1" description = "Backport of the standard library zoneinfo module" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -293,6 +306,7 @@ tzdata = ["tzdata"] name = "bandit" version = "1.7.5" description = "Security oriented static analyser for python code." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -316,6 +330,7 @@ yaml = ["PyYAML"] name = "bcrypt" version = "4.0.1" description = "Modern password hashing for your software and your servers" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -350,6 +365,7 @@ typecheck = ["mypy"] name = "beautifulsoup4" version = "4.12.2" description = "Screen-scraping library" +category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -368,6 +384,7 @@ lxml = ["lxml"] name = "black" version = "22.12.0" description = "The uncompromising code formatter." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -403,6 +420,7 @@ uvloop = ["uvloop (>=0.15.2)"] name = "blinker" version = "1.4" description = "Fast, simple object-to-object and broadcast signaling" +category = "dev" optional = false python-versions = "*" files = [ @@ -413,6 +431,7 @@ files = [ name = "boto" version = "2.49.0" description = "Amazon Web Services Library" +category = "main" optional = true python-versions = "*" files = [ @@ -424,6 +443,7 @@ files = [ name = "bracex" version = "2.3.post1" description = "Bash style brace expander." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -435,6 +455,7 @@ files = [ name = "brotli" version = "1.0.9" description = "Python bindings for the Brotli compression library" +category = "dev" optional = false python-versions = "*" files = [ @@ -526,6 +547,7 @@ files = [ name = "cachetools" version = "5.3.0" description = "Extensible memoizing collections and decorators" +category = "main" optional = false python-versions = "~=3.7" files = [ @@ -537,6 +559,7 @@ files = [ name = "certifi" version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -548,6 +571,7 @@ files = [ name = "cffi" version = "1.15.1" description = "Foreign Function Interface for Python calling C code." +category = "main" optional = false python-versions = "*" files = [ @@ -624,6 +648,7 @@ pycparser = "*" name = "cfgv" version = "3.3.1" description = "Validate configuration and produce human readable error messages." +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -635,6 +660,7 @@ files = [ name = "chardet" version = "5.1.0" description = "Universal encoding detector for Python 3" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -646,6 +672,7 @@ files = [ name = "charset-normalizer" version = "3.1.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +category = "main" optional = false python-versions = ">=3.7.0" files = [ @@ -730,6 +757,7 @@ files = [ name = "click" version = "8.1.3" description = "Composable command line interface toolkit" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -744,6 +772,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -755,6 +784,7 @@ files = [ name = "coloredlogs" version = "15.0.1" description = "Colored terminal output for Python's logging module" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -772,6 +802,7 @@ cron = ["capturer (>=2.4)"] name = "comm" version = "0.1.3" description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -791,6 +822,7 @@ typing = ["mypy (>=0.990)"] name = "commonmark" version = "0.9.1" description = "Python parser for the CommonMark Markdown spec" +category = "main" optional = false python-versions = "*" files = [ @@ -805,6 +837,7 @@ test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"] name = "configargparse" version = "1.5.3" description = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -820,6 +853,7 @@ yaml = ["PyYAML"] name = "configparser" version = "5.3.0" description = "Updated configparser from stdlib for earlier Pythons." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -835,6 +869,7 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec name = "coverage" version = "7.2.5" description = "Code coverage measurement for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -901,6 +936,7 @@ toml = ["tomli"] name = "crcmod" version = "1.7" description = "CRC Generator" +category = "main" optional = true python-versions = "*" files = [ @@ -911,6 +947,7 @@ files = [ name = "cryptography" version = "36.0.2" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -951,6 +988,7 @@ test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0 name = "dateparser" version = "1.1.8" description = "Date parsing library designed to parse dates from HTML pages" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -973,6 +1011,7 @@ langdetect = ["langdetect"] name = "debugpy" version = "1.6.7" description = "An implementation of the Debug Adapter Protocol for Python" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1000,6 +1039,7 @@ files = [ name = "decorator" version = "5.1.1" description = "Decorators for Humans" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1011,6 +1051,7 @@ files = [ name = "demisto-py" version = "3.2.10" description = "A Python library for the Demisto API" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -1023,13 +1064,14 @@ certifi = ">=2017.4.17" python-dateutil = ">=2.5.3" setuptools = ">=21.0.0" six = ">=1.10" -tzlocal = "==4.*" +tzlocal = ">=4.0.0,<5.0.0" urllib3 = ">=1.26.7" [[package]] name = "dictdiffer" version = "0.9.0" description = "Dictdiffer is a library that helps you to diff and patch dictionaries." +category = "main" optional = false python-versions = "*" files = [ @@ -1047,6 +1089,7 @@ tests = ["check-manifest (>=0.42)", "mock (>=1.3.0)", "pytest (==5.4.3)", "pytes name = "dictor" version = "0.1.11" description = "an elegant dictionary and JSON handler" +category = "main" optional = false python-versions = "*" files = [ @@ -1057,6 +1100,7 @@ files = [ name = "distlib" version = "0.3.6" description = "Distribution utilities" +category = "dev" optional = false python-versions = "*" files = [ @@ -1068,6 +1112,7 @@ files = [ name = "docker" version = "5.0.3" description = "A Python library for the Docker Engine API." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1088,6 +1133,7 @@ tls = ["cryptography (>=3.4.7)", "idna (>=2.0.0)", "pyOpenSSL (>=17.5.0)"] name = "docopt" version = "0.6.2" description = "Pythonic argument parser, that will make you smile" +category = "main" optional = false python-versions = "*" files = [ @@ -1098,6 +1144,7 @@ files = [ name = "exceptiongroup" version = "1.1.1" description = "Backport of PEP 654 (exception groups)" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1112,6 +1159,7 @@ test = ["pytest (>=6)"] name = "executing" version = "1.2.0" description = "Get the currently executing AST node of a frame, and other information" +category = "dev" optional = false python-versions = "*" files = [ @@ -1126,6 +1174,7 @@ tests = ["asttokens", "littleutils", "pytest", "rich"] name = "fasteners" version = "0.18" description = "A python package that provides useful locks" +category = "main" optional = true python-versions = ">=3.6" files = [ @@ -1137,6 +1186,7 @@ files = [ name = "filelock" version = "3.12.0" description = "A platform independent file lock." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1152,6 +1202,7 @@ testing = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "diff-cover (>=7.5)", "p name = "flask" version = "2.0.3" description = "A simple framework for building complex web applications." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1173,6 +1224,7 @@ dotenv = ["python-dotenv"] name = "flatten-dict" version = "0.4.2" description = "A flexible utility for flattening and unflattening dict-like objects in Python." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1187,6 +1239,7 @@ six = ">=1.12,<2.0" name = "freezegun" version = "1.2.2" description = "Let your Python tests travel through time" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1201,6 +1254,7 @@ python-dateutil = ">=2.7" name = "frozenlist" version = "1.3.3" description = "A list-like structure which implements collections.abc.MutableSequence" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -1284,6 +1338,7 @@ files = [ name = "future" version = "0.18.3" description = "Clean single-source support for Python 3 and 2" +category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1294,6 +1349,7 @@ files = [ name = "gcs-oauth2-boto-plugin" version = "3.0" description = "Auth plugin allowing use the use of OAuth 2.0 credentials for Google Cloud Storage in the Boto library." +category = "main" optional = true python-versions = "*" files = [ @@ -1317,6 +1373,7 @@ dev = ["freezegun", "mock"] name = "gitdb" version = "4.0.10" description = "Git Object Database" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1331,6 +1388,7 @@ smmap = ">=3.0.1,<6" name = "gitpython" version = "3.1.37" description = "GitPython is a Python library used to interact with Git repositories" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1348,6 +1406,7 @@ test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mypy", "pre-commit" name = "giturlparse" version = "0.10.0" description = "A Git URL parsing module (supports parsing and rewriting)" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1359,6 +1418,7 @@ files = [ name = "google-api-core" version = "2.11.0" description = "Google API client core library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1383,6 +1443,7 @@ grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] name = "google-apitools" version = "0.5.32" description = "client libraries for humans" +category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1404,6 +1465,7 @@ testing = ["mock (>=1.0.1)"] name = "google-auth" version = "2.23.4" description = "Google Authentication Library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1429,6 +1491,7 @@ requests = ["requests (>=2.20.0,<3.0.0.dev0)"] name = "google-cloud-core" version = "2.3.2" description = "Google Cloud API client core library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1437,7 +1500,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.6,<2.0.dev0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev" google-auth = ">=1.25.0,<3.0dev" [package.extras] @@ -1447,6 +1510,7 @@ grpc = ["grpcio (>=1.38.0,<2.0dev)"] name = "google-cloud-secret-manager" version = "2.16.4" description = "Google Cloud Secret Manager API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1455,7 +1519,7 @@ files = [ ] [package.dependencies] -google-api-core = {version = ">=1.34.0,<2.0.dev0 || >=2.11.dev0,<3.0.0dev", extras = ["grpc"]} +google-api-core = {version = ">=1.34.0,<2.0.0 || >=2.11.0,<3.0.0dev", extras = ["grpc"]} grpc-google-iam-v1 = ">=0.12.4,<1.0.0dev" proto-plus = ">=1.22.0,<2.0.0dev" protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" @@ -1464,6 +1528,7 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4 name = "google-cloud-storage" version = "2.13.0" description = "Google Cloud Storage API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1472,7 +1537,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev" google-auth = ">=2.23.3,<3.0dev" google-cloud-core = ">=2.3.0,<3.0dev" google-crc32c = ">=1.0,<2.0dev" @@ -1486,6 +1551,7 @@ protobuf = ["protobuf (<5.0.0dev)"] name = "google-crc32c" version = "1.5.0" description = "A python wrapper of the C library 'Google CRC32C'" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1566,6 +1632,7 @@ testing = ["pytest"] name = "google-reauth" version = "0.1.1" description = "Google Reauth Library" +category = "main" optional = true python-versions = "*" files = [ @@ -1583,6 +1650,7 @@ oauth2client = ["oauth2client (>=2.0.0)"] name = "google-resumable-media" version = "2.6.0" description = "Utilities for Google Media Downloads and Resumable Uploads" +category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -1601,6 +1669,7 @@ requests = ["requests (>=2.18.0,<3.0.0dev)"] name = "googleapis-common-protos" version = "1.59.0" description = "Common protobufs used in Google APIs" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1619,6 +1688,7 @@ grpc = ["grpcio (>=1.44.0,<2.0.0dev)"] name = "grpc-google-iam-v1" version = "0.12.7" description = "IAM API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1635,6 +1705,7 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4 name = "grpcio" version = "1.59.2" description = "HTTP/2-based RPC framework" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1701,6 +1772,7 @@ protobuf = ["grpcio-tools (>=1.59.2)"] name = "grpcio-status" version = "1.48.2" description = "Status proto mapping for gRPC" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1717,6 +1789,7 @@ protobuf = ">=3.12.0" name = "gsutil" version = "5.17" description = "A command line tool for interacting with cloud storage services." +category = "main" optional = true python-versions = "!=2.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" files = [ @@ -1741,6 +1814,7 @@ six = ">=1.12.0" name = "h11" version = "0.13.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1752,6 +1826,7 @@ files = [ name = "h2" version = "4.1.0" description = "HTTP/2 State-Machine based protocol implementation" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1767,6 +1842,7 @@ hyperframe = ">=6.0,<7" name = "hpack" version = "4.0.0" description = "Pure-Python HPACK header compression" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1778,6 +1854,7 @@ files = [ name = "httplib2" version = "0.20.4" description = "A comprehensive HTTP client library." +category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1792,6 +1869,7 @@ pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0 name = "humanfriendly" version = "10.0" description = "Human friendly output for text interfaces using Python" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1806,6 +1884,7 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve name = "hyperframe" version = "6.0.1" description = "HTTP/2 framing layer for Python" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1817,6 +1896,7 @@ files = [ name = "identify" version = "2.5.24" description = "File identification library for Python" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1831,6 +1911,7 @@ license = ["ukkonen"] name = "idna" version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1842,6 +1923,7 @@ files = [ name = "imagesize" version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1853,6 +1935,7 @@ files = [ name = "importlib-metadata" version = "6.6.0" description = "Read metadata from Python packages" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1872,6 +1955,7 @@ testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packag name = "importlib-resources" version = "5.12.0" description = "Read resources from Python packages" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1890,6 +1974,7 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec name = "inflection" version = "0.5.1" description = "A port of Ruby on Rails inflector to Python" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1901,6 +1986,7 @@ files = [ name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1912,6 +1998,7 @@ files = [ name = "ipykernel" version = "6.22.0" description = "IPython Kernel for Jupyter" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -1925,7 +2012,7 @@ comm = ">=0.1.1" debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" @@ -1945,6 +2032,7 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio" name = "ipython" version = "8.12.1" description = "IPython: Productive Interactive Computing" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -1984,6 +2072,7 @@ test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pa name = "isort" version = "5.12.0" description = "A Python utility / library to sort Python imports." +category = "main" optional = false python-versions = ">=3.8.0" files = [ @@ -2001,6 +2090,7 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "itsdangerous" version = "2.1.2" description = "Safely pass data to untrusted environments and back." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2012,6 +2102,7 @@ files = [ name = "jedi" version = "0.18.2" description = "An autocompletion tool for Python that can be used for text editors." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2031,6 +2122,7 @@ testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2048,6 +2140,7 @@ i18n = ["Babel (>=2.7)"] name = "joblib" version = "1.2.0" description = "Lightweight pipelining with Python functions" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2059,6 +2152,7 @@ files = [ name = "json5" version = "0.9.14" description = "A Python implementation of the JSON5 data format." +category = "main" optional = false python-versions = "*" files = [ @@ -2073,6 +2167,7 @@ dev = ["hypothesis"] name = "jsonschema" version = "4.17.3" description = "An implementation of JSON Schema validation for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2094,6 +2189,7 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- name = "junitparser" version = "3.1.0" description = "Manipulates JUnit/xUnit Result XML files" +category = "main" optional = false python-versions = "*" files = [ @@ -2108,6 +2204,7 @@ future = "*" name = "jupyter-client" version = "8.2.0" description = "Jupyter protocol implementation and client libraries" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2117,7 +2214,7 @@ files = [ [package.dependencies] importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" tornado = ">=6.2" @@ -2131,6 +2228,7 @@ test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pyt name = "jupyter-core" version = "5.2.0" description = "Jupyter core package. A base package on which Jupyter projects rely." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2151,6 +2249,7 @@ test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] name = "kaitaistruct" version = "0.9" description = "Kaitai Struct declarative parser generator for binary data: runtime library for Python" +category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -2161,6 +2260,7 @@ files = [ name = "klara" version = "0.6.3" description = "Automatic test case generation and static analysis library" +category = "main" optional = false python-versions = ">=3.6.2,<4.0" files = [ @@ -2178,6 +2278,7 @@ z3-solver = ">=4.8.12,<5.0.0" name = "lazy-object-proxy" version = "1.9.0" description = "A fast and thorough lazy object proxy." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2223,6 +2324,7 @@ files = [ name = "ldap3" version = "2.9.1" description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library" +category = "dev" optional = false python-versions = "*" files = [ @@ -2237,6 +2339,7 @@ pyasn1 = ">=0.4.6" name = "markupsafe" version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2296,6 +2399,7 @@ files = [ name = "matplotlib-inline" version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" +category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2310,6 +2414,7 @@ traitlets = "*" name = "mccabe" version = "0.6.1" description = "McCabe checker, plugin for flake8" +category = "main" optional = false python-versions = "*" files = [ @@ -2321,6 +2426,7 @@ files = [ name = "mergedeep" version = "1.3.4" description = "A deep merge function for 🐍." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2332,6 +2438,7 @@ files = [ name = "mitmproxy" version = "8.0.0" description = "An interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2373,6 +2480,7 @@ dev = ["click (>=7.0,<8.1)", "hypothesis (>=5.8,<7)", "parver (>=0.1,<2.0)", "pd name = "mock" version = "4.0.3" description = "Rolling backport of unittest.mock for all Pythons" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2389,6 +2497,7 @@ test = ["pytest (<5.4)", "pytest-cov"] name = "monotonic" version = "1.6" description = "An implementation of time.monotonic() for Python 2 & < 3.3" +category = "main" optional = true python-versions = "*" files = [ @@ -2400,6 +2509,7 @@ files = [ name = "more-itertools" version = "9.1.0" description = "More routines for operating on iterables, beyond itertools" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2411,6 +2521,7 @@ files = [ name = "msgpack" version = "1.0.5" description = "MessagePack serializer" +category = "dev" optional = false python-versions = "*" files = [ @@ -2483,6 +2594,7 @@ files = [ name = "multidict" version = "6.0.4" description = "multidict implementation" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2566,6 +2678,7 @@ files = [ name = "mypy" version = "0.982" description = "Optional static typing for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2609,6 +2722,7 @@ reports = ["lxml"] name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -2620,6 +2734,7 @@ files = [ name = "neo4j" version = "5.14.1" description = "Neo4j Bolt driver for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2638,6 +2753,7 @@ pyarrow = ["pyarrow (>=1.0.0)"] name = "nest-asyncio" version = "1.5.6" description = "Patch asyncio to allow nested event loops" +category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2649,6 +2765,7 @@ files = [ name = "networkx" version = "2.8.8" description = "Python package for creating and manipulating graphs and networks" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -2667,6 +2784,7 @@ test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] name = "nltk" version = "3.8.1" description = "Natural Language Toolkit" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2692,6 +2810,7 @@ twitter = ["twython"] name = "nodeenv" version = "1.7.0" description = "Node.js virtual environment builder" +category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ @@ -2706,6 +2825,7 @@ setuptools = "*" name = "oauth2client" version = "4.1.3" description = "OAuth 2.0 client library" +category = "main" optional = true python-versions = "*" files = [ @@ -2724,6 +2844,7 @@ six = ">=1.6.1" name = "ordered-set" version = "4.1.0" description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2738,6 +2859,7 @@ dev = ["black", "mypy", "pytest"] name = "orjson" version = "3.8.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" +category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -2798,6 +2920,7 @@ files = [ name = "packaging" version = "23.1" description = "Core utilities for Python packages" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2809,6 +2932,7 @@ files = [ name = "paramiko" version = "2.12.0" description = "SSH2 protocol library" +category = "main" optional = false python-versions = "*" files = [ @@ -2832,6 +2956,7 @@ invoke = ["invoke (>=1.3)"] name = "parso" version = "0.8.3" description = "A Python Parser" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2847,6 +2972,7 @@ testing = ["docopt", "pytest (<6.0.0)"] name = "passlib" version = "1.7.4" description = "comprehensive password hashing framework supporting over 30 schemes" +category = "dev" optional = false python-versions = "*" files = [ @@ -2864,6 +2990,7 @@ totp = ["cryptography"] name = "pathspec" version = "0.11.1" description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2875,6 +3002,7 @@ files = [ name = "pbr" version = "5.11.1" description = "Python Build Reasonableness" +category = "main" optional = false python-versions = ">=2.6" files = [ @@ -2886,6 +3014,7 @@ files = [ name = "pebble" version = "5.0.3" description = "Threading and multiprocessing eye-candy." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2897,6 +3026,7 @@ files = [ name = "pexpect" version = "4.8.0" description = "Pexpect allows easy control of interactive console applications." +category = "dev" optional = false python-versions = "*" files = [ @@ -2911,6 +3041,7 @@ ptyprocess = ">=0.5" name = "pickleshare" version = "0.7.5" description = "Tiny 'shelve'-like database with concurrency support" +category = "dev" optional = false python-versions = "*" files = [ @@ -2922,6 +3053,7 @@ files = [ name = "pkgutil-resolve-name" version = "1.3.10" description = "Resolve a name to an object." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2933,6 +3065,7 @@ files = [ name = "platformdirs" version = "3.5.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2948,6 +3081,7 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest- name = "pluggy" version = "1.0.0" description = "plugin and hook calling mechanisms for python" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2963,6 +3097,7 @@ testing = ["pytest", "pytest-benchmark"] name = "pre-commit" version = "2.21.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2981,6 +3116,7 @@ virtualenv = ">=20.10.0" name = "prettytable" version = "3.7.0" description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2998,6 +3134,7 @@ tests = ["pytest", "pytest-cov", "pytest-lazy-fixture"] name = "prompt-toolkit" version = "3.0.38" description = "Library for building powerful interactive command lines in Python" +category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -3012,6 +3149,7 @@ wcwidth = "*" name = "proto-plus" version = "1.22.3" description = "Beautiful, Pythonic protocol buffers." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3029,6 +3167,7 @@ testing = ["google-api-core[grpc] (>=1.31.5)"] name = "protobuf" version = "3.19.6" description = "Protocol Buffers" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3063,6 +3202,7 @@ files = [ name = "psutil" version = "5.9.5" description = "Cross-platform lib for process and system monitoring in Python." +category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3089,6 +3229,7 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" +category = "dev" optional = false python-versions = "*" files = [ @@ -3100,6 +3241,7 @@ files = [ name = "publicsuffix2" version = "2.20191221" description = "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package." +category = "dev" optional = false python-versions = "*" files = [ @@ -3111,6 +3253,7 @@ files = [ name = "pure-eval" version = "0.2.2" description = "Safely evaluate AST nodes without side effects" +category = "dev" optional = false python-versions = "*" files = [ @@ -3125,6 +3268,7 @@ tests = ["pytest"] name = "pyasn1" version = "0.5.0" description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3136,6 +3280,7 @@ files = [ name = "pyasn1-modules" version = "0.3.0" description = "A collection of ASN.1-based protocols modules" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3150,6 +3295,7 @@ pyasn1 = ">=0.4.6,<0.6.0" name = "pycodestyle" version = "2.10.0" description = "Python style guide checker" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3161,6 +3307,7 @@ files = [ name = "pycparser" version = "2.21" description = "C parser in Python" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3172,6 +3319,7 @@ files = [ name = "pydantic" version = "1.10.7" description = "Data validation and settings management using python type hints" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3224,6 +3372,7 @@ email = ["email-validator (>=1.0.3)"] name = "pydivert" version = "2.1.0" description = "Python binding to windivert driver" +category = "dev" optional = false python-versions = "*" files = [ @@ -3239,6 +3388,7 @@ test = ["codecov (>=2.0.5)", "hypothesis (>=3.5.3)", "mock (>=1.0.1)", "pytest ( name = "pygments" version = "2.15.1" description = "Pygments is a syntax highlighting package written in Python." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3253,6 +3403,7 @@ plugins = ["importlib-metadata"] name = "pykwalify" version = "1.8.0" description = "Python lib/cli for JSON/YAML schema validation" +category = "main" optional = false python-versions = "*" files = [ @@ -3269,6 +3420,7 @@ python-dateutil = ">=2.8.0" name = "pylint" version = "2.12.2" description = "python code static checker" +category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -3289,6 +3441,7 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\"" name = "pynacl" version = "1.5.0" description = "Python binding to the Networking and Cryptography (NaCl) library" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3315,6 +3468,7 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] name = "pyopenssl" version = "22.0.0" description = "Python wrapper module around the OpenSSL library" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3333,6 +3487,7 @@ test = ["flaky", "pretend", "pytest (>=3.0.1)"] name = "pyparsing" version = "3.0.9" description = "pyparsing module - Classes and methods to define and execute parsing grammars" +category = "main" optional = false python-versions = ">=3.6.8" files = [ @@ -3347,6 +3502,7 @@ diagrams = ["jinja2", "railroad-diagrams"] name = "pypdf2" version = "1.28.6" description = "A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files" +category = "main" optional = false python-versions = ">=2.7" files = [ @@ -3358,6 +3514,7 @@ files = [ name = "pyperclip" version = "1.8.2" description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" +category = "dev" optional = false python-versions = "*" files = [ @@ -3368,6 +3525,7 @@ files = [ name = "pyreadline3" version = "3.4.1" description = "A python implementation of GNU readline." +category = "main" optional = false python-versions = "*" files = [ @@ -3379,6 +3537,7 @@ files = [ name = "pyrsistent" version = "0.19.3" description = "Persistent/Functional/Immutable data structures" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3415,6 +3574,7 @@ files = [ name = "pyspellchecker" version = "0.6.3" description = "Pure python spell checker based on work by Peter Norvig" +category = "main" optional = false python-versions = "*" files = [ @@ -3426,6 +3586,7 @@ files = [ name = "pytest" version = "7.3.1" description = "pytest: simple powerful testing with Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3448,6 +3609,7 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no name = "pytest-cov" version = "4.0.0" description = "Pytest plugin for measuring coverage." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3466,6 +3628,7 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-datadir-ng" version = "1.1.1" description = "Fixtures for pytest allowing test functions/methods to easily retrieve test resources from the local filesystem." +category = "dev" optional = false python-versions = "*" files = [ @@ -3480,6 +3643,7 @@ pytest = "*" name = "pytest-freezegun" version = "0.4.2" description = "Wrap tests with fixtures in freeze_time" +category = "main" optional = false python-versions = "*" files = [ @@ -3495,6 +3659,7 @@ pytest = ">=3.0.0" name = "pytest-mock" version = "3.10.0" description = "Thin-wrapper around the mock package for easier use with pytest" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3508,10 +3673,26 @@ 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." +category = "dev" +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" description = "A plugin to fake subprocess for pytest" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3531,6 +3712,7 @@ test = ["Pygments (>=2.0)", "anyio", "coverage", "docutils (>=0.12)", "pytest (> name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ @@ -3545,6 +3727,7 @@ six = ">=1.5" name = "python-dotenv" version = "0.20.0" description = "Read key-value pairs from a .env file and set them as environment variables" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3559,6 +3742,7 @@ cli = ["click (>=5.0)"] name = "pytz" version = "2023.3" description = "World timezone definitions, modern and historical" +category = "main" optional = false python-versions = "*" files = [ @@ -3570,6 +3754,7 @@ files = [ name = "pytz-deprecation-shim" version = "0.1.0.post0" description = "Shims to make deprecation of pytz easier" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3585,6 +3770,7 @@ tzdata = {version = "*", markers = "python_version >= \"3.6\""} name = "pyu2f" version = "0.1.5" description = "U2F host library for interacting with a U2F device over USB." +category = "main" optional = true python-versions = "*" files = [ @@ -3598,6 +3784,7 @@ six = "*" name = "pywin32" version = "227" description = "Python for Window Extensions" +category = "main" optional = false python-versions = "*" files = [ @@ -3619,6 +3806,7 @@ files = [ name = "pyyaml" version = "6.0" description = "YAML parser and emitter for Python" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3668,6 +3856,7 @@ files = [ name = "pyzmq" version = "25.0.2" description = "Python bindings for 0MQ" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3757,6 +3946,7 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""} name = "regex" version = "2023.5.5" description = "Alternative regular expression module, to replace re." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3854,6 +4044,7 @@ files = [ name = "requests" version = "2.29.0" description = "Python HTTP for Humans." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3875,6 +4066,7 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] name = "requests-mock" version = "1.10.0" description = "Mock out responses from the requests package" +category = "dev" optional = false python-versions = "*" files = [ @@ -3894,6 +4086,7 @@ test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "tes name = "retry-decorator" version = "1.1.1" description = "Retry Decorator" +category = "main" optional = true python-versions = "*" files = [ @@ -3904,6 +4097,7 @@ files = [ name = "rich" version = "12.6.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +category = "main" optional = false python-versions = ">=3.6.3,<4.0.0" files = [ @@ -3923,6 +4117,7 @@ jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] name = "rsa" version = "4.7.2" description = "Pure-Python RSA implementation" +category = "main" optional = false python-versions = ">=3.5, <4" files = [ @@ -3937,6 +4132,7 @@ pyasn1 = ">=0.1.3" name = "ruamel-yaml" version = "0.17.22" description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" +category = "main" optional = false python-versions = ">=3" files = [ @@ -3955,6 +4151,7 @@ jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] name = "ruamel-yaml-clib" version = "0.2.7" description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -4001,6 +4198,7 @@ files = [ name = "ruff" version = "0.1.2" description = "An extremely fast Python linter, written in Rust." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4027,6 +4225,7 @@ files = [ name = "setuptools" version = "67.7.2" description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4043,6 +4242,7 @@ testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs ( name = "shellingham" version = "1.5.0.post1" description = "Tool to Detect Surrounding Shell" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4054,6 +4254,7 @@ files = [ name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4065,6 +4266,7 @@ files = [ name = "slack-sdk" version = "3.21.3" description = "The Slack API Platform SDK for Python" +category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -4080,6 +4282,7 @@ testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "We name = "smmap" version = "5.0.0" description = "A pure Python implementation of a sliding window memory map manager" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4091,6 +4294,7 @@ files = [ name = "sortedcontainers" version = "2.4.0" description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +category = "dev" optional = false python-versions = "*" files = [ @@ -4102,6 +4306,7 @@ files = [ name = "soupsieve" version = "2.4.1" description = "A modern CSS selector implementation for Beautiful Soup." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4113,6 +4318,7 @@ files = [ name = "stack-data" version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" +category = "dev" optional = false python-versions = "*" files = [ @@ -4132,6 +4338,7 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] name = "stevedore" version = "5.0.0" description = "Manage dynamic plugins for Python applications" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -4146,6 +4353,7 @@ pbr = ">=2.0.0,<2.1.0 || >2.1.0" name = "tabulate" version = "0.9.0" description = "Pretty-print tabular data" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4160,6 +4368,7 @@ widechars = ["wcwidth"] name = "tenacity" version = "8.2.3" description = "Retry code until it succeeds" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4174,6 +4383,7 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"] name = "toml" version = "0.10.2" description = "Python Library for Tom's Obvious, Minimal Language" +category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4185,6 +4395,7 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4196,6 +4407,7 @@ files = [ name = "tornado" version = "6.3.1" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +category = "dev" optional = false python-versions = ">= 3.8" files = [ @@ -4216,6 +4428,7 @@ files = [ name = "tqdm" version = "4.65.0" description = "Fast, Extensible Progress Meter" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4236,6 +4449,7 @@ telegram = ["requests"] name = "traitlets" version = "5.9.0" description = "Traitlets Python configuration system" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4251,6 +4465,7 @@ test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] name = "typed-ast" version = "1.5.4" description = "a fork of Python 2 and 3 ast modules with type comment support" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4284,6 +4499,7 @@ files = [ name = "typer" version = "0.7.0" description = "Typer, build great CLIs. Easy to code. Based on Python type hints." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4307,6 +4523,7 @@ test = ["black (>=22.3.0,<23.0.0)", "coverage (>=6.2,<7.0)", "isort (>=5.0.6,<6. name = "types-chardet" version = "5.0.4.5" description = "Typing stubs for chardet" +category = "main" optional = false python-versions = "*" files = [ @@ -4318,6 +4535,7 @@ files = [ name = "types-cryptography" version = "3.3.23.2" description = "Typing stubs for cryptography" +category = "main" optional = false python-versions = "*" files = [ @@ -4329,6 +4547,7 @@ files = [ name = "types-dateparser" version = "1.1.4.9" description = "Typing stubs for dateparser" +category = "main" optional = false python-versions = "*" files = [ @@ -4340,6 +4559,7 @@ files = [ name = "types-decorator" version = "5.1.8.3" description = "Typing stubs for decorator" +category = "main" optional = false python-versions = "*" files = [ @@ -4351,6 +4571,7 @@ files = [ name = "types-emoji" version = "2.1.0.3" description = "Typing stubs for emoji" +category = "main" optional = false python-versions = "*" files = [ @@ -4362,6 +4583,7 @@ files = [ name = "types-filelock" version = "3.2.7" description = "Typing stubs for filelock" +category = "main" optional = false python-versions = "*" files = [ @@ -4373,6 +4595,7 @@ files = [ name = "types-futures" version = "3.3.8" description = "Typing stubs for futures" +category = "main" optional = false python-versions = "*" files = [ @@ -4384,6 +4607,7 @@ files = [ name = "types-ipaddress" version = "1.0.8" description = "Typing stubs for ipaddress" +category = "main" optional = false python-versions = "*" files = [ @@ -4395,6 +4619,7 @@ files = [ name = "types-markdown" version = "3.4.2.8" description = "Typing stubs for Markdown" +category = "main" optional = false python-versions = "*" files = [ @@ -4406,6 +4631,7 @@ files = [ name = "types-mock" version = "4.0.15.2" description = "Typing stubs for mock" +category = "main" optional = false python-versions = "*" files = [ @@ -4417,6 +4643,7 @@ files = [ name = "types-paramiko" version = "2.12.0.1" description = "Typing stubs for paramiko" +category = "main" optional = false python-versions = "*" files = [ @@ -4431,6 +4658,7 @@ types-cryptography = "*" name = "types-pkg-resources" version = "0.1.3" description = "Typing stubs for pkg_resources" +category = "main" optional = false python-versions = "*" files = [ @@ -4442,6 +4670,7 @@ files = [ name = "types-protobuf" version = "4.24.0.4" description = "Typing stubs for protobuf" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4453,6 +4682,7 @@ files = [ name = "types-pymysql" version = "1.0.19.6" description = "Typing stubs for PyMySQL" +category = "main" optional = false python-versions = "*" files = [ @@ -4464,6 +4694,7 @@ files = [ name = "types-python-dateutil" version = "2.8.19.12" description = "Typing stubs for python-dateutil" +category = "main" optional = false python-versions = "*" files = [ @@ -4475,6 +4706,7 @@ files = [ name = "types-pytz" version = "2022.7.1.2" description = "Typing stubs for pytz" +category = "main" optional = false python-versions = "*" files = [ @@ -4486,6 +4718,7 @@ files = [ name = "types-pyvmomi" version = "8.0.0.1" description = "Typing stubs for pyvmomi" +category = "main" optional = false python-versions = "*" files = [ @@ -4497,6 +4730,7 @@ files = [ name = "types-pyyaml" version = "6.0.12.9" description = "Typing stubs for PyYAML" +category = "main" optional = false python-versions = "*" files = [ @@ -4508,6 +4742,7 @@ files = [ name = "types-requests" version = "2.28.11" description = "Typing stubs for requests" +category = "main" optional = false python-versions = "*" files = [ @@ -4522,6 +4757,7 @@ types-urllib3 = "<1.27" name = "types-setuptools" version = "67.7.0.1" description = "Typing stubs for setuptools" +category = "main" optional = false python-versions = "*" files = [ @@ -4533,6 +4769,7 @@ files = [ name = "types-six" version = "1.16.21.8" description = "Typing stubs for six" +category = "main" optional = false python-versions = "*" files = [ @@ -4544,6 +4781,7 @@ files = [ name = "types-tabulate" version = "0.9.0.2" description = "Typing stubs for tabulate" +category = "main" optional = false python-versions = "*" files = [ @@ -4555,6 +4793,7 @@ files = [ name = "types-ujson" version = "5.7.0.5" description = "Typing stubs for ujson" +category = "main" optional = false python-versions = "*" files = [ @@ -4566,6 +4805,7 @@ files = [ name = "types-urllib3" version = "1.26.25.12" description = "Typing stubs for urllib3" +category = "main" optional = false python-versions = "*" files = [ @@ -4577,6 +4817,7 @@ files = [ name = "typing-extensions" version = "4.5.0" description = "Backported and Experimental Type Hints for Python 3.7+" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4588,6 +4829,7 @@ files = [ name = "tzdata" version = "2023.3" description = "Provider of IANA time zone data" +category = "main" optional = false python-versions = ">=2" files = [ @@ -4599,6 +4841,7 @@ files = [ name = "tzlocal" version = "4.3" description = "tzinfo object for the local timezone" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4618,6 +4861,7 @@ devenv = ["black", "check-manifest", "flake8", "pyroma", "pytest (>=4.3)", "pyte name = "ujson" version = "5.7.0" description = "Ultra fast JSON encoder and decoder for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4692,6 +4936,7 @@ files = [ name = "urllib3" version = "1.26.15" description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ @@ -4708,6 +4953,7 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] name = "urwid" version = "2.1.2" description = "A full-featured console (xterm et al.) user interface library" +category = "dev" optional = false python-versions = "*" files = [ @@ -4718,6 +4964,7 @@ files = [ name = "virtualenv" version = "20.23.0" description = "Virtual Python Environment builder" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4738,6 +4985,7 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess name = "vulture" version = "2.7" description = "Find dead code" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4752,6 +5000,7 @@ toml = "*" name = "wcmatch" version = "8.4.1" description = "Wildcard/glob file name matcher." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4766,6 +5015,7 @@ bracex = ">=2.1.1" name = "wcwidth" version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" +category = "main" optional = false python-versions = "*" files = [ @@ -4777,6 +5027,7 @@ files = [ name = "websocket-client" version = "1.5.1" description = "WebSocket client for Python with low level API options" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4793,6 +5044,7 @@ test = ["websockets"] name = "werkzeug" version = "2.3.3" description = "The comprehensive WSGI web application library." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -4810,6 +5062,7 @@ watchdog = ["watchdog (>=2.3)"] name = "wrapt" version = "1.13.3" description = "Module for decorators, wrappers and monkey patching." +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ @@ -4870,6 +5123,7 @@ files = [ name = "wsproto" version = "1.1.0" description = "WebSockets state-machine based protocol implementation" +category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -4884,6 +5138,7 @@ h11 = ">=0.9.0,<1" name = "yamlordereddictloader" version = "0.4.0" description = "YAML loader and dump for PyYAML allowing to keep keys order." +category = "main" optional = false python-versions = "*" files = [ @@ -4897,6 +5152,7 @@ pyyaml = "*" name = "yarl" version = "1.9.2" description = "Yet another URL library" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -4984,6 +5240,7 @@ multidict = ">=4.0" name = "z3-solver" version = "4.12.1.0" description = "an efficient SMT solver library" +category = "main" optional = false python-versions = "*" files = [ @@ -4999,6 +5256,7 @@ files = [ name = "zipp" version = "3.15.0" description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -5014,6 +5272,7 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more name = "zstandard" version = "0.17.0" description = "Zstandard bindings for Python" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -5075,4 +5334,4 @@ build = ["gsutil"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "2c4e3c91958bd142bea129022b98692c9f4e0606f56bc7c0893cb0f58b6d0e70" +content-hash = "cd51c8be1024ee0daa7d6abeb2029744e54ca16542ce970a31ae16b164e38a5c" diff --git a/pyproject.toml b/pyproject.toml index 5072643604..1e827e8245 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -121,6 +121,7 @@ requests-mock = "^1.9.3" black = "^22.10.0" ipykernel = "^6.16.1" ruff = "^0.1.2" +pytest-split = "^0.8.1" [tool.poetry.extras] build = ["gsutil"] From 128b21da534ef515aa34714dceb7281aedaa9329 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 21 Nov 2023 09:14:46 +0200 Subject: [PATCH 009/204] remove circle-ci cmd --- .github/workflows/run_unit_tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index fed20092a5..dfe8b826eb 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -63,7 +63,6 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - TEST_FILES=$(circleci tests glob "**/*_test.py") # filter out files which are in .venv directory TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*\.venv\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/init\/templates\S*\.py//g') From 60778429e260c43efbe5cdcd087408c713c54ecf Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 21 Nov 2023 14:09:46 +0200 Subject: [PATCH 010/204] test --- .github/workflows/run_unit_tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index dfe8b826eb..4e118f0fa2 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -59,6 +59,7 @@ jobs: - name: Run pytest run: | + shopt -u globstar source "$(poetry env info --path)/bin/activate" node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! From a85079e7c1d1b43fb269842322b3020569d80e0b Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 24 Nov 2023 18:06:14 +0200 Subject: [PATCH 011/204] test --- .github/workflows/run_unit_tests.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 4e118f0fa2..03a9db84be 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -20,7 +20,8 @@ jobs: strategy: matrix: python-version: [ "3.8", "3.9", "3.10" ] - group: [ 1, 2, 3, 4, 5 ] +# group: [ 1, 2, 3, 4, 5 ] + group: [ 1, 2 ] fail-fast: false defaults: run: @@ -30,13 +31,6 @@ jobs: with: fetch-depth: 0 -# - name: checkout-content-repo -# run: | -# git clone https://github.com/demisto/content.git -# cd content -# git config diff.renameLimit 5000 -# git --no-pager log -1 - - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -61,18 +55,26 @@ jobs: run: | shopt -u globstar source "$(poetry env info --path)/bin/activate" - node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & - node_pid=$! + TEST_FILES=$(find . -type f -name "*_test.py") # filter out files which are in .venv directory TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*\.venv\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/init\/templates\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/tests\/integration_tests\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/content_graph\/tests\S*\.py//g') - + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json + + # 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=$! + + echo "test-files are: $TEST_FILES" + poetry run pytest --store-durations poetry run pytest -v --cov --splits 5 --group ${{ matrix.group }} $TEST_FILES + kill $node_pid - name: Upload coverage uses: actions/upload-artifact@v2 with: From e5bfe7f54a3d3f8c0b6a85e48952807ab9128c0f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 24 Nov 2023 18:13:54 +0200 Subject: [PATCH 012/204] workflow --- .github/workflows/run_unit_tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 03a9db84be..0579305786 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -20,8 +20,7 @@ jobs: strategy: matrix: python-version: [ "3.8", "3.9", "3.10" ] -# group: [ 1, 2, 3, 4, 5 ] - group: [ 1, 2 ] + group: [ 1, 2, 3, 4, 5 ] fail-fast: false defaults: run: From c8e616d28385e67bd911492319b5636ededd9213 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 24 Nov 2023 18:16:50 +0200 Subject: [PATCH 013/204] change group --- .github/workflows/run_unit_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 0579305786..ba49d32aa4 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -1,4 +1,4 @@ -name: Run-Unit-Tests +name: General on: push: @@ -20,7 +20,7 @@ jobs: strategy: matrix: python-version: [ "3.8", "3.9", "3.10" ] - group: [ 1, 2, 3, 4, 5 ] + group: [ 1, 2 ] fail-fast: false defaults: run: From 76ff23d9011cf93e0956ed2ad6417a971cc44998 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 24 Nov 2023 18:18:54 +0200 Subject: [PATCH 014/204] revert poetry --- poetry.lock | 286 ++++--------------------------------------------- pyproject.toml | 1 - 2 files changed, 19 insertions(+), 268 deletions(-) diff --git a/poetry.lock b/poetry.lock index b97bbdcf6b..7f25c6a661 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,10 +1,9 @@ -# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. [[package]] name = "aiohttp" version = "3.8.5" description = "Async http client/server framework (asyncio)" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -113,7 +112,6 @@ speedups = ["Brotli", "aiodns", "cchardet"] name = "aiosignal" version = "1.3.1" description = "aiosignal: a list of registered asynchronous callbacks" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -128,7 +126,6 @@ frozenlist = ">=1.1.0" name = "appnope" version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" -category = "dev" optional = false python-versions = "*" files = [ @@ -140,7 +137,6 @@ files = [ name = "argcomplete" version = "3.0.8" description = "Bash tab completion for argparse" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -155,7 +151,6 @@ test = ["coverage", "mypy", "pexpect", "ruff", "wheel"] name = "asgiref" version = "3.5.2" description = "ASGI specs, helper code, and adapters" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -170,7 +165,6 @@ tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] name = "astor" version = "0.8.1" description = "Read/rewrite/write Python ASTs" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -182,7 +176,6 @@ files = [ name = "astroid" version = "2.9.3" description = "An abstract syntax tree for Python with inference support." -category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -200,7 +193,6 @@ wrapt = ">=1.11,<1.14" name = "asttokens" version = "2.2.1" description = "Annotate AST trees with source code positions" -category = "dev" optional = false python-versions = "*" files = [ @@ -218,7 +210,6 @@ test = ["astroid", "pytest"] name = "async-timeout" version = "4.0.2" description = "Timeout context manager for asyncio programs" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -230,7 +221,6 @@ files = [ name = "attrs" version = "23.1.0" description = "Classes Without Boilerplate" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -249,7 +239,6 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte name = "autopep8" version = "1.7.0" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" -category = "main" optional = false python-versions = "*" files = [ @@ -265,7 +254,6 @@ toml = "*" name = "backcall" version = "0.2.0" description = "Specifications for callback functions passed in to an API" -category = "dev" optional = false python-versions = "*" files = [ @@ -277,7 +265,6 @@ files = [ name = "backports-zoneinfo" version = "0.2.1" description = "Backport of the standard library zoneinfo module" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -306,7 +293,6 @@ tzdata = ["tzdata"] name = "bandit" version = "1.7.5" description = "Security oriented static analyser for python code." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -330,7 +316,6 @@ yaml = ["PyYAML"] name = "bcrypt" version = "4.0.1" description = "Modern password hashing for your software and your servers" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -365,7 +350,6 @@ typecheck = ["mypy"] name = "beautifulsoup4" version = "4.12.2" description = "Screen-scraping library" -category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -384,7 +368,6 @@ lxml = ["lxml"] name = "black" version = "22.12.0" description = "The uncompromising code formatter." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -420,7 +403,6 @@ uvloop = ["uvloop (>=0.15.2)"] name = "blinker" version = "1.4" description = "Fast, simple object-to-object and broadcast signaling" -category = "dev" optional = false python-versions = "*" files = [ @@ -431,7 +413,6 @@ files = [ name = "boto" version = "2.49.0" description = "Amazon Web Services Library" -category = "main" optional = true python-versions = "*" files = [ @@ -443,7 +424,6 @@ files = [ name = "bracex" version = "2.3.post1" description = "Bash style brace expander." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -455,7 +435,6 @@ files = [ name = "brotli" version = "1.0.9" description = "Python bindings for the Brotli compression library" -category = "dev" optional = false python-versions = "*" files = [ @@ -547,7 +526,6 @@ files = [ name = "cachetools" version = "5.3.0" description = "Extensible memoizing collections and decorators" -category = "main" optional = false python-versions = "~=3.7" files = [ @@ -559,7 +537,6 @@ files = [ name = "certifi" version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -571,7 +548,6 @@ files = [ name = "cffi" version = "1.15.1" description = "Foreign Function Interface for Python calling C code." -category = "main" optional = false python-versions = "*" files = [ @@ -648,7 +624,6 @@ pycparser = "*" name = "cfgv" version = "3.3.1" description = "Validate configuration and produce human readable error messages." -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -660,7 +635,6 @@ files = [ name = "chardet" version = "5.1.0" description = "Universal encoding detector for Python 3" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -672,7 +646,6 @@ files = [ name = "charset-normalizer" version = "3.1.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = false python-versions = ">=3.7.0" files = [ @@ -757,7 +730,6 @@ files = [ name = "click" version = "8.1.3" description = "Composable command line interface toolkit" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -772,7 +744,6 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -784,7 +755,6 @@ files = [ name = "coloredlogs" version = "15.0.1" description = "Colored terminal output for Python's logging module" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -802,7 +772,6 @@ cron = ["capturer (>=2.4)"] name = "comm" version = "0.1.3" description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -822,7 +791,6 @@ typing = ["mypy (>=0.990)"] name = "commonmark" version = "0.9.1" description = "Python parser for the CommonMark Markdown spec" -category = "main" optional = false python-versions = "*" files = [ @@ -837,7 +805,6 @@ test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"] name = "configargparse" version = "1.5.3" description = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -853,7 +820,6 @@ yaml = ["PyYAML"] name = "configparser" version = "5.3.0" description = "Updated configparser from stdlib for earlier Pythons." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -869,7 +835,6 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec name = "coverage" version = "7.2.5" description = "Code coverage measurement for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -936,7 +901,6 @@ toml = ["tomli"] name = "crcmod" version = "1.7" description = "CRC Generator" -category = "main" optional = true python-versions = "*" files = [ @@ -947,7 +911,6 @@ files = [ name = "cryptography" version = "36.0.2" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -988,7 +951,6 @@ test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0 name = "dateparser" version = "1.1.8" description = "Date parsing library designed to parse dates from HTML pages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1011,7 +973,6 @@ langdetect = ["langdetect"] name = "debugpy" version = "1.6.7" description = "An implementation of the Debug Adapter Protocol for Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1039,7 +1000,6 @@ files = [ name = "decorator" version = "5.1.1" description = "Decorators for Humans" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1051,7 +1011,6 @@ files = [ name = "demisto-py" version = "3.2.10" description = "A Python library for the Demisto API" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -1064,14 +1023,13 @@ certifi = ">=2017.4.17" python-dateutil = ">=2.5.3" setuptools = ">=21.0.0" six = ">=1.10" -tzlocal = ">=4.0.0,<5.0.0" +tzlocal = "==4.*" urllib3 = ">=1.26.7" [[package]] name = "dictdiffer" version = "0.9.0" description = "Dictdiffer is a library that helps you to diff and patch dictionaries." -category = "main" optional = false python-versions = "*" files = [ @@ -1089,7 +1047,6 @@ tests = ["check-manifest (>=0.42)", "mock (>=1.3.0)", "pytest (==5.4.3)", "pytes name = "dictor" version = "0.1.11" description = "an elegant dictionary and JSON handler" -category = "main" optional = false python-versions = "*" files = [ @@ -1100,7 +1057,6 @@ files = [ name = "distlib" version = "0.3.6" description = "Distribution utilities" -category = "dev" optional = false python-versions = "*" files = [ @@ -1112,7 +1068,6 @@ files = [ name = "docker" version = "5.0.3" description = "A Python library for the Docker Engine API." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1133,7 +1088,6 @@ tls = ["cryptography (>=3.4.7)", "idna (>=2.0.0)", "pyOpenSSL (>=17.5.0)"] name = "docopt" version = "0.6.2" description = "Pythonic argument parser, that will make you smile" -category = "main" optional = false python-versions = "*" files = [ @@ -1144,7 +1098,6 @@ files = [ name = "exceptiongroup" version = "1.1.1" description = "Backport of PEP 654 (exception groups)" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1159,7 +1112,6 @@ test = ["pytest (>=6)"] name = "executing" version = "1.2.0" description = "Get the currently executing AST node of a frame, and other information" -category = "dev" optional = false python-versions = "*" files = [ @@ -1174,7 +1126,6 @@ tests = ["asttokens", "littleutils", "pytest", "rich"] name = "fasteners" version = "0.18" description = "A python package that provides useful locks" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -1186,7 +1137,6 @@ files = [ name = "filelock" version = "3.12.0" description = "A platform independent file lock." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1202,7 +1152,6 @@ testing = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "diff-cover (>=7.5)", "p name = "flask" version = "2.0.3" description = "A simple framework for building complex web applications." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1224,7 +1173,6 @@ dotenv = ["python-dotenv"] name = "flatten-dict" version = "0.4.2" description = "A flexible utility for flattening and unflattening dict-like objects in Python." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1239,7 +1187,6 @@ six = ">=1.12,<2.0" name = "freezegun" version = "1.2.2" description = "Let your Python tests travel through time" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1254,7 +1201,6 @@ python-dateutil = ">=2.7" name = "frozenlist" version = "1.3.3" description = "A list-like structure which implements collections.abc.MutableSequence" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -1338,7 +1284,6 @@ files = [ name = "future" version = "0.18.3" description = "Clean single-source support for Python 3 and 2" -category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1349,7 +1294,6 @@ files = [ name = "gcs-oauth2-boto-plugin" version = "3.0" description = "Auth plugin allowing use the use of OAuth 2.0 credentials for Google Cloud Storage in the Boto library." -category = "main" optional = true python-versions = "*" files = [ @@ -1373,7 +1317,6 @@ dev = ["freezegun", "mock"] name = "gitdb" version = "4.0.10" description = "Git Object Database" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1388,7 +1331,6 @@ smmap = ">=3.0.1,<6" name = "gitpython" version = "3.1.37" description = "GitPython is a Python library used to interact with Git repositories" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1406,7 +1348,6 @@ test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mypy", "pre-commit" name = "giturlparse" version = "0.10.0" description = "A Git URL parsing module (supports parsing and rewriting)" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1418,7 +1359,6 @@ files = [ name = "google-api-core" version = "2.11.0" description = "Google API client core library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1443,7 +1383,6 @@ grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] name = "google-apitools" version = "0.5.32" description = "client libraries for humans" -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1465,7 +1404,6 @@ testing = ["mock (>=1.0.1)"] name = "google-auth" version = "2.23.4" description = "Google Authentication Library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1491,7 +1429,6 @@ requests = ["requests (>=2.20.0,<3.0.0.dev0)"] name = "google-cloud-core" version = "2.3.2" description = "Google Cloud API client core library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1500,7 +1437,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.6,<2.0.dev0 || >2.3.0,<3.0.0dev" google-auth = ">=1.25.0,<3.0dev" [package.extras] @@ -1510,7 +1447,6 @@ grpc = ["grpcio (>=1.38.0,<2.0dev)"] name = "google-cloud-secret-manager" version = "2.16.4" description = "Google Cloud Secret Manager API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1519,7 +1455,7 @@ files = [ ] [package.dependencies] -google-api-core = {version = ">=1.34.0,<2.0.0 || >=2.11.0,<3.0.0dev", extras = ["grpc"]} +google-api-core = {version = ">=1.34.0,<2.0.dev0 || >=2.11.dev0,<3.0.0dev", extras = ["grpc"]} grpc-google-iam-v1 = ">=0.12.4,<1.0.0dev" proto-plus = ">=1.22.0,<2.0.0dev" protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" @@ -1528,7 +1464,6 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4 name = "google-cloud-storage" version = "2.13.0" description = "Google Cloud Storage API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1537,7 +1472,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0dev" google-auth = ">=2.23.3,<3.0dev" google-cloud-core = ">=2.3.0,<3.0dev" google-crc32c = ">=1.0,<2.0dev" @@ -1551,7 +1486,6 @@ protobuf = ["protobuf (<5.0.0dev)"] name = "google-crc32c" version = "1.5.0" description = "A python wrapper of the C library 'Google CRC32C'" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1632,7 +1566,6 @@ testing = ["pytest"] name = "google-reauth" version = "0.1.1" description = "Google Reauth Library" -category = "main" optional = true python-versions = "*" files = [ @@ -1650,7 +1583,6 @@ oauth2client = ["oauth2client (>=2.0.0)"] name = "google-resumable-media" version = "2.6.0" description = "Utilities for Google Media Downloads and Resumable Uploads" -category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -1669,7 +1601,6 @@ requests = ["requests (>=2.18.0,<3.0.0dev)"] name = "googleapis-common-protos" version = "1.59.0" description = "Common protobufs used in Google APIs" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1688,7 +1619,6 @@ grpc = ["grpcio (>=1.44.0,<2.0.0dev)"] name = "grpc-google-iam-v1" version = "0.12.7" description = "IAM API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1705,7 +1635,6 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4 name = "grpcio" version = "1.59.2" description = "HTTP/2-based RPC framework" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1772,7 +1701,6 @@ protobuf = ["grpcio-tools (>=1.59.2)"] name = "grpcio-status" version = "1.48.2" description = "Status proto mapping for gRPC" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1789,7 +1717,6 @@ protobuf = ">=3.12.0" name = "gsutil" version = "5.17" description = "A command line tool for interacting with cloud storage services." -category = "main" optional = true python-versions = "!=2.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" files = [ @@ -1814,7 +1741,6 @@ six = ">=1.12.0" name = "h11" version = "0.13.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1826,7 +1752,6 @@ files = [ name = "h2" version = "4.1.0" description = "HTTP/2 State-Machine based protocol implementation" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1842,7 +1767,6 @@ hyperframe = ">=6.0,<7" name = "hpack" version = "4.0.0" description = "Pure-Python HPACK header compression" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1854,7 +1778,6 @@ files = [ name = "httplib2" version = "0.20.4" description = "A comprehensive HTTP client library." -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1869,7 +1792,6 @@ pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0 name = "humanfriendly" version = "10.0" description = "Human friendly output for text interfaces using Python" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1884,7 +1806,6 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve name = "hyperframe" version = "6.0.1" description = "HTTP/2 framing layer for Python" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1896,7 +1817,6 @@ files = [ name = "identify" version = "2.5.24" description = "File identification library for Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1911,7 +1831,6 @@ license = ["ukkonen"] name = "idna" version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1923,7 +1842,6 @@ files = [ name = "imagesize" version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1935,7 +1853,6 @@ files = [ name = "importlib-metadata" version = "6.6.0" description = "Read metadata from Python packages" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1955,7 +1872,6 @@ testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packag name = "importlib-resources" version = "5.12.0" description = "Read resources from Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1974,7 +1890,6 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec name = "inflection" version = "0.5.1" description = "A port of Ruby on Rails inflector to Python" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1986,7 +1901,6 @@ files = [ name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1998,7 +1912,6 @@ files = [ name = "ipykernel" version = "6.22.0" description = "IPython Kernel for Jupyter" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2012,7 +1925,7 @@ comm = ">=0.1.1" debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" @@ -2032,7 +1945,6 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio" name = "ipython" version = "8.12.1" description = "IPython: Productive Interactive Computing" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2072,7 +1984,6 @@ test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pa name = "isort" version = "5.12.0" description = "A Python utility / library to sort Python imports." -category = "main" optional = false python-versions = ">=3.8.0" files = [ @@ -2090,7 +2001,6 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "itsdangerous" version = "2.1.2" description = "Safely pass data to untrusted environments and back." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2102,7 +2012,6 @@ files = [ name = "jedi" version = "0.18.2" description = "An autocompletion tool for Python that can be used for text editors." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2122,7 +2031,6 @@ testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2140,7 +2048,6 @@ i18n = ["Babel (>=2.7)"] name = "joblib" version = "1.2.0" description = "Lightweight pipelining with Python functions" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2152,7 +2059,6 @@ files = [ name = "json5" version = "0.9.14" description = "A Python implementation of the JSON5 data format." -category = "main" optional = false python-versions = "*" files = [ @@ -2167,7 +2073,6 @@ dev = ["hypothesis"] name = "jsonschema" version = "4.17.3" description = "An implementation of JSON Schema validation for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2189,7 +2094,6 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- name = "junitparser" version = "3.1.0" description = "Manipulates JUnit/xUnit Result XML files" -category = "main" optional = false python-versions = "*" files = [ @@ -2204,7 +2108,6 @@ future = "*" name = "jupyter-client" version = "8.2.0" description = "Jupyter protocol implementation and client libraries" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2214,7 +2117,7 @@ files = [ [package.dependencies] importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" tornado = ">=6.2" @@ -2228,7 +2131,6 @@ test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pyt name = "jupyter-core" version = "5.2.0" description = "Jupyter core package. A base package on which Jupyter projects rely." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2249,7 +2151,6 @@ test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] name = "kaitaistruct" version = "0.9" description = "Kaitai Struct declarative parser generator for binary data: runtime library for Python" -category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -2260,7 +2161,6 @@ files = [ name = "klara" version = "0.6.3" description = "Automatic test case generation and static analysis library" -category = "main" optional = false python-versions = ">=3.6.2,<4.0" files = [ @@ -2278,7 +2178,6 @@ z3-solver = ">=4.8.12,<5.0.0" name = "lazy-object-proxy" version = "1.9.0" description = "A fast and thorough lazy object proxy." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2324,7 +2223,6 @@ files = [ name = "ldap3" version = "2.9.1" description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library" -category = "dev" optional = false python-versions = "*" files = [ @@ -2339,7 +2237,6 @@ pyasn1 = ">=0.4.6" name = "markupsafe" version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2399,7 +2296,6 @@ files = [ name = "matplotlib-inline" version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2414,7 +2310,6 @@ traitlets = "*" name = "mccabe" version = "0.6.1" description = "McCabe checker, plugin for flake8" -category = "main" optional = false python-versions = "*" files = [ @@ -2426,7 +2321,6 @@ files = [ name = "mergedeep" version = "1.3.4" description = "A deep merge function for 🐍." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2438,7 +2332,6 @@ files = [ name = "mitmproxy" version = "8.0.0" description = "An interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2480,7 +2373,6 @@ dev = ["click (>=7.0,<8.1)", "hypothesis (>=5.8,<7)", "parver (>=0.1,<2.0)", "pd name = "mock" version = "4.0.3" description = "Rolling backport of unittest.mock for all Pythons" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2497,7 +2389,6 @@ test = ["pytest (<5.4)", "pytest-cov"] name = "monotonic" version = "1.6" description = "An implementation of time.monotonic() for Python 2 & < 3.3" -category = "main" optional = true python-versions = "*" files = [ @@ -2509,7 +2400,6 @@ files = [ name = "more-itertools" version = "9.1.0" description = "More routines for operating on iterables, beyond itertools" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2521,7 +2411,6 @@ files = [ name = "msgpack" version = "1.0.5" description = "MessagePack serializer" -category = "dev" optional = false python-versions = "*" files = [ @@ -2594,7 +2483,6 @@ files = [ name = "multidict" version = "6.0.4" description = "multidict implementation" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2678,7 +2566,6 @@ files = [ name = "mypy" version = "0.982" description = "Optional static typing for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2722,7 +2609,6 @@ reports = ["lxml"] name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -2734,7 +2620,6 @@ files = [ name = "neo4j" version = "5.14.1" description = "Neo4j Bolt driver for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2753,7 +2638,6 @@ pyarrow = ["pyarrow (>=1.0.0)"] name = "nest-asyncio" version = "1.5.6" description = "Patch asyncio to allow nested event loops" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2765,7 +2649,6 @@ files = [ name = "networkx" version = "2.8.8" description = "Python package for creating and manipulating graphs and networks" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -2784,7 +2667,6 @@ test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] name = "nltk" version = "3.8.1" description = "Natural Language Toolkit" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2810,7 +2692,6 @@ twitter = ["twython"] name = "nodeenv" version = "1.7.0" description = "Node.js virtual environment builder" -category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ @@ -2825,7 +2706,6 @@ setuptools = "*" name = "oauth2client" version = "4.1.3" description = "OAuth 2.0 client library" -category = "main" optional = true python-versions = "*" files = [ @@ -2844,7 +2724,6 @@ six = ">=1.6.1" name = "ordered-set" version = "4.1.0" description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2859,7 +2738,6 @@ dev = ["black", "mypy", "pytest"] name = "orjson" version = "3.8.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -2920,7 +2798,6 @@ files = [ name = "packaging" version = "23.1" description = "Core utilities for Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2932,7 +2809,6 @@ files = [ name = "paramiko" version = "2.12.0" description = "SSH2 protocol library" -category = "main" optional = false python-versions = "*" files = [ @@ -2956,7 +2832,6 @@ invoke = ["invoke (>=1.3)"] name = "parso" version = "0.8.3" description = "A Python Parser" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2972,7 +2847,6 @@ testing = ["docopt", "pytest (<6.0.0)"] name = "passlib" version = "1.7.4" description = "comprehensive password hashing framework supporting over 30 schemes" -category = "dev" optional = false python-versions = "*" files = [ @@ -2990,7 +2864,6 @@ totp = ["cryptography"] name = "pathspec" version = "0.11.1" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3002,7 +2875,6 @@ files = [ name = "pbr" version = "5.11.1" description = "Python Build Reasonableness" -category = "main" optional = false python-versions = ">=2.6" files = [ @@ -3014,7 +2886,6 @@ files = [ name = "pebble" version = "5.0.3" description = "Threading and multiprocessing eye-candy." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3026,7 +2897,6 @@ files = [ name = "pexpect" version = "4.8.0" description = "Pexpect allows easy control of interactive console applications." -category = "dev" optional = false python-versions = "*" files = [ @@ -3041,7 +2911,6 @@ ptyprocess = ">=0.5" name = "pickleshare" version = "0.7.5" description = "Tiny 'shelve'-like database with concurrency support" -category = "dev" optional = false python-versions = "*" files = [ @@ -3053,7 +2922,6 @@ files = [ name = "pkgutil-resolve-name" version = "1.3.10" description = "Resolve a name to an object." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3065,7 +2933,6 @@ files = [ name = "platformdirs" version = "3.5.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3081,7 +2948,6 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest- name = "pluggy" version = "1.0.0" description = "plugin and hook calling mechanisms for python" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3097,7 +2963,6 @@ testing = ["pytest", "pytest-benchmark"] name = "pre-commit" version = "2.21.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3116,7 +2981,6 @@ virtualenv = ">=20.10.0" name = "prettytable" version = "3.7.0" description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3134,7 +2998,6 @@ tests = ["pytest", "pytest-cov", "pytest-lazy-fixture"] name = "prompt-toolkit" version = "3.0.38" description = "Library for building powerful interactive command lines in Python" -category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -3149,7 +3012,6 @@ wcwidth = "*" name = "proto-plus" version = "1.22.3" description = "Beautiful, Pythonic protocol buffers." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3167,7 +3029,6 @@ testing = ["google-api-core[grpc] (>=1.31.5)"] name = "protobuf" version = "3.19.6" description = "Protocol Buffers" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3202,7 +3063,6 @@ files = [ name = "psutil" version = "5.9.5" description = "Cross-platform lib for process and system monitoring in Python." -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3229,7 +3089,6 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" -category = "dev" optional = false python-versions = "*" files = [ @@ -3241,7 +3100,6 @@ files = [ name = "publicsuffix2" version = "2.20191221" description = "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package." -category = "dev" optional = false python-versions = "*" files = [ @@ -3253,7 +3111,6 @@ files = [ name = "pure-eval" version = "0.2.2" description = "Safely evaluate AST nodes without side effects" -category = "dev" optional = false python-versions = "*" files = [ @@ -3268,7 +3125,6 @@ tests = ["pytest"] name = "pyasn1" version = "0.5.0" description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3280,7 +3136,6 @@ files = [ name = "pyasn1-modules" version = "0.3.0" description = "A collection of ASN.1-based protocols modules" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3295,7 +3150,6 @@ pyasn1 = ">=0.4.6,<0.6.0" name = "pycodestyle" version = "2.10.0" description = "Python style guide checker" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3307,7 +3161,6 @@ files = [ name = "pycparser" version = "2.21" description = "C parser in Python" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3319,7 +3172,6 @@ files = [ name = "pydantic" version = "1.10.7" description = "Data validation and settings management using python type hints" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3372,7 +3224,6 @@ email = ["email-validator (>=1.0.3)"] name = "pydivert" version = "2.1.0" description = "Python binding to windivert driver" -category = "dev" optional = false python-versions = "*" files = [ @@ -3388,7 +3239,6 @@ test = ["codecov (>=2.0.5)", "hypothesis (>=3.5.3)", "mock (>=1.0.1)", "pytest ( name = "pygments" version = "2.15.1" description = "Pygments is a syntax highlighting package written in Python." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3403,7 +3253,6 @@ plugins = ["importlib-metadata"] name = "pykwalify" version = "1.8.0" description = "Python lib/cli for JSON/YAML schema validation" -category = "main" optional = false python-versions = "*" files = [ @@ -3420,7 +3269,6 @@ python-dateutil = ">=2.8.0" name = "pylint" version = "2.12.2" description = "python code static checker" -category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -3441,7 +3289,6 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\"" name = "pynacl" version = "1.5.0" description = "Python binding to the Networking and Cryptography (NaCl) library" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3468,7 +3315,6 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] name = "pyopenssl" version = "22.0.0" description = "Python wrapper module around the OpenSSL library" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3487,7 +3333,6 @@ test = ["flaky", "pretend", "pytest (>=3.0.1)"] name = "pyparsing" version = "3.0.9" description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "main" optional = false python-versions = ">=3.6.8" files = [ @@ -3502,7 +3347,6 @@ diagrams = ["jinja2", "railroad-diagrams"] name = "pypdf2" version = "1.28.6" description = "A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files" -category = "main" optional = false python-versions = ">=2.7" files = [ @@ -3514,7 +3358,6 @@ files = [ name = "pyperclip" version = "1.8.2" description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" -category = "dev" optional = false python-versions = "*" files = [ @@ -3525,7 +3368,6 @@ files = [ name = "pyreadline3" version = "3.4.1" description = "A python implementation of GNU readline." -category = "main" optional = false python-versions = "*" files = [ @@ -3537,7 +3379,6 @@ files = [ name = "pyrsistent" version = "0.19.3" description = "Persistent/Functional/Immutable data structures" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3574,7 +3415,6 @@ files = [ name = "pyspellchecker" version = "0.6.3" description = "Pure python spell checker based on work by Peter Norvig" -category = "main" optional = false python-versions = "*" files = [ @@ -3586,7 +3426,6 @@ files = [ name = "pytest" version = "7.3.1" description = "pytest: simple powerful testing with Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3609,7 +3448,6 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no name = "pytest-cov" version = "4.0.0" description = "Pytest plugin for measuring coverage." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3628,7 +3466,6 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-datadir-ng" version = "1.1.1" description = "Fixtures for pytest allowing test functions/methods to easily retrieve test resources from the local filesystem." -category = "dev" optional = false python-versions = "*" files = [ @@ -3643,7 +3480,6 @@ pytest = "*" name = "pytest-freezegun" version = "0.4.2" description = "Wrap tests with fixtures in freeze_time" -category = "main" optional = false python-versions = "*" files = [ @@ -3659,7 +3495,6 @@ pytest = ">=3.0.0" name = "pytest-mock" version = "3.10.0" description = "Thin-wrapper around the mock package for easier use with pytest" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3673,26 +3508,10 @@ 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." -category = "dev" -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" description = "A plugin to fake subprocess for pytest" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3712,7 +3531,6 @@ test = ["Pygments (>=2.0)", "anyio", "coverage", "docutils (>=0.12)", "pytest (> name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ @@ -3727,7 +3545,6 @@ six = ">=1.5" name = "python-dotenv" version = "0.20.0" description = "Read key-value pairs from a .env file and set them as environment variables" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3742,7 +3559,6 @@ cli = ["click (>=5.0)"] name = "pytz" version = "2023.3" description = "World timezone definitions, modern and historical" -category = "main" optional = false python-versions = "*" files = [ @@ -3754,7 +3570,6 @@ files = [ name = "pytz-deprecation-shim" version = "0.1.0.post0" description = "Shims to make deprecation of pytz easier" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3770,7 +3585,6 @@ tzdata = {version = "*", markers = "python_version >= \"3.6\""} name = "pyu2f" version = "0.1.5" description = "U2F host library for interacting with a U2F device over USB." -category = "main" optional = true python-versions = "*" files = [ @@ -3784,7 +3598,6 @@ six = "*" name = "pywin32" version = "227" description = "Python for Window Extensions" -category = "main" optional = false python-versions = "*" files = [ @@ -3806,7 +3619,6 @@ files = [ name = "pyyaml" version = "6.0" description = "YAML parser and emitter for Python" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3856,7 +3668,6 @@ files = [ name = "pyzmq" version = "25.0.2" description = "Python bindings for 0MQ" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3946,7 +3757,6 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""} name = "regex" version = "2023.5.5" description = "Alternative regular expression module, to replace re." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4044,7 +3854,6 @@ files = [ name = "requests" version = "2.29.0" description = "Python HTTP for Humans." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4066,7 +3875,6 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] name = "requests-mock" version = "1.10.0" description = "Mock out responses from the requests package" -category = "dev" optional = false python-versions = "*" files = [ @@ -4086,7 +3894,6 @@ test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "tes name = "retry-decorator" version = "1.1.1" description = "Retry Decorator" -category = "main" optional = true python-versions = "*" files = [ @@ -4097,7 +3904,6 @@ files = [ name = "rich" version = "12.6.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" -category = "main" optional = false python-versions = ">=3.6.3,<4.0.0" files = [ @@ -4117,7 +3923,6 @@ jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] name = "rsa" version = "4.7.2" description = "Pure-Python RSA implementation" -category = "main" optional = false python-versions = ">=3.5, <4" files = [ @@ -4132,7 +3937,6 @@ pyasn1 = ">=0.1.3" name = "ruamel-yaml" version = "0.17.22" description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" -category = "main" optional = false python-versions = ">=3" files = [ @@ -4151,7 +3955,6 @@ jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] name = "ruamel-yaml-clib" version = "0.2.7" description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -4198,7 +4001,6 @@ files = [ name = "ruff" version = "0.1.2" description = "An extremely fast Python linter, written in Rust." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4225,7 +4027,6 @@ files = [ name = "setuptools" version = "67.7.2" description = "Easily download, build, install, upgrade, and uninstall Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4242,7 +4043,6 @@ testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs ( name = "shellingham" version = "1.5.0.post1" description = "Tool to Detect Surrounding Shell" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4254,7 +4054,6 @@ files = [ name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4266,7 +4065,6 @@ files = [ name = "slack-sdk" version = "3.21.3" description = "The Slack API Platform SDK for Python" -category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -4282,7 +4080,6 @@ testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "We name = "smmap" version = "5.0.0" description = "A pure Python implementation of a sliding window memory map manager" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4294,7 +4091,6 @@ files = [ name = "sortedcontainers" version = "2.4.0" description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" -category = "dev" optional = false python-versions = "*" files = [ @@ -4306,7 +4102,6 @@ files = [ name = "soupsieve" version = "2.4.1" description = "A modern CSS selector implementation for Beautiful Soup." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4318,7 +4113,6 @@ files = [ name = "stack-data" version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" -category = "dev" optional = false python-versions = "*" files = [ @@ -4338,7 +4132,6 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] name = "stevedore" version = "5.0.0" description = "Manage dynamic plugins for Python applications" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -4353,7 +4146,6 @@ pbr = ">=2.0.0,<2.1.0 || >2.1.0" name = "tabulate" version = "0.9.0" description = "Pretty-print tabular data" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4368,7 +4160,6 @@ widechars = ["wcwidth"] name = "tenacity" version = "8.2.3" description = "Retry code until it succeeds" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4383,7 +4174,6 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"] name = "toml" version = "0.10.2" description = "Python Library for Tom's Obvious, Minimal Language" -category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4395,7 +4185,6 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4407,7 +4196,6 @@ files = [ name = "tornado" version = "6.3.1" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "dev" optional = false python-versions = ">= 3.8" files = [ @@ -4428,7 +4216,6 @@ files = [ name = "tqdm" version = "4.65.0" description = "Fast, Extensible Progress Meter" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4449,7 +4236,6 @@ telegram = ["requests"] name = "traitlets" version = "5.9.0" description = "Traitlets Python configuration system" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4465,7 +4251,6 @@ test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] name = "typed-ast" version = "1.5.4" description = "a fork of Python 2 and 3 ast modules with type comment support" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4499,7 +4284,6 @@ files = [ name = "typer" version = "0.7.0" description = "Typer, build great CLIs. Easy to code. Based on Python type hints." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4523,7 +4307,6 @@ test = ["black (>=22.3.0,<23.0.0)", "coverage (>=6.2,<7.0)", "isort (>=5.0.6,<6. name = "types-chardet" version = "5.0.4.5" description = "Typing stubs for chardet" -category = "main" optional = false python-versions = "*" files = [ @@ -4535,7 +4318,6 @@ files = [ name = "types-cryptography" version = "3.3.23.2" description = "Typing stubs for cryptography" -category = "main" optional = false python-versions = "*" files = [ @@ -4547,7 +4329,6 @@ files = [ name = "types-dateparser" version = "1.1.4.9" description = "Typing stubs for dateparser" -category = "main" optional = false python-versions = "*" files = [ @@ -4559,7 +4340,6 @@ files = [ name = "types-decorator" version = "5.1.8.3" description = "Typing stubs for decorator" -category = "main" optional = false python-versions = "*" files = [ @@ -4571,7 +4351,6 @@ files = [ name = "types-emoji" version = "2.1.0.3" description = "Typing stubs for emoji" -category = "main" optional = false python-versions = "*" files = [ @@ -4583,7 +4362,6 @@ files = [ name = "types-filelock" version = "3.2.7" description = "Typing stubs for filelock" -category = "main" optional = false python-versions = "*" files = [ @@ -4595,7 +4373,6 @@ files = [ name = "types-futures" version = "3.3.8" description = "Typing stubs for futures" -category = "main" optional = false python-versions = "*" files = [ @@ -4607,7 +4384,6 @@ files = [ name = "types-ipaddress" version = "1.0.8" description = "Typing stubs for ipaddress" -category = "main" optional = false python-versions = "*" files = [ @@ -4619,7 +4395,6 @@ files = [ name = "types-markdown" version = "3.4.2.8" description = "Typing stubs for Markdown" -category = "main" optional = false python-versions = "*" files = [ @@ -4631,7 +4406,6 @@ files = [ name = "types-mock" version = "4.0.15.2" description = "Typing stubs for mock" -category = "main" optional = false python-versions = "*" files = [ @@ -4643,7 +4417,6 @@ files = [ name = "types-paramiko" version = "2.12.0.1" description = "Typing stubs for paramiko" -category = "main" optional = false python-versions = "*" files = [ @@ -4658,7 +4431,6 @@ types-cryptography = "*" name = "types-pkg-resources" version = "0.1.3" description = "Typing stubs for pkg_resources" -category = "main" optional = false python-versions = "*" files = [ @@ -4670,7 +4442,6 @@ files = [ name = "types-protobuf" version = "4.24.0.4" description = "Typing stubs for protobuf" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4682,7 +4453,6 @@ files = [ name = "types-pymysql" version = "1.0.19.6" description = "Typing stubs for PyMySQL" -category = "main" optional = false python-versions = "*" files = [ @@ -4694,7 +4464,6 @@ files = [ name = "types-python-dateutil" version = "2.8.19.12" description = "Typing stubs for python-dateutil" -category = "main" optional = false python-versions = "*" files = [ @@ -4706,7 +4475,6 @@ files = [ name = "types-pytz" version = "2022.7.1.2" description = "Typing stubs for pytz" -category = "main" optional = false python-versions = "*" files = [ @@ -4718,7 +4486,6 @@ files = [ name = "types-pyvmomi" version = "8.0.0.1" description = "Typing stubs for pyvmomi" -category = "main" optional = false python-versions = "*" files = [ @@ -4730,7 +4497,6 @@ files = [ name = "types-pyyaml" version = "6.0.12.9" description = "Typing stubs for PyYAML" -category = "main" optional = false python-versions = "*" files = [ @@ -4742,7 +4508,6 @@ files = [ name = "types-requests" version = "2.28.11" description = "Typing stubs for requests" -category = "main" optional = false python-versions = "*" files = [ @@ -4757,7 +4522,6 @@ types-urllib3 = "<1.27" name = "types-setuptools" version = "67.7.0.1" description = "Typing stubs for setuptools" -category = "main" optional = false python-versions = "*" files = [ @@ -4769,7 +4533,6 @@ files = [ name = "types-six" version = "1.16.21.8" description = "Typing stubs for six" -category = "main" optional = false python-versions = "*" files = [ @@ -4781,7 +4544,6 @@ files = [ name = "types-tabulate" version = "0.9.0.2" description = "Typing stubs for tabulate" -category = "main" optional = false python-versions = "*" files = [ @@ -4789,11 +4551,21 @@ files = [ {file = "types_tabulate-0.9.0.2-py3-none-any.whl", hash = "sha256:a2e41cc41b6b46bfaec78f8fd8e03058fda7a31af6f203a4b235f5482f571f6f"}, ] +[[package]] +name = "types-toml" +version = "0.10.8.7" +description = "Typing stubs for toml" +optional = false +python-versions = "*" +files = [ + {file = "types-toml-0.10.8.7.tar.gz", hash = "sha256:58b0781c681e671ff0b5c0319309910689f4ab40e8a2431e205d70c94bb6efb1"}, + {file = "types_toml-0.10.8.7-py3-none-any.whl", hash = "sha256:61951da6ad410794c97bec035d59376ce1cbf4453dc9b6f90477e81e4442d631"}, +] + [[package]] name = "types-ujson" version = "5.7.0.5" description = "Typing stubs for ujson" -category = "main" optional = false python-versions = "*" files = [ @@ -4805,7 +4577,6 @@ files = [ name = "types-urllib3" version = "1.26.25.12" description = "Typing stubs for urllib3" -category = "main" optional = false python-versions = "*" files = [ @@ -4817,7 +4588,6 @@ files = [ name = "typing-extensions" version = "4.5.0" description = "Backported and Experimental Type Hints for Python 3.7+" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4829,7 +4599,6 @@ files = [ name = "tzdata" version = "2023.3" description = "Provider of IANA time zone data" -category = "main" optional = false python-versions = ">=2" files = [ @@ -4841,7 +4610,6 @@ files = [ name = "tzlocal" version = "4.3" description = "tzinfo object for the local timezone" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4861,7 +4629,6 @@ devenv = ["black", "check-manifest", "flake8", "pyroma", "pytest (>=4.3)", "pyte name = "ujson" version = "5.7.0" description = "Ultra fast JSON encoder and decoder for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4936,7 +4703,6 @@ files = [ name = "urllib3" version = "1.26.15" description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ @@ -4953,7 +4719,6 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] name = "urwid" version = "2.1.2" description = "A full-featured console (xterm et al.) user interface library" -category = "dev" optional = false python-versions = "*" files = [ @@ -4964,7 +4729,6 @@ files = [ name = "virtualenv" version = "20.23.0" description = "Virtual Python Environment builder" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4985,7 +4749,6 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess name = "vulture" version = "2.7" description = "Find dead code" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -5000,7 +4763,6 @@ toml = "*" name = "wcmatch" version = "8.4.1" description = "Wildcard/glob file name matcher." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -5015,7 +4777,6 @@ bracex = ">=2.1.1" name = "wcwidth" version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" -category = "main" optional = false python-versions = "*" files = [ @@ -5027,7 +4788,6 @@ files = [ name = "websocket-client" version = "1.5.1" description = "WebSocket client for Python with low level API options" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -5044,7 +4804,6 @@ test = ["websockets"] name = "werkzeug" version = "2.3.3" description = "The comprehensive WSGI web application library." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -5062,7 +4821,6 @@ watchdog = ["watchdog (>=2.3)"] name = "wrapt" version = "1.13.3" description = "Module for decorators, wrappers and monkey patching." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ @@ -5123,7 +4881,6 @@ files = [ name = "wsproto" version = "1.1.0" description = "WebSockets state-machine based protocol implementation" -category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -5138,7 +4895,6 @@ h11 = ">=0.9.0,<1" name = "yamlordereddictloader" version = "0.4.0" description = "YAML loader and dump for PyYAML allowing to keep keys order." -category = "main" optional = false python-versions = "*" files = [ @@ -5152,7 +4908,6 @@ pyyaml = "*" name = "yarl" version = "1.9.2" description = "Yet another URL library" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -5240,7 +4995,6 @@ multidict = ">=4.0" name = "z3-solver" version = "4.12.1.0" description = "an efficient SMT solver library" -category = "main" optional = false python-versions = "*" files = [ @@ -5256,7 +5010,6 @@ files = [ name = "zipp" version = "3.15.0" description = "Backport of pathlib-compatible object wrapper for zip files" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -5272,7 +5025,6 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more name = "zstandard" version = "0.17.0" description = "Zstandard bindings for Python" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -5334,4 +5086,4 @@ build = ["gsutil"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "cd51c8be1024ee0daa7d6abeb2029744e54ca16542ce970a31ae16b164e38a5c" +content-hash = "33fe7c7066f8faf63bb3fd266faafa0e1eb5d52e145c35b6d0b1efc62dee5d1d" diff --git a/pyproject.toml b/pyproject.toml index a8d7bab2fe..2a716680b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -122,7 +122,6 @@ requests-mock = "^1.9.3" black = "^22.10.0" ipykernel = "^6.16.1" ruff = "^0.1.2" -pytest-split = "^0.8.1" [tool.poetry.extras] build = ["gsutil"] From 312c8ca0bab48b5c7586530ca41c5ad36e73ff3d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 24 Nov 2023 18:19:33 +0200 Subject: [PATCH 015/204] pytest-split --- poetry.lock | 276 +++++++++++++++++++++++++++++++++++++++++++++++-- pyproject.toml | 1 + 2 files changed, 269 insertions(+), 8 deletions(-) diff --git a/poetry.lock b/poetry.lock index 7f25c6a661..c334c888f6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,9 +1,10 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. [[package]] name = "aiohttp" version = "3.8.5" description = "Async http client/server framework (asyncio)" +category = "main" optional = true python-versions = ">=3.6" files = [ @@ -112,6 +113,7 @@ speedups = ["Brotli", "aiodns", "cchardet"] name = "aiosignal" version = "1.3.1" description = "aiosignal: a list of registered asynchronous callbacks" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -126,6 +128,7 @@ frozenlist = ">=1.1.0" name = "appnope" version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" +category = "dev" optional = false python-versions = "*" files = [ @@ -137,6 +140,7 @@ files = [ name = "argcomplete" version = "3.0.8" description = "Bash tab completion for argparse" +category = "main" optional = true python-versions = ">=3.6" files = [ @@ -151,6 +155,7 @@ test = ["coverage", "mypy", "pexpect", "ruff", "wheel"] name = "asgiref" version = "3.5.2" description = "ASGI specs, helper code, and adapters" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -165,6 +170,7 @@ tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] name = "astor" version = "0.8.1" description = "Read/rewrite/write Python ASTs" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -176,6 +182,7 @@ files = [ name = "astroid" version = "2.9.3" description = "An abstract syntax tree for Python with inference support." +category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -193,6 +200,7 @@ wrapt = ">=1.11,<1.14" name = "asttokens" version = "2.2.1" description = "Annotate AST trees with source code positions" +category = "dev" optional = false python-versions = "*" files = [ @@ -210,6 +218,7 @@ test = ["astroid", "pytest"] name = "async-timeout" version = "4.0.2" description = "Timeout context manager for asyncio programs" +category = "main" optional = true python-versions = ">=3.6" files = [ @@ -221,6 +230,7 @@ files = [ name = "attrs" version = "23.1.0" description = "Classes Without Boilerplate" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -239,6 +249,7 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte name = "autopep8" version = "1.7.0" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" +category = "main" optional = false python-versions = "*" files = [ @@ -254,6 +265,7 @@ toml = "*" name = "backcall" version = "0.2.0" description = "Specifications for callback functions passed in to an API" +category = "dev" optional = false python-versions = "*" files = [ @@ -265,6 +277,7 @@ files = [ name = "backports-zoneinfo" version = "0.2.1" description = "Backport of the standard library zoneinfo module" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -293,6 +306,7 @@ tzdata = ["tzdata"] name = "bandit" version = "1.7.5" description = "Security oriented static analyser for python code." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -316,6 +330,7 @@ yaml = ["PyYAML"] name = "bcrypt" version = "4.0.1" description = "Modern password hashing for your software and your servers" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -350,6 +365,7 @@ typecheck = ["mypy"] name = "beautifulsoup4" version = "4.12.2" description = "Screen-scraping library" +category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -368,6 +384,7 @@ lxml = ["lxml"] name = "black" version = "22.12.0" description = "The uncompromising code formatter." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -403,6 +420,7 @@ uvloop = ["uvloop (>=0.15.2)"] name = "blinker" version = "1.4" description = "Fast, simple object-to-object and broadcast signaling" +category = "dev" optional = false python-versions = "*" files = [ @@ -413,6 +431,7 @@ files = [ name = "boto" version = "2.49.0" description = "Amazon Web Services Library" +category = "main" optional = true python-versions = "*" files = [ @@ -424,6 +443,7 @@ files = [ name = "bracex" version = "2.3.post1" description = "Bash style brace expander." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -435,6 +455,7 @@ files = [ name = "brotli" version = "1.0.9" description = "Python bindings for the Brotli compression library" +category = "dev" optional = false python-versions = "*" files = [ @@ -526,6 +547,7 @@ files = [ name = "cachetools" version = "5.3.0" description = "Extensible memoizing collections and decorators" +category = "main" optional = false python-versions = "~=3.7" files = [ @@ -537,6 +559,7 @@ files = [ name = "certifi" version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -548,6 +571,7 @@ files = [ name = "cffi" version = "1.15.1" description = "Foreign Function Interface for Python calling C code." +category = "main" optional = false python-versions = "*" files = [ @@ -624,6 +648,7 @@ pycparser = "*" name = "cfgv" version = "3.3.1" description = "Validate configuration and produce human readable error messages." +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -635,6 +660,7 @@ files = [ name = "chardet" version = "5.1.0" description = "Universal encoding detector for Python 3" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -646,6 +672,7 @@ files = [ name = "charset-normalizer" version = "3.1.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +category = "main" optional = false python-versions = ">=3.7.0" files = [ @@ -730,6 +757,7 @@ files = [ name = "click" version = "8.1.3" description = "Composable command line interface toolkit" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -744,6 +772,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -755,6 +784,7 @@ files = [ name = "coloredlogs" version = "15.0.1" description = "Colored terminal output for Python's logging module" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -772,6 +802,7 @@ cron = ["capturer (>=2.4)"] name = "comm" version = "0.1.3" description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -791,6 +822,7 @@ typing = ["mypy (>=0.990)"] name = "commonmark" version = "0.9.1" description = "Python parser for the CommonMark Markdown spec" +category = "main" optional = false python-versions = "*" files = [ @@ -805,6 +837,7 @@ test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"] name = "configargparse" version = "1.5.3" description = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -820,6 +853,7 @@ yaml = ["PyYAML"] name = "configparser" version = "5.3.0" description = "Updated configparser from stdlib for earlier Pythons." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -835,6 +869,7 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec name = "coverage" version = "7.2.5" description = "Code coverage measurement for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -901,6 +936,7 @@ toml = ["tomli"] name = "crcmod" version = "1.7" description = "CRC Generator" +category = "main" optional = true python-versions = "*" files = [ @@ -911,6 +947,7 @@ files = [ name = "cryptography" version = "36.0.2" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -951,6 +988,7 @@ test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0 name = "dateparser" version = "1.1.8" description = "Date parsing library designed to parse dates from HTML pages" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -973,6 +1011,7 @@ langdetect = ["langdetect"] name = "debugpy" version = "1.6.7" description = "An implementation of the Debug Adapter Protocol for Python" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1000,6 +1039,7 @@ files = [ name = "decorator" version = "5.1.1" description = "Decorators for Humans" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1011,6 +1051,7 @@ files = [ name = "demisto-py" version = "3.2.10" description = "A Python library for the Demisto API" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -1023,13 +1064,14 @@ certifi = ">=2017.4.17" python-dateutil = ">=2.5.3" setuptools = ">=21.0.0" six = ">=1.10" -tzlocal = "==4.*" +tzlocal = ">=4.0.0,<5.0.0" urllib3 = ">=1.26.7" [[package]] name = "dictdiffer" version = "0.9.0" description = "Dictdiffer is a library that helps you to diff and patch dictionaries." +category = "main" optional = false python-versions = "*" files = [ @@ -1047,6 +1089,7 @@ tests = ["check-manifest (>=0.42)", "mock (>=1.3.0)", "pytest (==5.4.3)", "pytes name = "dictor" version = "0.1.11" description = "an elegant dictionary and JSON handler" +category = "main" optional = false python-versions = "*" files = [ @@ -1057,6 +1100,7 @@ files = [ name = "distlib" version = "0.3.6" description = "Distribution utilities" +category = "dev" optional = false python-versions = "*" files = [ @@ -1068,6 +1112,7 @@ files = [ name = "docker" version = "5.0.3" description = "A Python library for the Docker Engine API." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1088,6 +1133,7 @@ tls = ["cryptography (>=3.4.7)", "idna (>=2.0.0)", "pyOpenSSL (>=17.5.0)"] name = "docopt" version = "0.6.2" description = "Pythonic argument parser, that will make you smile" +category = "main" optional = false python-versions = "*" files = [ @@ -1098,6 +1144,7 @@ files = [ name = "exceptiongroup" version = "1.1.1" description = "Backport of PEP 654 (exception groups)" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1112,6 +1159,7 @@ test = ["pytest (>=6)"] name = "executing" version = "1.2.0" description = "Get the currently executing AST node of a frame, and other information" +category = "dev" optional = false python-versions = "*" files = [ @@ -1126,6 +1174,7 @@ tests = ["asttokens", "littleutils", "pytest", "rich"] name = "fasteners" version = "0.18" description = "A python package that provides useful locks" +category = "main" optional = true python-versions = ">=3.6" files = [ @@ -1137,6 +1186,7 @@ files = [ name = "filelock" version = "3.12.0" description = "A platform independent file lock." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1152,6 +1202,7 @@ testing = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "diff-cover (>=7.5)", "p name = "flask" version = "2.0.3" description = "A simple framework for building complex web applications." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1173,6 +1224,7 @@ dotenv = ["python-dotenv"] name = "flatten-dict" version = "0.4.2" description = "A flexible utility for flattening and unflattening dict-like objects in Python." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1187,6 +1239,7 @@ six = ">=1.12,<2.0" name = "freezegun" version = "1.2.2" description = "Let your Python tests travel through time" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1201,6 +1254,7 @@ python-dateutil = ">=2.7" name = "frozenlist" version = "1.3.3" description = "A list-like structure which implements collections.abc.MutableSequence" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -1284,6 +1338,7 @@ files = [ name = "future" version = "0.18.3" description = "Clean single-source support for Python 3 and 2" +category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1294,6 +1349,7 @@ files = [ name = "gcs-oauth2-boto-plugin" version = "3.0" description = "Auth plugin allowing use the use of OAuth 2.0 credentials for Google Cloud Storage in the Boto library." +category = "main" optional = true python-versions = "*" files = [ @@ -1317,6 +1373,7 @@ dev = ["freezegun", "mock"] name = "gitdb" version = "4.0.10" description = "Git Object Database" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1331,6 +1388,7 @@ smmap = ">=3.0.1,<6" name = "gitpython" version = "3.1.37" description = "GitPython is a Python library used to interact with Git repositories" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1348,6 +1406,7 @@ test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mypy", "pre-commit" name = "giturlparse" version = "0.10.0" description = "A Git URL parsing module (supports parsing and rewriting)" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1359,6 +1418,7 @@ files = [ name = "google-api-core" version = "2.11.0" description = "Google API client core library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1383,6 +1443,7 @@ grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] name = "google-apitools" version = "0.5.32" description = "client libraries for humans" +category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1404,6 +1465,7 @@ testing = ["mock (>=1.0.1)"] name = "google-auth" version = "2.23.4" description = "Google Authentication Library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1429,6 +1491,7 @@ requests = ["requests (>=2.20.0,<3.0.0.dev0)"] name = "google-cloud-core" version = "2.3.2" description = "Google Cloud API client core library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1437,7 +1500,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.6,<2.0.dev0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev" google-auth = ">=1.25.0,<3.0dev" [package.extras] @@ -1447,6 +1510,7 @@ grpc = ["grpcio (>=1.38.0,<2.0dev)"] name = "google-cloud-secret-manager" version = "2.16.4" description = "Google Cloud Secret Manager API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1455,7 +1519,7 @@ files = [ ] [package.dependencies] -google-api-core = {version = ">=1.34.0,<2.0.dev0 || >=2.11.dev0,<3.0.0dev", extras = ["grpc"]} +google-api-core = {version = ">=1.34.0,<2.0.0 || >=2.11.0,<3.0.0dev", extras = ["grpc"]} grpc-google-iam-v1 = ">=0.12.4,<1.0.0dev" proto-plus = ">=1.22.0,<2.0.0dev" protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" @@ -1464,6 +1528,7 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4 name = "google-cloud-storage" version = "2.13.0" description = "Google Cloud Storage API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1472,7 +1537,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev" google-auth = ">=2.23.3,<3.0dev" google-cloud-core = ">=2.3.0,<3.0dev" google-crc32c = ">=1.0,<2.0dev" @@ -1486,6 +1551,7 @@ protobuf = ["protobuf (<5.0.0dev)"] name = "google-crc32c" version = "1.5.0" description = "A python wrapper of the C library 'Google CRC32C'" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1566,6 +1632,7 @@ testing = ["pytest"] name = "google-reauth" version = "0.1.1" description = "Google Reauth Library" +category = "main" optional = true python-versions = "*" files = [ @@ -1583,6 +1650,7 @@ oauth2client = ["oauth2client (>=2.0.0)"] name = "google-resumable-media" version = "2.6.0" description = "Utilities for Google Media Downloads and Resumable Uploads" +category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -1601,6 +1669,7 @@ requests = ["requests (>=2.18.0,<3.0.0dev)"] name = "googleapis-common-protos" version = "1.59.0" description = "Common protobufs used in Google APIs" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1619,6 +1688,7 @@ grpc = ["grpcio (>=1.44.0,<2.0.0dev)"] name = "grpc-google-iam-v1" version = "0.12.7" description = "IAM API client library" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1635,6 +1705,7 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4 name = "grpcio" version = "1.59.2" description = "HTTP/2-based RPC framework" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1701,6 +1772,7 @@ protobuf = ["grpcio-tools (>=1.59.2)"] name = "grpcio-status" version = "1.48.2" description = "Status proto mapping for gRPC" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1717,6 +1789,7 @@ protobuf = ">=3.12.0" name = "gsutil" version = "5.17" description = "A command line tool for interacting with cloud storage services." +category = "main" optional = true python-versions = "!=2.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" files = [ @@ -1741,6 +1814,7 @@ six = ">=1.12.0" name = "h11" version = "0.13.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1752,6 +1826,7 @@ files = [ name = "h2" version = "4.1.0" description = "HTTP/2 State-Machine based protocol implementation" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1767,6 +1842,7 @@ hyperframe = ">=6.0,<7" name = "hpack" version = "4.0.0" description = "Pure-Python HPACK header compression" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1778,6 +1854,7 @@ files = [ name = "httplib2" version = "0.20.4" description = "A comprehensive HTTP client library." +category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1792,6 +1869,7 @@ pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0 name = "humanfriendly" version = "10.0" description = "Human friendly output for text interfaces using Python" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1806,6 +1884,7 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve name = "hyperframe" version = "6.0.1" description = "HTTP/2 framing layer for Python" +category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1817,6 +1896,7 @@ files = [ name = "identify" version = "2.5.24" description = "File identification library for Python" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1831,6 +1911,7 @@ license = ["ukkonen"] name = "idna" version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1842,6 +1923,7 @@ files = [ name = "imagesize" version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1853,6 +1935,7 @@ files = [ name = "importlib-metadata" version = "6.6.0" description = "Read metadata from Python packages" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1872,6 +1955,7 @@ testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packag name = "importlib-resources" version = "5.12.0" description = "Read resources from Python packages" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1890,6 +1974,7 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec name = "inflection" version = "0.5.1" description = "A port of Ruby on Rails inflector to Python" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1901,6 +1986,7 @@ files = [ name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1912,6 +1998,7 @@ files = [ name = "ipykernel" version = "6.22.0" description = "IPython Kernel for Jupyter" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -1925,7 +2012,7 @@ comm = ">=0.1.1" debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" @@ -1945,6 +2032,7 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio" name = "ipython" version = "8.12.1" description = "IPython: Productive Interactive Computing" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -1984,6 +2072,7 @@ test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pa name = "isort" version = "5.12.0" description = "A Python utility / library to sort Python imports." +category = "main" optional = false python-versions = ">=3.8.0" files = [ @@ -2001,6 +2090,7 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "itsdangerous" version = "2.1.2" description = "Safely pass data to untrusted environments and back." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2012,6 +2102,7 @@ files = [ name = "jedi" version = "0.18.2" description = "An autocompletion tool for Python that can be used for text editors." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2031,6 +2122,7 @@ testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2048,6 +2140,7 @@ i18n = ["Babel (>=2.7)"] name = "joblib" version = "1.2.0" description = "Lightweight pipelining with Python functions" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2059,6 +2152,7 @@ files = [ name = "json5" version = "0.9.14" description = "A Python implementation of the JSON5 data format." +category = "main" optional = false python-versions = "*" files = [ @@ -2073,6 +2167,7 @@ dev = ["hypothesis"] name = "jsonschema" version = "4.17.3" description = "An implementation of JSON Schema validation for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2094,6 +2189,7 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- name = "junitparser" version = "3.1.0" description = "Manipulates JUnit/xUnit Result XML files" +category = "main" optional = false python-versions = "*" files = [ @@ -2108,6 +2204,7 @@ future = "*" name = "jupyter-client" version = "8.2.0" description = "Jupyter protocol implementation and client libraries" +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2117,7 +2214,7 @@ files = [ [package.dependencies] importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" tornado = ">=6.2" @@ -2131,6 +2228,7 @@ test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pyt name = "jupyter-core" version = "5.2.0" description = "Jupyter core package. A base package on which Jupyter projects rely." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2151,6 +2249,7 @@ test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] name = "kaitaistruct" version = "0.9" description = "Kaitai Struct declarative parser generator for binary data: runtime library for Python" +category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -2161,6 +2260,7 @@ files = [ name = "klara" version = "0.6.3" description = "Automatic test case generation and static analysis library" +category = "main" optional = false python-versions = ">=3.6.2,<4.0" files = [ @@ -2178,6 +2278,7 @@ z3-solver = ">=4.8.12,<5.0.0" name = "lazy-object-proxy" version = "1.9.0" description = "A fast and thorough lazy object proxy." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2223,6 +2324,7 @@ files = [ name = "ldap3" version = "2.9.1" description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library" +category = "dev" optional = false python-versions = "*" files = [ @@ -2237,6 +2339,7 @@ pyasn1 = ">=0.4.6" name = "markupsafe" version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2296,6 +2399,7 @@ files = [ name = "matplotlib-inline" version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" +category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2310,6 +2414,7 @@ traitlets = "*" name = "mccabe" version = "0.6.1" description = "McCabe checker, plugin for flake8" +category = "main" optional = false python-versions = "*" files = [ @@ -2321,6 +2426,7 @@ files = [ name = "mergedeep" version = "1.3.4" description = "A deep merge function for 🐍." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2332,6 +2438,7 @@ files = [ name = "mitmproxy" version = "8.0.0" description = "An interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2373,6 +2480,7 @@ dev = ["click (>=7.0,<8.1)", "hypothesis (>=5.8,<7)", "parver (>=0.1,<2.0)", "pd name = "mock" version = "4.0.3" description = "Rolling backport of unittest.mock for all Pythons" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2389,6 +2497,7 @@ test = ["pytest (<5.4)", "pytest-cov"] name = "monotonic" version = "1.6" description = "An implementation of time.monotonic() for Python 2 & < 3.3" +category = "main" optional = true python-versions = "*" files = [ @@ -2400,6 +2509,7 @@ files = [ name = "more-itertools" version = "9.1.0" description = "More routines for operating on iterables, beyond itertools" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2411,6 +2521,7 @@ files = [ name = "msgpack" version = "1.0.5" description = "MessagePack serializer" +category = "dev" optional = false python-versions = "*" files = [ @@ -2483,6 +2594,7 @@ files = [ name = "multidict" version = "6.0.4" description = "multidict implementation" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2566,6 +2678,7 @@ files = [ name = "mypy" version = "0.982" description = "Optional static typing for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2609,6 +2722,7 @@ reports = ["lxml"] name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -2620,6 +2734,7 @@ files = [ name = "neo4j" version = "5.14.1" description = "Neo4j Bolt driver for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2638,6 +2753,7 @@ pyarrow = ["pyarrow (>=1.0.0)"] name = "nest-asyncio" version = "1.5.6" description = "Patch asyncio to allow nested event loops" +category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2649,6 +2765,7 @@ files = [ name = "networkx" version = "2.8.8" description = "Python package for creating and manipulating graphs and networks" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -2667,6 +2784,7 @@ test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] name = "nltk" version = "3.8.1" description = "Natural Language Toolkit" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2692,6 +2810,7 @@ twitter = ["twython"] name = "nodeenv" version = "1.7.0" description = "Node.js virtual environment builder" +category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ @@ -2706,6 +2825,7 @@ setuptools = "*" name = "oauth2client" version = "4.1.3" description = "OAuth 2.0 client library" +category = "main" optional = true python-versions = "*" files = [ @@ -2724,6 +2844,7 @@ six = ">=1.6.1" name = "ordered-set" version = "4.1.0" description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2738,6 +2859,7 @@ dev = ["black", "mypy", "pytest"] name = "orjson" version = "3.8.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" +category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -2798,6 +2920,7 @@ files = [ name = "packaging" version = "23.1" description = "Core utilities for Python packages" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2809,6 +2932,7 @@ files = [ name = "paramiko" version = "2.12.0" description = "SSH2 protocol library" +category = "main" optional = false python-versions = "*" files = [ @@ -2832,6 +2956,7 @@ invoke = ["invoke (>=1.3)"] name = "parso" version = "0.8.3" description = "A Python Parser" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2847,6 +2972,7 @@ testing = ["docopt", "pytest (<6.0.0)"] name = "passlib" version = "1.7.4" description = "comprehensive password hashing framework supporting over 30 schemes" +category = "dev" optional = false python-versions = "*" files = [ @@ -2864,6 +2990,7 @@ totp = ["cryptography"] name = "pathspec" version = "0.11.1" description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2875,6 +3002,7 @@ files = [ name = "pbr" version = "5.11.1" description = "Python Build Reasonableness" +category = "main" optional = false python-versions = ">=2.6" files = [ @@ -2886,6 +3014,7 @@ files = [ name = "pebble" version = "5.0.3" description = "Threading and multiprocessing eye-candy." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2897,6 +3026,7 @@ files = [ name = "pexpect" version = "4.8.0" description = "Pexpect allows easy control of interactive console applications." +category = "dev" optional = false python-versions = "*" files = [ @@ -2911,6 +3041,7 @@ ptyprocess = ">=0.5" name = "pickleshare" version = "0.7.5" description = "Tiny 'shelve'-like database with concurrency support" +category = "dev" optional = false python-versions = "*" files = [ @@ -2922,6 +3053,7 @@ files = [ name = "pkgutil-resolve-name" version = "1.3.10" description = "Resolve a name to an object." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2933,6 +3065,7 @@ files = [ name = "platformdirs" version = "3.5.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2948,6 +3081,7 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest- name = "pluggy" version = "1.0.0" description = "plugin and hook calling mechanisms for python" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2963,6 +3097,7 @@ testing = ["pytest", "pytest-benchmark"] name = "pre-commit" version = "2.21.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2981,6 +3116,7 @@ virtualenv = ">=20.10.0" name = "prettytable" version = "3.7.0" description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2998,6 +3134,7 @@ tests = ["pytest", "pytest-cov", "pytest-lazy-fixture"] name = "prompt-toolkit" version = "3.0.38" description = "Library for building powerful interactive command lines in Python" +category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -3012,6 +3149,7 @@ wcwidth = "*" name = "proto-plus" version = "1.22.3" description = "Beautiful, Pythonic protocol buffers." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3029,6 +3167,7 @@ testing = ["google-api-core[grpc] (>=1.31.5)"] name = "protobuf" version = "3.19.6" description = "Protocol Buffers" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3063,6 +3202,7 @@ files = [ name = "psutil" version = "5.9.5" description = "Cross-platform lib for process and system monitoring in Python." +category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3089,6 +3229,7 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" +category = "dev" optional = false python-versions = "*" files = [ @@ -3100,6 +3241,7 @@ files = [ name = "publicsuffix2" version = "2.20191221" description = "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package." +category = "dev" optional = false python-versions = "*" files = [ @@ -3111,6 +3253,7 @@ files = [ name = "pure-eval" version = "0.2.2" description = "Safely evaluate AST nodes without side effects" +category = "dev" optional = false python-versions = "*" files = [ @@ -3125,6 +3268,7 @@ tests = ["pytest"] name = "pyasn1" version = "0.5.0" description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3136,6 +3280,7 @@ files = [ name = "pyasn1-modules" version = "0.3.0" description = "A collection of ASN.1-based protocols modules" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3150,6 +3295,7 @@ pyasn1 = ">=0.4.6,<0.6.0" name = "pycodestyle" version = "2.10.0" description = "Python style guide checker" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3161,6 +3307,7 @@ files = [ name = "pycparser" version = "2.21" description = "C parser in Python" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3172,6 +3319,7 @@ files = [ name = "pydantic" version = "1.10.7" description = "Data validation and settings management using python type hints" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3224,6 +3372,7 @@ email = ["email-validator (>=1.0.3)"] name = "pydivert" version = "2.1.0" description = "Python binding to windivert driver" +category = "dev" optional = false python-versions = "*" files = [ @@ -3239,6 +3388,7 @@ test = ["codecov (>=2.0.5)", "hypothesis (>=3.5.3)", "mock (>=1.0.1)", "pytest ( name = "pygments" version = "2.15.1" description = "Pygments is a syntax highlighting package written in Python." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3253,6 +3403,7 @@ plugins = ["importlib-metadata"] name = "pykwalify" version = "1.8.0" description = "Python lib/cli for JSON/YAML schema validation" +category = "main" optional = false python-versions = "*" files = [ @@ -3269,6 +3420,7 @@ python-dateutil = ">=2.8.0" name = "pylint" version = "2.12.2" description = "python code static checker" +category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -3289,6 +3441,7 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\"" name = "pynacl" version = "1.5.0" description = "Python binding to the Networking and Cryptography (NaCl) library" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3315,6 +3468,7 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] name = "pyopenssl" version = "22.0.0" description = "Python wrapper module around the OpenSSL library" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3333,6 +3487,7 @@ test = ["flaky", "pretend", "pytest (>=3.0.1)"] name = "pyparsing" version = "3.0.9" description = "pyparsing module - Classes and methods to define and execute parsing grammars" +category = "main" optional = false python-versions = ">=3.6.8" files = [ @@ -3347,6 +3502,7 @@ diagrams = ["jinja2", "railroad-diagrams"] name = "pypdf2" version = "1.28.6" description = "A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files" +category = "main" optional = false python-versions = ">=2.7" files = [ @@ -3358,6 +3514,7 @@ files = [ name = "pyperclip" version = "1.8.2" description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" +category = "dev" optional = false python-versions = "*" files = [ @@ -3368,6 +3525,7 @@ files = [ name = "pyreadline3" version = "3.4.1" description = "A python implementation of GNU readline." +category = "main" optional = false python-versions = "*" files = [ @@ -3379,6 +3537,7 @@ files = [ name = "pyrsistent" version = "0.19.3" description = "Persistent/Functional/Immutable data structures" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3415,6 +3574,7 @@ files = [ name = "pyspellchecker" version = "0.6.3" description = "Pure python spell checker based on work by Peter Norvig" +category = "main" optional = false python-versions = "*" files = [ @@ -3426,6 +3586,7 @@ files = [ name = "pytest" version = "7.3.1" description = "pytest: simple powerful testing with Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3448,6 +3609,7 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no name = "pytest-cov" version = "4.0.0" description = "Pytest plugin for measuring coverage." +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3466,6 +3628,7 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-datadir-ng" version = "1.1.1" description = "Fixtures for pytest allowing test functions/methods to easily retrieve test resources from the local filesystem." +category = "dev" optional = false python-versions = "*" files = [ @@ -3480,6 +3643,7 @@ pytest = "*" name = "pytest-freezegun" version = "0.4.2" description = "Wrap tests with fixtures in freeze_time" +category = "main" optional = false python-versions = "*" files = [ @@ -3495,6 +3659,7 @@ pytest = ">=3.0.0" name = "pytest-mock" version = "3.10.0" description = "Thin-wrapper around the mock package for easier use with pytest" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3508,10 +3673,26 @@ 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." +category = "dev" +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" description = "A plugin to fake subprocess for pytest" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3531,6 +3712,7 @@ test = ["Pygments (>=2.0)", "anyio", "coverage", "docutils (>=0.12)", "pytest (> name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ @@ -3545,6 +3727,7 @@ six = ">=1.5" name = "python-dotenv" version = "0.20.0" description = "Read key-value pairs from a .env file and set them as environment variables" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3559,6 +3742,7 @@ cli = ["click (>=5.0)"] name = "pytz" version = "2023.3" description = "World timezone definitions, modern and historical" +category = "main" optional = false python-versions = "*" files = [ @@ -3570,6 +3754,7 @@ files = [ name = "pytz-deprecation-shim" version = "0.1.0.post0" description = "Shims to make deprecation of pytz easier" +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3585,6 +3770,7 @@ tzdata = {version = "*", markers = "python_version >= \"3.6\""} name = "pyu2f" version = "0.1.5" description = "U2F host library for interacting with a U2F device over USB." +category = "main" optional = true python-versions = "*" files = [ @@ -3598,6 +3784,7 @@ six = "*" name = "pywin32" version = "227" description = "Python for Window Extensions" +category = "main" optional = false python-versions = "*" files = [ @@ -3619,6 +3806,7 @@ files = [ name = "pyyaml" version = "6.0" description = "YAML parser and emitter for Python" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3668,6 +3856,7 @@ files = [ name = "pyzmq" version = "25.0.2" description = "Python bindings for 0MQ" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3757,6 +3946,7 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""} name = "regex" version = "2023.5.5" description = "Alternative regular expression module, to replace re." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3854,6 +4044,7 @@ files = [ name = "requests" version = "2.29.0" description = "Python HTTP for Humans." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3875,6 +4066,7 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] name = "requests-mock" version = "1.10.0" description = "Mock out responses from the requests package" +category = "dev" optional = false python-versions = "*" files = [ @@ -3894,6 +4086,7 @@ test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "tes name = "retry-decorator" version = "1.1.1" description = "Retry Decorator" +category = "main" optional = true python-versions = "*" files = [ @@ -3904,6 +4097,7 @@ files = [ name = "rich" version = "12.6.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +category = "main" optional = false python-versions = ">=3.6.3,<4.0.0" files = [ @@ -3923,6 +4117,7 @@ jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] name = "rsa" version = "4.7.2" description = "Pure-Python RSA implementation" +category = "main" optional = false python-versions = ">=3.5, <4" files = [ @@ -3937,6 +4132,7 @@ pyasn1 = ">=0.1.3" name = "ruamel-yaml" version = "0.17.22" description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" +category = "main" optional = false python-versions = ">=3" files = [ @@ -3955,6 +4151,7 @@ jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] name = "ruamel-yaml-clib" version = "0.2.7" description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" +category = "main" optional = false python-versions = ">=3.5" files = [ @@ -4001,6 +4198,7 @@ files = [ name = "ruff" version = "0.1.2" description = "An extremely fast Python linter, written in Rust." +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4027,6 +4225,7 @@ files = [ name = "setuptools" version = "67.7.2" description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4043,6 +4242,7 @@ testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs ( name = "shellingham" version = "1.5.0.post1" description = "Tool to Detect Surrounding Shell" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4054,6 +4254,7 @@ files = [ name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4065,6 +4266,7 @@ files = [ name = "slack-sdk" version = "3.21.3" description = "The Slack API Platform SDK for Python" +category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -4080,6 +4282,7 @@ testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "We name = "smmap" version = "5.0.0" description = "A pure Python implementation of a sliding window memory map manager" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4091,6 +4294,7 @@ files = [ name = "sortedcontainers" version = "2.4.0" description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +category = "dev" optional = false python-versions = "*" files = [ @@ -4102,6 +4306,7 @@ files = [ name = "soupsieve" version = "2.4.1" description = "A modern CSS selector implementation for Beautiful Soup." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4113,6 +4318,7 @@ files = [ name = "stack-data" version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" +category = "dev" optional = false python-versions = "*" files = [ @@ -4132,6 +4338,7 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] name = "stevedore" version = "5.0.0" description = "Manage dynamic plugins for Python applications" +category = "main" optional = false python-versions = ">=3.8" files = [ @@ -4146,6 +4353,7 @@ pbr = ">=2.0.0,<2.1.0 || >2.1.0" name = "tabulate" version = "0.9.0" description = "Pretty-print tabular data" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4160,6 +4368,7 @@ widechars = ["wcwidth"] name = "tenacity" version = "8.2.3" description = "Retry code until it succeeds" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4174,6 +4383,7 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"] name = "toml" version = "0.10.2" description = "Python Library for Tom's Obvious, Minimal Language" +category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4185,6 +4395,7 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4196,6 +4407,7 @@ files = [ name = "tornado" version = "6.3.1" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +category = "dev" optional = false python-versions = ">= 3.8" files = [ @@ -4216,6 +4428,7 @@ files = [ name = "tqdm" version = "4.65.0" description = "Fast, Extensible Progress Meter" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4236,6 +4449,7 @@ telegram = ["requests"] name = "traitlets" version = "5.9.0" description = "Traitlets Python configuration system" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4251,6 +4465,7 @@ test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] name = "typed-ast" version = "1.5.4" description = "a fork of Python 2 and 3 ast modules with type comment support" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4284,6 +4499,7 @@ files = [ name = "typer" version = "0.7.0" description = "Typer, build great CLIs. Easy to code. Based on Python type hints." +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4307,6 +4523,7 @@ test = ["black (>=22.3.0,<23.0.0)", "coverage (>=6.2,<7.0)", "isort (>=5.0.6,<6. name = "types-chardet" version = "5.0.4.5" description = "Typing stubs for chardet" +category = "main" optional = false python-versions = "*" files = [ @@ -4318,6 +4535,7 @@ files = [ name = "types-cryptography" version = "3.3.23.2" description = "Typing stubs for cryptography" +category = "main" optional = false python-versions = "*" files = [ @@ -4329,6 +4547,7 @@ files = [ name = "types-dateparser" version = "1.1.4.9" description = "Typing stubs for dateparser" +category = "main" optional = false python-versions = "*" files = [ @@ -4340,6 +4559,7 @@ files = [ name = "types-decorator" version = "5.1.8.3" description = "Typing stubs for decorator" +category = "main" optional = false python-versions = "*" files = [ @@ -4351,6 +4571,7 @@ files = [ name = "types-emoji" version = "2.1.0.3" description = "Typing stubs for emoji" +category = "main" optional = false python-versions = "*" files = [ @@ -4362,6 +4583,7 @@ files = [ name = "types-filelock" version = "3.2.7" description = "Typing stubs for filelock" +category = "main" optional = false python-versions = "*" files = [ @@ -4373,6 +4595,7 @@ files = [ name = "types-futures" version = "3.3.8" description = "Typing stubs for futures" +category = "main" optional = false python-versions = "*" files = [ @@ -4384,6 +4607,7 @@ files = [ name = "types-ipaddress" version = "1.0.8" description = "Typing stubs for ipaddress" +category = "main" optional = false python-versions = "*" files = [ @@ -4395,6 +4619,7 @@ files = [ name = "types-markdown" version = "3.4.2.8" description = "Typing stubs for Markdown" +category = "main" optional = false python-versions = "*" files = [ @@ -4406,6 +4631,7 @@ files = [ name = "types-mock" version = "4.0.15.2" description = "Typing stubs for mock" +category = "main" optional = false python-versions = "*" files = [ @@ -4417,6 +4643,7 @@ files = [ name = "types-paramiko" version = "2.12.0.1" description = "Typing stubs for paramiko" +category = "main" optional = false python-versions = "*" files = [ @@ -4431,6 +4658,7 @@ types-cryptography = "*" name = "types-pkg-resources" version = "0.1.3" description = "Typing stubs for pkg_resources" +category = "main" optional = false python-versions = "*" files = [ @@ -4442,6 +4670,7 @@ files = [ name = "types-protobuf" version = "4.24.0.4" description = "Typing stubs for protobuf" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4453,6 +4682,7 @@ files = [ name = "types-pymysql" version = "1.0.19.6" description = "Typing stubs for PyMySQL" +category = "main" optional = false python-versions = "*" files = [ @@ -4464,6 +4694,7 @@ files = [ name = "types-python-dateutil" version = "2.8.19.12" description = "Typing stubs for python-dateutil" +category = "main" optional = false python-versions = "*" files = [ @@ -4475,6 +4706,7 @@ files = [ name = "types-pytz" version = "2022.7.1.2" description = "Typing stubs for pytz" +category = "main" optional = false python-versions = "*" files = [ @@ -4486,6 +4718,7 @@ files = [ name = "types-pyvmomi" version = "8.0.0.1" description = "Typing stubs for pyvmomi" +category = "main" optional = false python-versions = "*" files = [ @@ -4497,6 +4730,7 @@ files = [ name = "types-pyyaml" version = "6.0.12.9" description = "Typing stubs for PyYAML" +category = "main" optional = false python-versions = "*" files = [ @@ -4508,6 +4742,7 @@ files = [ name = "types-requests" version = "2.28.11" description = "Typing stubs for requests" +category = "main" optional = false python-versions = "*" files = [ @@ -4522,6 +4757,7 @@ types-urllib3 = "<1.27" name = "types-setuptools" version = "67.7.0.1" description = "Typing stubs for setuptools" +category = "main" optional = false python-versions = "*" files = [ @@ -4533,6 +4769,7 @@ files = [ name = "types-six" version = "1.16.21.8" description = "Typing stubs for six" +category = "main" optional = false python-versions = "*" files = [ @@ -4544,6 +4781,7 @@ files = [ name = "types-tabulate" version = "0.9.0.2" description = "Typing stubs for tabulate" +category = "main" optional = false python-versions = "*" files = [ @@ -4555,6 +4793,7 @@ files = [ name = "types-toml" version = "0.10.8.7" description = "Typing stubs for toml" +category = "main" optional = false python-versions = "*" files = [ @@ -4566,6 +4805,7 @@ files = [ name = "types-ujson" version = "5.7.0.5" description = "Typing stubs for ujson" +category = "main" optional = false python-versions = "*" files = [ @@ -4577,6 +4817,7 @@ files = [ name = "types-urllib3" version = "1.26.25.12" description = "Typing stubs for urllib3" +category = "main" optional = false python-versions = "*" files = [ @@ -4588,6 +4829,7 @@ files = [ name = "typing-extensions" version = "4.5.0" description = "Backported and Experimental Type Hints for Python 3.7+" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4599,6 +4841,7 @@ files = [ name = "tzdata" version = "2023.3" description = "Provider of IANA time zone data" +category = "main" optional = false python-versions = ">=2" files = [ @@ -4610,6 +4853,7 @@ files = [ name = "tzlocal" version = "4.3" description = "tzinfo object for the local timezone" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4629,6 +4873,7 @@ devenv = ["black", "check-manifest", "flake8", "pyroma", "pytest (>=4.3)", "pyte name = "ujson" version = "5.7.0" description = "Ultra fast JSON encoder and decoder for Python" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4703,6 +4948,7 @@ files = [ name = "urllib3" version = "1.26.15" description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ @@ -4719,6 +4965,7 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] name = "urwid" version = "2.1.2" description = "A full-featured console (xterm et al.) user interface library" +category = "dev" optional = false python-versions = "*" files = [ @@ -4729,6 +4976,7 @@ files = [ name = "virtualenv" version = "20.23.0" description = "Virtual Python Environment builder" +category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4749,6 +4997,7 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess name = "vulture" version = "2.7" description = "Find dead code" +category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4763,6 +5012,7 @@ toml = "*" name = "wcmatch" version = "8.4.1" description = "Wildcard/glob file name matcher." +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4777,6 +5027,7 @@ bracex = ">=2.1.1" name = "wcwidth" version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" +category = "main" optional = false python-versions = "*" files = [ @@ -4788,6 +5039,7 @@ files = [ name = "websocket-client" version = "1.5.1" description = "WebSocket client for Python with low level API options" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4804,6 +5056,7 @@ test = ["websockets"] name = "werkzeug" version = "2.3.3" description = "The comprehensive WSGI web application library." +category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -4821,6 +5074,7 @@ watchdog = ["watchdog (>=2.3)"] name = "wrapt" version = "1.13.3" description = "Module for decorators, wrappers and monkey patching." +category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ @@ -4881,6 +5135,7 @@ files = [ name = "wsproto" version = "1.1.0" description = "WebSockets state-machine based protocol implementation" +category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -4895,6 +5150,7 @@ h11 = ">=0.9.0,<1" name = "yamlordereddictloader" version = "0.4.0" description = "YAML loader and dump for PyYAML allowing to keep keys order." +category = "main" optional = false python-versions = "*" files = [ @@ -4908,6 +5164,7 @@ pyyaml = "*" name = "yarl" version = "1.9.2" description = "Yet another URL library" +category = "main" optional = true python-versions = ">=3.7" files = [ @@ -4995,6 +5252,7 @@ multidict = ">=4.0" name = "z3-solver" version = "4.12.1.0" description = "an efficient SMT solver library" +category = "main" optional = false python-versions = "*" files = [ @@ -5010,6 +5268,7 @@ files = [ name = "zipp" version = "3.15.0" description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" optional = false python-versions = ">=3.7" files = [ @@ -5025,6 +5284,7 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more name = "zstandard" version = "0.17.0" description = "Zstandard bindings for Python" +category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -5086,4 +5346,4 @@ build = ["gsutil"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "33fe7c7066f8faf63bb3fd266faafa0e1eb5d52e145c35b6d0b1efc62dee5d1d" +content-hash = "a4797c7b4a34361d1fa1968c4412b3ae4b5aebe941d1af790ecc716719d5eb08" diff --git a/pyproject.toml b/pyproject.toml index 2a716680b5..a8d7bab2fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -122,6 +122,7 @@ requests-mock = "^1.9.3" black = "^22.10.0" ipykernel = "^6.16.1" ruff = "^0.1.2" +pytest-split = "^0.8.1" [tool.poetry.extras] build = ["gsutil"] From ada0be6cc2d94e5ace559d8dce7ae0f1422e0a2c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 25 Nov 2023 11:29:52 +0200 Subject: [PATCH 016/204] try pytest-split --- .github/workflows/run_unit_tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index ba49d32aa4..f71bf7e3ba 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: python-version: [ "3.8", "3.9", "3.10" ] - group: [ 1, 2 ] + group: [ 1, 2, 3, 4, 5 ] fail-fast: false defaults: run: @@ -71,11 +71,16 @@ jobs: echo "test-files are: $TEST_FILES" - poetry run pytest --store-durations - poetry run pytest -v --cov --splits 5 --group ${{ matrix.group }} $TEST_FILES + poetry run pytest $TEST_FILES --store-durations + poetry run pytest $TEST_FILES -v --cov --splits 5 --group ${{ matrix.group }} kill $node_pid - name: Upload coverage uses: actions/upload-artifact@v2 with: name: coverage-${{ matrix.os }}-${{ matrix.python_version }}${{ matrix.group }} path: .coverage + - name: Upload durations + uses: actions/upload-artifact@v2 + with: + name: .test_durations + path: .test_durations From dfe46a96d0fc22669112f537bfb35e32ea1ecc38 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 25 Nov 2023 11:58:19 +0200 Subject: [PATCH 017/204] continue on error of pytest --- .github/workflows/run_unit_tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index f71bf7e3ba..54b0b0e30e 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -51,6 +51,7 @@ jobs: run: npm install - name: Run pytest + continue-on-error: true run: | shopt -u globstar source "$(poetry env info --path)/bin/activate" From 6ea228b04adf82a719b88f149d9bbcf6250d632b Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 25 Nov 2023 12:33:59 +0200 Subject: [PATCH 018/204] try with test-durations --- .test_durations | 4407 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 4407 insertions(+) create mode 100644 .test_durations diff --git a/.test_durations b/.test_durations new file mode 100644 index 0000000000..f0efd0994e --- /dev/null +++ b/.test_durations @@ -0,0 +1,4407 @@ +{ + "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.0005506969999942157, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsiam_client_config_with_api_key_and_auth_id_and_token": 0.0005249889999277002, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsiam_client_config_with_api_key_and_token_without_auth_id": 0.0005732089999810341, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_no_api_key_and_user_and_password": 0.0005958399999599351, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_no_values": 0.0005584219999263951, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_username_password": 0.0005307500000526488, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_with_api_key": 0.0007819489999860707, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_with_invalid_url_with_api_key": 0.0005887170000278275, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_api_key_auth_id": 0.0005537039999694571, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_api_key_without_auth_id": 0.0005242389999580155, + "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_auth_id_without_api_key": 0.0005523300000618292, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config0-XsoarClient]": 0.0031512289999682253, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config1-XsoarSaasClient]": 0.002759336999986317, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config2-XsiamClient]": 0.007260106000046562, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test1.com-xsoar-XsoarClient]": 0.0025841820000209736, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test2.com-xsoar_on_prem-XsoarClient]": 0.0025970360000542314, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test3.com-xsoar_saas-XsoarSaasClient]": 0.002634194999927786, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test4.com-marketplacev2-XsiamClient]": 0.0027616809999813086, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_server_type_base_url_is_not_api_url": 0.0034310900001059963, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_server_type_unauthorized_exception": 0.003733005000015055, + "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_xsiam_client_from_server_type": 0.0028760060000081467, + "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.005679365999981201, + "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.004977295999992748, + "demisto_sdk/commands/common/content/tests/content_test.py::test_detect_all_docs": 0.0007778110000344896, + "demisto_sdk/commands/common/content/tests/content_test.py::test_detection[content_descriptor-ContentDescriptor]": 0.0006673550000186879, + "demisto_sdk/commands/common/content/tests/content_test.py::test_generators_detection[documentations-content_type1-2]": 0.0012030940000613555, + "demisto_sdk/commands/common/content/tests/content_test.py::test_generators_detection[test_playbooks-content_type0-3]": 0.0028317730000253505, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestInvalidJSON::test_malformed_json_data_file_path": 0.0020426300000622177, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestInvalidJSON::test_malformed_json_path": 0.0005660159999933967, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_dump": 0.000876925999989453, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get[]": 0.0007693540000559551, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get[test_value]": 0.0007498489999306912, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get_item": 0.0007199129999548859, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_valid_json_file_path": 0.0010176699999533412, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/text_object_test.py::test_malformed_text_path": 0.000574642999936259, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/text_object_test.py::test_valid_text_file_path": 0.0012570069999355837, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestInvalidYAML::test_malformed_yaml_data_file_path": 0.0028746840000053453, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestInvalidYAML::test_malformed_yaml_path": 0.0006945839999730197, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_dump": 0.0025239689999807524, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get[]": 0.002001404000054663, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get[test_value]": 0.001024309999934303, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get_item": 0.001967541000055917, + "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_valid_yaml_file_path": 0.002681282999958512, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/json_content_object_test.py::TestFileWithStem::test_with_readme_change_log": 0.001262054999983775, + "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.000870885000040289, + "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.0007954050000194002, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/json_content_object_test.py::test_to_version_no_from_version": 0.0008693010000229151, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::TestFileWithStem::test_with_readme_change_log": 0.00162054400004763, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::TestFileWithStem::test_without_readme_changelog": 0.0013137100000335522, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::test_from_version_no_to_version": 0.0013223679999896376, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::test_to_version_no_from_version": 0.0011126760000479408, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/author_image/author_image_test.py::test_objects_factory": 0.0005508469999995214, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/author_image/author_image_test.py::test_prefix": 0.0005087699999535289, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/change_log/change_log_test.py::test_objects_factory": 0.0006103799999550574, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/change_log/change_log_test.py::test_prefix": 0.0005389959999888561, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierMapperType::test_objects_factory": 0.0009558940000715666, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierMapperType::test_prefix": 0.0007528650000381276, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierType::test_objects_factory": 0.0007931690000191338, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierType::test_prefix": 0.0005974450000394427, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestOldClassifierType::test_objects_factory": 0.000935457000025508, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestOldClassifierType::test_prefix": 0.0007579540000506313, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/connection/connection_test.py::test_changelog_prefix": 0.0009895060000530975, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/connection/connection_test.py::test_objects_factory": 0.0011563780000187762, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/correlation_rule/correlation_rule_test.py::test_objects_factory": 0.005471058000068751, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/correlation_rule/correlation_rule_test.py::test_prefix": 0.005989855999985139, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/dashboard/dashboard_test.py::test_objects_factory": 0.0007563529999856655, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/dashboard/dashboard_test.py::test_prefix": 0.0005681800000729709, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/doc_file/doc_file_test.py::test_objects_factory": 0.0006280310000192912, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/doc_file/doc_file_test.py::test_prefix": 0.0005390450000390956, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_field/incident_field_test.py::test_objects_factory": 0.0007805669999925158, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_field/incident_field_test.py::test_prefix": 0.0005918649999898662, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_type/incident_type_test.py::test_objects_factory": 0.0010351319999699626, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_type/incident_type_test.py::test_prefix": 0.0006471670000109953, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_field/indicator_field_test.py::test_prefix": 0.0006681259999936628, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestIndicatorType::test_objects_factory": 0.0010217260000331407, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestIndicatorType::test_prefix": 0.0008285060000616795, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestOldIndicatorType::test_objects_factory[reputations.json]": 0.001197034000028907, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestOldIndicatorType::test_prefix[reputations.json]": 0.001065678999964348, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_files_detection": 0.002272530000027473, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_is_unify": 0.0009137250000321728, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_objects_factory": 0.0012534590000541357, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_prefix": 0.0008757040000091365, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_files_detection": 0.0016972669999404388, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_is_unify": 0.0012460340000757242, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_objects_factory": 0.0010744960000010906, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_prefix": 0.0007249729999898591, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/job/job_test.py::TestJob::test_objects_factory": 0.0009181120000789633, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/job/job_test.py::TestJob::test_prefix": 0.000785975999974653, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_objects_factory[layoutscontainer-Zimperium_event.json]": 0.0010468439999158363, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_prefix[layoutscontainer-Zimperium_event.json]": 0.0010614109999664834, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_unify": 0.010280021000028228, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/lists/lists_test.py::test_objects_factory": 0.0006182230000035815, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/lists/lists_test.py::test_prefix": 0.0006177419999744416, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_files_detection": 0.006445495999969353, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_is_unify": 0.010293405000027178, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_objects_factory": 0.01012485100000049, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_prefix": 0.008452229999988958, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_unify_schema": 0.01509253000000399, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRuleParsing::test_parse_modeling_rule_new_format": 0.006544902000030106, + "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.006542927000054988, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRuleParsing::test_parse_modeling_rule_old_format": 0.009134362999986934, + "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.01778103099996997, + "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.014821455000003425, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_ignore/pack_ignore_test.py::test_objects_factory": 0.0005732990000524296, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_ignore/pack_ignore_test.py::test_prefix": 0.0005248699999924611, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_author_getter[someone-someone-someone-]": 0.0009196269999733886, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_author_getter[xsoar-Cortex XSOAR-Cortex XSOAR-]": 0.0009700799999450282, + "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.00216152199999442, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_created_setter_bad_string_data": 0.0006266780000032668, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_created_setter_datetime": 0.0005647429999839915, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_dump_with_price": 0.00651454400002649, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_legacy_setter": 0.0005451159999552146, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_advanced": 0.593640870999991, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_bad_pack_metadata_file": 0.591442112999971, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_basic": 0.6096667869999806, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_invalid_price": 0.5918415050000476, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_no_metadata_file": 0.5928104589999634, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_objects_factory": 0.0006610429999795997, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_prefix": 0.0006147869999608702, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[10-100]": 0.0007886399999961213, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[10-101]": 0.0007356819999699837, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[not int-0]": 0.0007050450000178898, + "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.000889188999963153, + "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.0008850730000062867, + "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.000945904000104747, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_updated_setter_bad_string_data": 0.004487111999935678, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_updated_setter_datetime": 0.000544905999902312, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[contributors-Contributors]": 0.0007146529999886297, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[pack_ignore-PackIgnore]": 0.0007358130000056917, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[pack_metadata-PackMetaData]": 0.0007473350000282153, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[readme-Readme]": 0.0007264259999146816, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[secrets_ignore-SecretIgnore]": 0.000755337999976291, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[classifiers-content_type2-1]": 0.0014173340001093493, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[connections-content_type6-3]": 0.0015079140000011648, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[dashboards-content_type10-3]": 0.001682418999962465, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[doc_files-content_type15-1]": 0.0012451329999976224, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[incident_fields-content_type4-3]": 0.0014794590000519747, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[incident_types-content_type5-3]": 0.0014304190000302697, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[indicator_fields-content_type7-1]": 0.001107365999985177, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[indicator_types-content_type8-3]": 0.0012326309999934892, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[integrations-content_type0-3]": 0.0024871499999790103, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[layouts-content_type11-3]": 0.0014768749999802822, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[playbooks-content_type3-3]": 0.0022098029999142454, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[release_notes-content_type13-1]": 0.0012720120000153656, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[reports-content_type9-3]": 0.001459903000011309, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[scripts-content_type1-3]": 0.0013944920000312777, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[test_playbooks-content_type16-2]": 0.0018352020000520497, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[tools-content_type14-1]": 0.0009470269999951597, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[widgets-content_type12-3]": 0.001477527000020018, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_error_from_subprocess": 0.005886782999994011, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_exception_thrown": 0.035906144999955814, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_success": 0.0058585019999668475, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_files_detection": 0.006338024999934078, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_is_unify": 0.010260163999987526, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_objects_factory": 0.008164182999962577, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_prefix": 0.007699596000065867, + "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.014997311999991325, + "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.016485397999986162, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/playbook/playbook_test.py::test_objects_factory": 0.00106016800003772, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/playbook/playbook_test.py::test_prefix": 0.0006059400000140158, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pre_process_rule/pre_process_rule_test.py::test_objects_factory": 0.0008682300000373289, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/pre_process_rule/pre_process_rule_test.py::test_prefix": 0.0007105160000264732, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_mention_contributors_in_readme": 0.005060422000042308, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_objects_factory[file0]": 0.0007114479999472678, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_objects_factory[file1]": 0.0007242809999183919, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_prefix": 0.00048332300002584816, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note/release_note_test.py::test_objects_factory": 0.00067464000005657, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note/release_note_test.py::test_prefix": 0.0005660859999920831, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note_config/release_note_config_test.py::TestReleaseNoteConfig::test_objects_factory": 0.0050485880000223915, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note_config/release_note_config_test.py::TestReleaseNoteConfig::test_prefix": 0.004755793000015274, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/report/report_test.py::test_objects_factory": 0.0007570919999579928, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/report/report_test.py::test_prefix": 0.0006063609999955588, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_files_detection": 0.0029886269999792603, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_is_unify": 0.0009521460000314619, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_objects_factory": 0.0012998549999565512, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_prefix": 0.0007803260000400769, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_files_detection": 0.002090881999947669, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_is_unify": 0.0008758739999734644, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_objects_factory": 0.0011784199999169687, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_prefix": 0.0007395509999241767, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/secret_ignore/secret_ignore_test.py::test_objects_factory": 0.0006398940000167386, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/secret_ignore/secret_ignore_test.py::test_prefix": 0.00057196800003112, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/trigger/trigger_test.py::test_objects_factory": 0.005129289000024073, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/trigger/trigger_test.py::test_prefix": 0.004918776000010894, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/widget/widget_test.py::test_objects_factory": 0.0008498550000695104, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/widget/widget_test.py::test_prefix": 0.0005633700000089448, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/wizard/wizard_test.py::TestWizard::test_objects_factory": 0.0011116729999116615, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/wizard/wizard_test.py::TestWizard::test_prefix": 0.0008756729999959134, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_files_detection": 0.009233338000001368, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_objects_factory": 0.005418149999968591, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_prefix": 0.006003981000048952, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard/xsiam_dashboard_test.py::test_objects_factory": 0.004763267000100768, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard/xsiam_dashboard_test.py::test_prefix": 0.01041914000001043, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard_image/xsiam_dashboard_image_test.py::test_prefix": 0.0005421129999945151, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report/xsiam_report_test.py::test_objects_factory": 0.01689859899994417, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report/xsiam_report_test.py::test_prefix": 0.005035947000067154, + "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report_image/xsiam_report_image_test.py::test_prefix": 0.0006997959999353043, + "demisto_sdk/commands/common/content/tests/objects/root_objects/content_descriptor/content_descriptor_test.py::test_changelog_prefix": 0.0006836860000021261, + "demisto_sdk/commands/common/content/tests/objects/root_objects/documentation/documentation_test.py::test_prefix": 0.000844015000041054, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_git_path": 0.29467126799994503, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_github_api": 0.24178770999998278, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_gitlab_api": 0.2317855629999599, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_http_request": 0.16933321499999465, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_local_path": 0.17903849000003902, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_local_path_from_content_root": 0.17849409200005084, + "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_write_file": 0.12445597699996824, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_file_content_error": 0.0005105319999643143, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_http_request_error": 0.0005010940000147457, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_local_path_error": 0.0008911330000387352, + "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_write_file_error": 0.0005091499999707594, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_git_path": 0.27226598400000057, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_github_api": 0.2430367659999888, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_gitlab_api": 0.22536244399998395, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_http_request": 0.16609846100004688, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_local_path": 0.16872756699996216, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_local_path_from_content_root": 0.16918405199999142, + "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_write_file": 0.12254224000008662, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_git_path": 0.5250108740000314, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_github_api": 0.3594472679999967, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_gitlab_api": 0.35435034300002144, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_http_request": 0.1875140880000572, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_local_path": 0.17419380599994838, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_local_path_from_content_root": 0.22232968199995184, + "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_write_file": 0.12412138499996672, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_git_path": 0.5192530680000118, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_github_api": 0.3562140860000227, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_gitlab_api": 0.38775624400000197, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_http_request": 0.16972751300005484, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path": 0.1778007409999418, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path_from_content_root": 0.18071293400004151, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path_unicode_error": 0.1607559220000212, + "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_write_file": 0.12735252300007005, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_git_path": 0.5188853679999283, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_github_api": 0.36505374699993354, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_gitlab_api": 0.3610971370000584, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_http_request": 0.22467339600001424, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_local_path": 0.2162348569999608, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_local_path_from_content_root": 0.21996442300002172, + "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_write_file": 0.12689103999997542, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[0]": 0.00243982199998527, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[1]": 0.002358029000049555, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[2]": 0.0022814670000457227, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[3]": 0.0022868659999630836, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[0]": 0.0007442369999353105, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[1]": 0.0005516899999520319, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[2]": 0.0005369119999727445, + "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[3]": 0.0005301289999692926, + "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.006221958000026007, + "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.00607793900002207, + "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.019087498999965646, + "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.006424495000032948, + "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.0062185510000745126, + "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.005550293999931455, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[path_does_not_exist-partner-10240-False]": 0.005947515999991992, + "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[path_does_not_exist-xsoar-10240-True]": 0.005778879999922992, + "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output": 0.021724737999988974, + "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output_with_json_file": 0.021579879000057645, + "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output_with_unified_yml_image_error": 0.021498957000005703, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_non_deprecated_integration_no_ignored_errors": 0.007468863999918085, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_non_deprecated_integration_with_ignored_errors": 0.009677493999959097, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_playbook": 0.06837592800007997, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_where_ignored_list_does_not_exist": 0.01241150399999924, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_where_ignored_list_exists": 0.007852508999917518, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_community_file": 0.00722681300004524, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_partner_file": 0.009461371000043073, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_xsoar_file": 0.007436573999996199, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_content_items_naming": 0.012850272999969548, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error": 0.0014332430000649765, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_file_with_path": 0.008045898999966994, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[False-None-False-]": 0.0011820649999663146, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[False-fix-False-]": 0.0013287200000036137, + "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.0012334920000398597, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[True-None-True-]": 0.0012034150000204136, + "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.0014860219999377478, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors0-SC109]": 0.00186826499992776, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors1-PA117]": 0.0015499309999995603, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors2-PB109]": 0.0015191640000580264, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors3-RM109]": 0.001581671000053575, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors4-RM105]": 0.0015552909999883013, + "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors5-SC102]": 0.001561121000008825, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file0-current_file0-True]": 0.0011032479999926181, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file1-current_file1-True]": 0.0010996809999710422, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file2-current_file2-False]": 0.0007170580000206428, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_incident_field_exist[classifier_json0-id_set_json0-True-True]": 0.0033156980000512704, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_incident_field_exist[classifier_json1-id_set_json1-True-False]": 0.0032689389999518426, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_name_id_equal[mapper0-True]": 0.0027635259999101436, + "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_name_id_equal[mapper1-False]": 0.0031761870000082126, + "demisto_sdk/commands/common/tests/conf_test.py::test_conf_json_description": 0.003964968999980556, + "demisto_sdk/commands/common/tests/conf_test.py::test_conf_json_description_not_given": 0.0013814890000389823, + "demisto_sdk/commands/common/tests/conf_test.py::test_get_test_path": 0.02016140300003144, + "demisto_sdk/commands/common/tests/conf_test.py::test_has_unittests[False]": 0.02073752700005116, + "demisto_sdk/commands/common/tests/conf_test.py::test_has_unittests[True]": 0.025865006000003632, + "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict0-False]": 0.001686588000040956, + "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict1-True]": 0.0012169020000669661, + "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict2-True]": 0.0013771900000278947, + "demisto_sdk/commands/common/tests/conf_test.py::test_is_valid_conf_json_negative_sanity_check": 0.0015125630000056844, + "demisto_sdk/commands/common/tests/conf_test.py::test_is_valid_conf_json_sanity_check": 0.0013105559999644356, + "demisto_sdk/commands/common/tests/conf_test.py::test_non_testable_entity_is_vaild_in_conf": 0.0011262819999160456, + "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data0-yml_data0]": 0.0012489510000364135, + "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data1-yml_data1]": 0.0012725139999929524, + "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data2-yml_data2]": 0.0011827769999399607, + "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks0-conf_dict0-False]": 0.0015197760000091876, + "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks1-conf_dict1-True]": 0.0014132070000414387, + "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks2-conf_dict2-True]": 0.0012515539999640168, + "demisto_sdk/commands/common/tests/conf_test.py::test_the_existence_of_added_test_in_conf_json": 0.0010727120000524337, + "demisto_sdk/commands/common/tests/conf_test.py::test_the_missing_existence_of_added_test_in_conf_json": 0.0014520899999865833, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file0-test.json-True]": 0.0018268800000100782, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file1-test.json-True]": 0.001442311000062091, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file10-test.yml-True]": 0.0012571559999514648, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file2-test.json-True]": 0.001336844000036308, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file3-test.json-True]": 0.0013644449999787867, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file4-test.yml-False]": 0.00137030599995569, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file5-test.yml-True]": 0.0013630430000262095, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file6-test.yml-False]": 0.001357741999981954, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file7-test.yml-False]": 0.001405522999959885, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file8-test.yml-False]": 0.0012838460000352825, + "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.0013316250000343643, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_entity_valid_name_invalid": 0.1259063810000498, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_entity_valid_name_valid": 0.13714381199991976, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config0-integration1-playbook1-integration-True]": 0.0008847409999361844, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config1-integration2-playbook1-integration-False]": 0.0008352600000307575, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config2-integration1-playbook1-integration-True]": 0.0008065750000127991, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config3-integration3-playbook1-integration-False]": 0.0008628109999904154, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config4--playbook1-playbook-True]": 0.0008103220000066358, + "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.05454905400000598, + "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.20741689999999835, + "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.06838662300003762, + "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.028219396000054076, + "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.028063173000020925, + "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.05655407599999762, + "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.05680810900003053, + "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.05721207100003767, + "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.055959957000027316, + "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.21308984600000258, + "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.21112638300002118, + "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.14690828400000555, + "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.3709171789999459, + "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.20781747899997072, + "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.3692091419999315, + "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.10425627300008955, + "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.21127145000002656, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleModelingRules-modelingrule-rule_dict2--True]": 0.09488893399998233, + "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.09822475800001484, + "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.09688445000000456, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleParsingRules-parsingrule-rule_dict5--True]": 0.10615232100002459, + "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.00259686600003306, + "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.0027031430000192813, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[pack&content had 1, added 2 to both]": 0.0025114449999819044, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[pack&content had 1, now content has empty]": 0.0025629330000356276, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[sanity, both match and are unchanged]": 0.002639595999994526, + "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.05886746199996651, + "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.058291636999911134, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_readme_exists_not_checking_on_api_modules": 0.10272838899999215, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_readme_exists_not_checking_on_test_playbook": 0.11938098499996386, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[False-community-True]": 0.09503899500003854, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[False-xsoar-False]": 0.10710107500005961, + "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[True-xsoar-True]": 0.09857286799996245, + "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.05776128799999469, + "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.05601798399999325, + "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_no_leading_hyphen": 0.011628989999962869, + "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[REAL_TIME-None-True]": 0.009989851000000272, + "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[SCHEDULED-None-False]": 0.012572128000044813, + "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[SCHEDULED-valid_window-True]": 0.009924748000003092, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[-1-1]": 0.000769815000012386, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[-3]": 0.0009605629999214216, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[0-1]": 0.0007766100000594633, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[10-4]": 0.0007692240000096717, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[2-2]": 0.0008264319999966574, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[None-3]": 0.0011955800000578165, + "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[not_a_number-3]": 0.0009357969999541638, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file0-False]": 0.001058826000019053, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file1-False]": 0.0009384020000311466, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file2-False]": 0.0009291530000155035, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file3-False]": 0.0009587600000031671, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file4-False]": 0.0009540619999484079, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file5-False]": 0.0009250660000361677, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file6-True]": 0.0006723339999439304, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[aa-aa-True]": 0.0014154110000390574, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[aa-ab-False]": 0.0016951119999930597, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[my-home-dashboard-My Dashboard-False]": 0.0016599789999531822, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file0-True]": 0.0006482499999265201, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file1-False]": 0.0009162790000800669, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file2-True]": 0.0006275310000205536, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file3-False]": 0.0009330419999855621, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[-1-True]": 0.0018968889999086969, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[0-False]": 0.0017063639999719271, + "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[1-False]": 0.0015444830000319598, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[0]": 7.103493165999964, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[1]": 8.210413082999992, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[2]": 7.0792365439999685, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[3]": 7.115142995000042, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[4]": 7.1287659770000005, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies_case_1": 0.21453384600005165, + "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies_case_2": 0.12279471699997657, + "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.0020257490000403777, + "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.0017312510000238035, + "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.0015491900000483838, + "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.001445846999956757, + "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.0015342620000069473, + "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.0018144160000019838, + "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.0014587119999873721, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration_error_format[integration_yml0-expected_results0]": 0.0016610889999242318, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml0-True]": 0.0006729959999915991, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml1-False]": 0.0008876159999431366, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml2-True]": 0.0006394629999704193, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml3-True]": 0.0006351350000386446, + "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.012353601000029357, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml0-True]": 0.0006893770000147015, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml1-False]": 0.0008988370000224677, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml2-False]": 0.0008419199999707416, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml3-True]": 0.0006380499999636413, + "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml4-True]": 0.0006411360000129207, + "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.0017001619999632567, + "demisto_sdk/commands/common/tests/description_test.py::test_demisto_in_description": 0.021722262999958275, + "demisto_sdk/commands/common/tests/description_test.py::test_demisto_not_in_description": 0.021325873999956002, + "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_given": 0.02145488399992246, + "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_unified_deprecated_integration[integration_obj0]": 0.004135593999990306, + "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_unified_deprecated_integration[integration_obj1]": 0.022900231999926746, + "demisto_sdk/commands/common/tests/description_test.py::test_is_invalid_description_integration_name": 0.010826807999990251, + "demisto_sdk/commands/common/tests/description_test.py::test_is_invalid_description_name": 0.006791200999998637, + "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_description_name": 0.020236149999902864, + "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[### Community Contributed Integration\\n### OtherSection-False]": 0.021339158999978736, + "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[### partner Contributed Integration-False]": 0.020899930000041422, + "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[\\n### Other section\\n-True]": 0.022800094999979592, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_cache_of_get_python_version_from_image": 0.0007089520000249649, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-3-2.7.1-2.7.1]": 0.006440546000021641, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-3.7.11-3.7.11]": 0.003902800000048501, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-310-3.10.11-3.10.11]": 0.003151989999992111, + "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.0030247430000258646, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[demisto/powershell:7.1.3.22028--None]": 0.0038906769999584867, + "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.002840959000025123, + "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.0029584289999888824, + "demisto_sdk/commands/common/tests/docker_helper_test.py::test_init_global_docker_client": 0.48289984600000935, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestDeprecatedDockerImage::test_command_is_docker_image_deprecated": 0.003041225000004033, + "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.0011657649999960995, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestDeprecatedDockerImage::test_deprecated_docker_image[demisto/python-demisto/python:1.0.2--True]": 0.0009380310000324243, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_latest_commit": 0.02144906700004867, + "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.02154538499996761, + "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.02153458599991609, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_manifest_from_commit": 0.021227032000069812, + "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.021521399999926416, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags0-output_tags0]": 0.0006142559999489094, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags1-output_tags1]": 0.0006128350000267346, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags2-output_tags2]": 0.0006172519999267934, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags3-output_tags3]": 0.0006045490000587961, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags4-output_tags4]": 0.0006114820000107102, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_dockerimage_in_yml_file[javascript]": 0.000567798999952629, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_dockerimage_in_yml_file[python]": 0.0005696829999806141, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_find_latest_tag_by_date": 0.000542563000010432, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_from_yml": 0.00587963100002753, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python-deb]": 0.7129529399999797, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python3-deb]": 0.6804212800000187, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python3]": 0.0008596040000270477, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python]": 0.7012753770000586, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_default_image": 0.0008825360000059845, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_latest_tag": 0.00048444499998367974, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_numeric_but_not_most_updated": 0.6875414680000063, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_tag_labeled_latest": 0.000864273000047433, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_without_tag": 0.0008038910000891519, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_native_image_in_dockerimage_field[demisto/py3-native:8.2.0.58349]": 0.016139529000042785, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_native_image_in_dockerimage_field[devdemisto/py3-native:8.2.0.58349]": 0.02303750900000523, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_lexical_find_latest_tag": 0.0007800059999567566, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_no_dockerimage_in_yml_file[javascript-True]": 0.000650945000018055, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_no_dockerimage_in_yml_file[python-False]": 0.0009970809999799712, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_non_existing_docker": 0.026207704999990256, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[blabla/google-api-py3-1.0.0.5992-]": 0.001216341000031207, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[feedparser-latest-]": 0.0009063610000339395, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[unknownvuser/v-alpine-at_v_commit-b17ade1257cfe086c1742c91deeb6c606037b893-]": 0.0009103579999987232, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_not_latest_docker_older_than_3_days[return_value0-False-False]": 0.0037270349999971586, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_not_latest_docker_older_than_3_days[return_value1-False-True]": 0.0025777609999977358, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_docker_image": 0.0007073599999785074, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_docker_image_error": 0.0015786449999950491, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_www_auth[AAArealm=\"2\",service=\"3\"AAA-expected0]": 0.0006253670001115097, + "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_www_auth[bbb-expected1]": 0.0006130250000637716, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_allowed_ignore_errors_format": 0.0009851679998860163, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_error_code_format": 0.0007172280000418141, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_file_name_includes_spaces": 0.0006416080000235524, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_file_type_not_supported": 0.00057764700000007, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_id_should_equal": 0.0005835179999280626, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_image_path_error": 0.0005211530000224229, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_integration_is_skipped": 0.0005435229999761759, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_integration_is_skipped__comment": 0.0004990410000118572, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_invalid_context_output": 0.0006209379999972953, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_pack_metadata_empty": 0.0005186870000102317, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_wrong_display_name": 0.0005177460000140854, + "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_wrong_required_value": 0.0007269659999451505, + "demisto_sdk/commands/common/tests/errors_test.py::test_error_code_uniqueness": 0.0010736719999613342, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[incident_test_for_test-testfortest]": 0.0006615040000497174, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[incident_testfortest-testfortest]": 0.0006421280000381557, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_incident_test_for_test-incidenttestfortest]": 0.0006247060000532656, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_indicator_test_for_test-indicatortestfortest]": 0.0006312869999760551, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_test_for_test-testfortest]": 0.0006269790000601461, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[incident_test_for_for_test-testfortest]": 0.0008239789999606728, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[incident_testforfortest-testfortest]": 0.0008565879999764547, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[indicator_test_for_for_test-testfortest]": 0.0008194879999905424, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version0-old_from_version0-False]": 0.0014001939999843671, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version1-old_from_version1-True]": 0.001632776000008107, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version2-old_from_version2-False]": 0.001603261999946426, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version3-old_from_version3-False]": 0.001384352000002309, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version4-old_from_version4-True]": 0.0016103540000358407, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[number-number-False]": 0.0013887709999949038, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-longText-True]": 0.0016690239999661571, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-number-True]": 0.001670977000003404, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-shortText-False]": 0.0013727809999863894, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[singleSelect-shortText-True]": 0.0016109360000200468, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[singleSelect-singleSelect-False]": 0.0013742940000156523, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-number-True]": 0.0016532850000317012, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-shortText-True]": 0.0016251030000375977, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-timer-False]": 0.0013940199999638025, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.EVIDENCE_FIELD]": 0.0008732390000432133, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.INCIDENT_FIELD]": 0.0008939969999914865, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.INDICATOR_FIELD]": 0.0008335350000265862, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.EVIDENCE_FIELD]": 0.0006644910000090931, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.INCIDENT_FIELD]": 0.0006704520000084813, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.INDICATOR_FIELD]": 0.0006348630000161393, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_inner_alias_in_aliased_field[aliases0-False]": 0.09496864400000504, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_inner_alias_in_aliased_field[aliases1-True]": 0.11478824799991116, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.EVIDENCE_FIELD]": 0.0008572390000836094, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.INCIDENT_FIELD]": 0.0008341159999645242, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.INDICATOR_FIELD]": 0.0008114539999155568, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[incident_validind-validind-GroupFieldTypes.INCIDENT_FIELD]": 0.0007111179999697015, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[indicator_validind-validind-GroupFieldTypes.INDICATOR_FIELD]": 0.0006958280000048944, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[validind-validind-GroupFieldTypes.EVIDENCE_FIELD]": 0.0007813890000534229, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file0-True]": 0.0006826350000324055, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file1-False]": 0.0010216759999934766, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file2-False]": 0.0009264889999940351, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version0-5.5.0-True]": 0.09454267799992522, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version1-6.0.0-True]": 0.09040357599997151, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version2-6.0.0-True]": 0.10280705600001738, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version3-6.1.0-True]": 0.19057698899996467, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version4-6.0.0-False]": 0.09227127600007634, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version5-6.0.0-False]": 0.16957659799993507, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version6-6.0.0-False]": 0.09063516900005197, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[None-True]": 0.18858326299999817, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces0-False]": 0.1802894480000532, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces1-False]": 0.0911625249999588, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces2-True]": 0.09931822099997589, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file0-pack_metadata0-False]": 0.001678882000021531, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file1-pack_metadata1-True]": 0.001243280999972285, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file2-pack_metadata2-True]": 0.001336113000036221, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file3-pack_metadata3-False]": 0.0015443100000425147, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file4-pack_metadata4-False]": 0.0016722310000432117, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file5-pack_metadata5-False]": 0.0015492200000153389, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file0-False]": 0.0016744750000157183, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file1-False]": 0.001325833999999304, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file2-True]": 0.0017926740000007158, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file3-True]": 0.0016251129999318437, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file4-True]": 0.0017917640000177926, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file5-True]": 0.0142144129999906, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_required[False-True]": 0.0013115169999764476, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_required[True-False]": 0.0014403959999640392, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_system_flag_sanity[current_file0-True]": 0.0006497129999161189, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_system_flag_sanity[current_file1-False]": 0.0009204979999708485, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[-1-True]": 0.0014620779999745537, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[0-False]": 0.0015618950000089171, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[1-False]": 0.0015301360000421482, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex[agoodid]": 0.0005813240000520636, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex[anot3erg00did]": 0.0005488640000521627, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[\\u05dc\\u05d0\\u05e1\\u05dc\\u05d9\\u05d8\\u05d5\\u05d1]": 0.0007569730000227537, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid cli]": 0.0007631250000486034, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid$$cli]": 0.0007825909999610303, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid_cli]": 0.0007518219999838038, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content0-False]": 0.0925181379999458, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content1-False]": 0.09164999500001159, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content2-True]": 0.08985013700004174, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content3-True]": 0.18219195399996124, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content4-True]": 0.10552730099993823, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content5-False]": 0.09094087199997603, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content6-True]": 0.09276817300002449, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content7-False]": 0.09541839100006655, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content8-True]": 0.09303089900004125, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content9-True]": 0.09072488699996484, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content0-False]": 0.09373557800006438, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content1-False]": 0.09061191600000029, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content2-True]": 0.08921487500003877, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content3-True]": 0.1858469199999604, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content4-True]": 0.2237272080000139, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content5-False]": 0.09418354100006354, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content6-True]": 0.09247736700007181, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content7-False]": 0.09497933400007241, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content8-True]": 0.09248454900000525, + "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content9-True]": 0.09068670599987172, + "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_no_genericModuleId": 0.03408580100000336, + "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_openended_removed": 0.03368059399997492, + "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_simple_generic_field_is_fine": 0.035139967999953114, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_custom_github_url": 0.006726592000006804, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_custom_github_url_invalid": 0.0056680160000723845, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_get_repo_name_empty_case": 0.002700979999985975, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_get_repo_name_gitlab_invalid": 0.24035707499996306, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_gitlab_id_not_found": 0.002907845000038378, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_provide_project_id": 0.025109193000048435, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_provide_repo_name": 0.06599905199999512, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_search_gitlab_id_invalid": 0.0053989349999596925, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_search_gitlab_id_valid": 0.003337308000027406, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[git@github.com:demisto/content-dist.git-demisto/content-dist]": 0.002444802000013624, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[https://github.com/demisto/content-dist-demisto/content-dist]": 0.0023682900000494556, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[https://github.com/demisto/content-dist.git-demisto/content-dist]": 0.0023788400000057663, + "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.004061549000027753, + "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_gitlabs[https://code.pan.run/xsoar/content-dist-xsoar/content-dist]": 0.003826180000032764, + "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.0023013549999859606, + "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.0024114899999858608, + "demisto_sdk/commands/common/tests/git_util_test.py::test_find_primary_branch": 0.0005704539999555891, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_integration_commands": 0.062235062000013386, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_scripts_and_subplaybooks": 0.062102554000034615, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_skip_unavailable": 0.17956130800007486, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_playbook_sub_playbook_exist": 0.004064673000073071, + "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_playbook_sub_playbook_not_exist": 0.004363841000042612, + "demisto_sdk/commands/common/tests/id_test.py::test_invalid_is_pack_display_name_already_exist": 0.0004942209999967417, + "demisto_sdk/commands/common/tests/id_test.py::test_invalid_playbook_is_file_valid_in_id_set": 0.0058530780000296545, + "demisto_sdk/commands/common/tests/id_test.py::test_is_classifier_incident_types_found__exists": 0.0004786330000001726, + "demisto_sdk/commands/common/tests/id_test.py::test_is_classifier_incident_types_found__missing_classifier": 0.000682593000021825, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_negative": 0.0007630520000247998, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_no_scripts": 0.00046057000002974746, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_positive": 0.0004815879999569006, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_with_command_negative": 0.0007670619999657902, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_with_command_positive": 0.0004718400000456313, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_type_using_real_playbook__happy_flow": 0.0005696640000110165, + "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_type_using_real_playbook__no_matching_playbook_id": 0.0007628639999097686, + "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__classifier_not_exist": 0.0006725050000682131, + "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__exist": 0.0004568620000213741, + "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__mapper_not_exist": 0.0006809409999846139, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_ignore_builtin_scripts": 0.0004540369999972427, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_negative": 0.0007481160000111231, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_no_scripts": 0.0005136380000294594, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_positive": 0.0004586869999911869, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_script_validate_integration_commands_scripts": 0.00047136900002442417, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_script_validate_integration_commands_scripts_on_wrong_command": 0.0007394990000193502, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_negative": 0.0007675609999751032, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_no_scripts": 0.0004725819999862324, + "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_positive": 0.000488780999944538, + "demisto_sdk/commands/common/tests/id_test.py::test_is_mapper_incident_types_found__exists": 0.00047671799995896436, + "demisto_sdk/commands/common/tests/id_test.py::test_is_mapper_incident_types_found__missing_classifier": 0.000671291999992718, + "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__bad_command_name": 0.000675340000043434, + "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__happy_flow": 0.00048208000004024143, + "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__no_depend_on_name": 0.00045836599991844196, + "demisto_sdk/commands/common/tests/id_test.py::test_is_unique_file_valid_in_set": 0.0041414980000240575, + "demisto_sdk/commands/common/tests/id_test.py::test_new_invalid_is_pack_display_name_already_exist": 0.0005149210000467974, + "demisto_sdk/commands/common/tests/id_test.py::test_new_valid_is_pack_display_name_already_exist": 0.002525531999992836, + "demisto_sdk/commands/common/tests/id_test.py::test_valid_is_pack_display_name_already_exist": 0.0004795139999487219, + "demisto_sdk/commands/common/tests/image_test.py::test_image_in_both_yml_and_directory": 0.006275288000040291, + "demisto_sdk/commands/common/tests/image_test.py::test_image_when_invalid_type": 0.006154252999976961, + "demisto_sdk/commands/common/tests/image_test.py::test_is_not_default_image": 0.012663938999992297, + "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_invalid_name[IntNameTest_image.png]": 0.026670744999989893, + "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_invalid_name[IntName_img.png]": 0.022015950000024986, + "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_valid_name": 0.024025779999988117, + "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_positive": 0.012978266000004623, + "demisto_sdk/commands/common/tests/image_test.py::test_json_outputs_where_no_image_in_integration": 0.023509285999978147, + "demisto_sdk/commands/common/tests/image_test.py::test_no_image_integration": 0.022304947999998603, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_invalid_incident_field_type": 0.4913903659999619, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[attachments]": 0.4902770019999707, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[boolean]": 0.4742322360000344, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[date]": 0.4775031520000539, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[grid]": 0.47483616199997414, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[html]": 0.47817546400005995, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[internal]": 0.47258694099997456, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[longText]": 0.5743613409999853, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[markdown]": 0.46604146399994306, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[multiSelect]": 0.48603688099996134, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[number]": 0.48381190499998183, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[role]": 0.48222523499998715, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[shortText]": 0.5877717699999607, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[singleSelect]": 0.479164303999994, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[tagsSelect]": 0.4825530739999522, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[timer]": 0.556578247999937, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[url]": 0.47925350500003105, + "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[user]": 0.4829476520000071, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version0-old_from_version0-False]": 0.0014396550000128627, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version1-old_from_version1-True]": 0.001697656000033021, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version2-old_from_version2-False]": 0.0013789120000069488, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version3-old_from_version3-False]": 0.0013986099999669932, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version4-old_from_version4-True]": 0.0017211510000265662, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_id_equal_name[AWS EC2 Instance Misconfiguration-AWS EC2 Instance Misconfiguration-True]": 0.0014166430000273067, + "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.001649447999966469, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file0-True]": 0.0007127290000426001, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file1-False]": 0.0008579509999435686, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file2-False]": 0.0008666379999340279, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field0-True]": 0.0013679040000056375, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field1-True]": 0.0012977920000594168, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field2-True]": 0.0013182700000129444, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field3-True]": 0.001299384999981612, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field4-False]": 0.0015651610000304572, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field5-False]": 0.0014934860000153094, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field6-False]": 0.0014996279999763829, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field7-False]": 0.0014497050000272793, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field8-False]": 0.0015253460000508312, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[-False]": 0.0014731090000168479, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[All-True]": 0.0013065269999970042, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[None-False]": 0.0014647230000264244, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[Specific-True]": 0.0013073810000037156, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[all-False]": 0.001450175999991643, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_no_extract_rules": 0.0011566389999870808, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[-True]": 0.0013689950000639328, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[12b3a41b-04ce-4417-89b3-4efd95d28012-False]": 0.0014796399999568166, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[abbababb-aaaa-bbbb-cccc-abcdabcdabcd-False]": 0.0014837969999916822, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[valid playbook-True]": 0.0015354550000097333, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[-1-True]": 0.007756593000010525, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[0-False]": 0.001586589999988064, + "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[1-False]": 0.0016130299999872477, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_invalid_grid_from_version": 0.4557823050000138, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_invalid_incident_field_type": 0.3735156619999884, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[grid-5.0.0-False]": 0.09877055700002302, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[grid-5.5.0-True]": 0.09206750500004546, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[html-6.0.0-False]": 0.192043128000023, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[html-6.1.0-True]": 0.09303946900001847, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[number-5.0.0-True]": 0.08949587199992948, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[boolean]": 0.3776818069999308, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[date]": 0.3698792480000179, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[grid]": 0.36512413100001595, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[html]": 0.37485605400001987, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[longText]": 0.5200254030000906, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[markdown]": 0.3641262030000121, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[multiSelect]": 0.3727701030000503, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[number]": 0.46495232800003805, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[role]": 0.38283198599998514, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[shortText]": 0.36668408200000613, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[singleSelect]": 0.3810041009999736, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[tagsSelect]": 0.47665159199993923, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[url]": 0.4487383379999983, + "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[user]": 0.3699441199999569, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args0-True-False]": 0.0012656420000212165, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args1-False-False]": 0.001694220000047153, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args2-True-True]": 0.001529123000011623, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_display_name_contains_the_type": 0.04608742000004895, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_files_names_with_separators": 0.1414526419999902, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_files_names_without_separators": 0.18483220600001005, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_folder_name_with_separators": 0.03899498399988488, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_folder_name_without_separators": 0.11512080800002877, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_fromlicense_in_integration_parameters_fields[XSOAR-True]": 0.12011468599996533, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_fromlicense_in_integration_parameters_fields[community-False]": 0.12962760400006346, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_get_field_to_required_dict[input_json0-expected0]": 0.0006457740000769263, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current0-True]": 0.0006511549999572708, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current1-False]": 0.0009786269999949582, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current2-False]": 0.00083009000002221, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current0-True]": 0.0006292329999268986, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current1-True]": 0.000624583999922379, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current2-False]": 0.0008469499999819163, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_feed[True-5.0.0]": 0.009755253999969682, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_feed[True-None]": 0.00925654200000281, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[-False]": 0.000879881999992449, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[42-False]": 0.0008508160000815224, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[False-True0]": 0.0006686389999686071, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[False-True1]": 0.0006356459999210529, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[None-False]": 0.0008518589999653159, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[None-True]": 0.0006827029999953993, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[Tr\\xfce-False]": 0.0009207370000012816, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[True-True0]": 0.0006397949999268349, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[True-True1]": 0.0007413530000235369, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[\\U0001f972-False]": 0.0008947589999479533, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[false-True]": 0.000628983000012795, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value10-True]": 0.0006505640000113999, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value14-False]": 0.0008415210000407569, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value15-False]": 0.0008643730000130745, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value16-False]": 0.0008522499999799038, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value17-False]": 0.0008371430000124747, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value19-False]": 0.0009075840000036806, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value22-False]": 0.0008906429999342436, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value23-False]": 0.000877627000022585, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value24-False]": 0.0009095879999563294, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value25-False]": 0.0008623890000194478, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value26-False]": 0.0008821459999808212, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value27-False]": 0.00087012399995956, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value28-False]": 0.000864762999924551, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value3-True]": 0.0006750800000077106, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value4-True]": 0.0006669249999617932, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value5-True]": 0.0007252839999409844, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[true-True]": 0.0006490110000072491, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[xsoar-False]": 0.0008814739999820631, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_integration_parameters_display_name": 0.05244148200000609, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_integration_path": 0.30882601199999726, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_py_file_names[IntNameTest.py]": 0.11425938600001473, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_py_file_names[IntNameTest_test.py]": 0.11561579199991456, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[community-4-False-True]": 0.1083195449999721, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[partner-4-False-True]": 0.190436429999977, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-4-False-False]": 0.03533481900001334, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-4-True-True]": 0.03552863499999148, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-9-False-True]": 0.043953316999989056, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_checkbox_param_configured_correctly[current0-True]": 0.0006640590000301927, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_checkbox_param_configured_correctly[current1-False]": 0.000829117000023416, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current0-True]": 0.0008549649999736175, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current1-False]": 0.001026203999970221, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current2-False]": 0.0010391300000378578, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current3-False]": 0.0010975479999615345, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current0-not bang-True]": 0.0007691859999567896, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current1-not bang-True]": 0.0008294689999956972, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current2-email-False]": 0.0014834190000669878, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current3-file-False]": 0.0015718439999545808, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current4-ip-True]": 0.0012234740000849342, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current5-endpoint-True]": 0.0007968470000037087, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_partner_collector_has_xsoar_support_level_header[partner-False]": 0.011529282999958923, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_partner_collector_has_xsoar_support_level_header[xsoar-True]": 0.01236645600005204, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current0-True]": 0.0006873429999245673, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current1-False]": 0.0010345410000240918, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current2-False]": 0.0010799840000004224, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current3-False]": 0.0010243699999250566, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict0-False-False]": 0.028513995000025716, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict1-True-True]": 0.001939160000006268, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict2-False-True]": 0.0015626059999931385, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict3-False-True]": 0.0013342189999434595, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current0-True-True]": 0.0008647239999959311, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current1-False-True]": 0.0008400570000617336, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current2-True-False]": 0.0010766689999854862, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current3-True-False]": 0.00118303900006822, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current4-True-False]": 0.0011169639999479841, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current5-old5-False]": 0.0010531849999892984, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current0-True-valid_list_mock0]": 0.0033363640000061423, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current1-True-valid_list_mock1]": 0.0016928999999663574, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current2-False-valid_list_mock2]": 0.0020492929999704756, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current0-True]": 0.0006591690000163908, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current1-True]": 0.0006287839999004063, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current2-False]": 0.0009361769999713943, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current3-False]": 0.001045178999959262, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current0-False]": 0.0009418980000077681, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current1-True]": 0.0006456449999632241, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current2-True]": 0.0006407960000274215, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current3-False]": 0.000913174999993771, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current4-False]": 0.0010545780000370542, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current5-False]": 0.000935105999985808, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current6-False]": 0.000901331999955346, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current7-False]": 0.0009246560000519821, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current8-True]": 0.0006829239999319725, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current0-True]": 0.0006655220000197914, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current1-True]": 0.0006184740000207967, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current2-True]": 0.000618573000053857, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current3-True]": 0.0006146169999965423, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current4-False]": 0.0008391039999651184, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current5-False]": 0.0008119239999473393, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current6-False]": 0.0008017949999725715, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current0-True]": 0.0007023300000241761, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current1-True]": 0.0006336129999908735, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current2-True]": 0.0006379109998988497, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current3-False]": 0.0008329049999815652, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current4-False]": 0.000832973999990827, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current5-False]": 0.0008310719999826688, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current6-False]": 0.0008132070000215208, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_description_positive": 0.005226562000018475, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting0-False]": 0.0006666339999696902, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting1-False]": 0.000654471000018475, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting2-True]": 0.0009596100000521801, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting3-True]": 0.0009729869999546281, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting4-False]": 0.0006570350000174585, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting5-True]": 0.0009554330000014488, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting6-False]": 0.0006382699999676333, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting7-False]": 0.0006258780001076047, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current0-True]": 0.0006780240000239246, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current1-False]": 0.0008431219999920359, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current2-False]": 0.0008521510000605304, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current3-False]": 0.0008302879999746438, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current0-True]": 0.000634193999985655, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current1-True]": 0.0006234739999513295, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current2-True]": 0.0006173709999757193, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current3-True]": 0.0006069229999638992, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current4-False]": 0.0008153509999715425, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current0-True]": 0.0007116780000160361, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current1-True]": 0.0007542660000581236, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current2-False]": 0.0010829900000430825, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current3-False]": 0.0010428449999722034, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current0-True]": 0.0006397839999863209, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current1-False]": 0.0008185679999996864, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current2-False]": 0.000804840000000695, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_name_contains_the_type": 0.040097045000038634, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_name_does_not_contains_the_type": 0.09870304500003613, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file0-old_file0-True]": 0.0010579340000163029, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file1-old_file1-False]": 0.0013724710000246887, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file2-old_file2-True]": 0.0007517829999983405, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file3-old_file3-True]": 0.0007343320000359199, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[added context path]": 0.0017248280000217164, + "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.001989722000018901, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[added new command]": 0.0013692360000163717, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[context changes in multiple commands]": 0.002104969000015444, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[context path change]": 0.0021041960000047766, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[deleted command outputs]": 0.002107972999908725, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[deleted outputs for two command]": 0.002053421000027811, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[no change with no outputs]": 0.0013696460000005573, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[no change]": 0.02413962299999639, + "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.0019578830000455127, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[removed context path]": 0.0019368229999940922, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current0-old0-True]": 0.0007537750000210508, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current1-old1-False]": 0.0010918069999661384, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current2-old2-False]": 0.0010475139999357452, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current3-old3-True]": 0.0007109360000185916, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current4-old4-False]": 0.0012356270000282166, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current5-old5-False]": 0.0010625630000049568, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current6-old6-False]": 0.001042776000019785, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current7-old7-True]": 0.000801324999940789, + "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.0015926909999848249, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file0-old_file0-True]": 0.0007657379999841396, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file1-old_file1-True]": 0.000723469999968529, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file2-old_file2-False]": 0.0010990009999432004, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file3-old_file3-False]": 0.0010687149999739631, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current0-old0-False]": 0.0010677419999751692, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current1-old1-False]": 0.0010094540000409324, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current2-old2-True]": 0.000809291999985362, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current3-old3-True]": 0.000705966999987595, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_duplicate_params[current0-True]": 0.0006638479999878655, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content0-True]": 0.0006675260000292838, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content1-False]": 0.0009617750000643355, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content2-False]": 0.0009877539999934015, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file0-old_file0-True]": 0.0007560209999724066, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file1-old_file1-True]": 0.0007390080000391208, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file2-old_file2-False]": 0.001077581000004102, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file3-old_file3-False]": 0.001069117000042752, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-4.5.0]": 0.0006761010000104761, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-5.5.0]": 0.0006971919999614329, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-None]": 0.0006693590000281802, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[True-5.5.0]": 0.0008459190000280614, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_default_value[yml_data0-True]": 0.1222321969999598, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_default_value[yml_data1-False]": 0.12770168399993054, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_display_name": 0.12210907699994777, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_path": 0.2999838030000319, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands0-True-False-False]": 0.0011132679999832362, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands1-True-True-True]": 0.0008465500000056636, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands2-False-False-True]": 0.0009391729999492782, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands3-False-False-False]": 0.001008613000067271, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands4-False-True-True]": 0.0008333859999538618, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands5-False-True-True]": 0.000789283000017349, + "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_with_duplicate_params": 0.0007484059999569581, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_additional_info_contained": 0.0006909200000109195, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_empty_commands": 0.0006574559999421581, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_hidden_feed_reputation_field": 0.0007532250000394924, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param0]": 0.0007710490000363279, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param1]": 0.0007635549999918112, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param2]": 0.0007715699999835124, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param3]": 0.0007627539999930377, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable_negative": 0.0009275499999148451, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current0-True]": 0.0008570389999817962, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current1-True]": 0.0008548839999775737, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current10-True]": 0.0008700129999965611, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current11-False]": 0.0011425229999986186, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current2-False]": 0.001044057999990855, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current3-False]": 0.0010245520000466968, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current4-True]": 0.0009575050000307783, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current5-True]": 0.0008110029999670587, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current6-True]": 0.0008223340000199642, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current7-True]": 0.0008448859999816705, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current8-True]": 0.0008166950000259021, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current9-False]": 0.001048454999988735, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_malformed_field": 0.014924068000027546, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_missing_field": 0.002562923000084538, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_sanity": 0.007684089999997923, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_section_field_feed": 0.0007346909999341733, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid": 0.0007541469999523542, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-4.5.0-False]": 0.0014118850000954808, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-5.5.0-True]": 0.0009502620000034767, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-5.5.1-True]": 0.000952046000008977, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-6.0.0-True]": 0.0009051590000126453, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-None-False]": 0.0012553820000107407, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[python--True]": 0.000896131999923, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[python-4.5.0-True]": 0.0008991390000687716, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[False-yml_data3--True]": 0.0217097170000784, + "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.02291214100000616, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[True-yml_data1--True]": 0.022071373000017047, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[True-yml_data2--False]": 0.0225044610000964, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme_no_readme_file": 0.022238424999954987, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces0-configs0-False]": 0.0030557530000123734, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces1-configs1-True]": 0.001283263999994233, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces2-configs2-True]": 0.0008967030000803788, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces3-configs3-False]": 0.0025172670000301878, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces4-configs4-False]": 0.0025800840000442804, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces5-configs5-True]": 0.0008679099999540085, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_malformed_field": 0.02834634300000971, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_missing_field": 0.025763501999961136, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_missing_max_fetch_text": 0.026777541999990717, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_not_fetch": 0.02883480299999519, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_sanity": 0.024261761999980536, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_valid": 0.0241459549999945, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_default_value_in_max_fetch": 0.0008287769999810735, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_fetch_time": 0.0016265350000139733, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_max_fetch": 0.0013887719999843284, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_not_fetch": 0.0006225010000662223, + "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_valid": 0.0006571760000042559, + "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.0046424629999819444, + "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.0075295199999914075, + "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.014840790999983255, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content0-False-True]": 0.343949949999967, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content1-True-False]": 0.35656001799998194, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content10-True-True]": 0.10696476700002222, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content11-True-True]": 0.10389920500000471, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content12-True-True]": 0.12670739499992578, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content13-True-True]": 0.09931728400005113, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content2-True-False]": 0.24743695199998683, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content3-True-True]": 0.4163033059999748, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content4-True-True]": 0.3671503820000339, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content5-True-True]": 0.24690906799992263, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content6-True-False]": 0.11713506899997128, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content7-True-True]": 0.116684297000063, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content8-True-True]": 0.10310473400005549, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content9-True-True]": 0.11077872599997818, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_native_image_does_not_exist_in_yml_fail[integration_yml0-False]": 0.11423646999998027, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_native_image_does_not_exist_in_yml_fail[integration_yml1-True]": 0.10057011499998225, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs0-True]": 0.00102865000002339, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs1-False]": 0.0014279759999453745, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs2-False]": 0.0009375390000059269, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-False-False-True]": 0.10529747099997167, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-False-True-True]": 0.1908693229999585, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-True-False-False]": 0.1707992080000622, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-True-True-True]": 0.1847934340000279, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-False-False-True]": 0.3067562340000336, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-False-True-True]": 0.22962350899990724, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-True-False-False]": 0.24508374499998808, + "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-True-True-True]": 0.6511061930000324, + "demisto_sdk/commands/common/tests/layout_rule_test.py::test_is_valid_file": 0.10888225400009333, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_name_id_equal[layout_container0-True]": 0.003062324000040917, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_name_id_equal[layout_container1-False]": 0.004681837999953586, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_layout_container": 0.06443013000000519, + "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.04290701700006139, + "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.037667410000040036, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_mpv2_layout[layout_json0-False]": 0.0038673949999292745, + "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_mpv2_layout[layout_json1-True]": 0.003036315000031209, + "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.0034325349999448918, + "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.004172998000001371, + "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.0036869399999659436, + "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.004672458999948503, + "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_filter_changed_files": 0.011864466000020002, + "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_get_changed_files": 0.001053977000026407, + "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_staged": 0.0027868399999420035, + "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path0-True]": 0.0014452550000214615, + "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path1-False]": 0.001563406999991912, + "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path2-False]": 0.0014532610000514978, + "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path3-False]": 0.0011883360000410903, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[ [red]foo[/red]- [red]]": 0.0006001909999895361, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[ foo-]": 0.0005998899999895002, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red foo-]": 0.0006047879999755423, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red][bold]foo[/bold][/red]-[red][bold]]": 0.0006059710000840823, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red]foo[/red]-[red]]": 0.0006121310000253288, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[foo [red]bar[/red]-]": 0.0005941479999478361, + "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[foo-]": 0.0006317790000025525, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[ [red]foo[/red]-bar_- [red]bar_foo[/red]]": 0.0006707800000071984, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[ foo-bar_-bar_ foo]": 0.0006635689999825445, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[[red]foo[/red]-bar_-[red]bar_foo[/red]]": 0.0006720030000337829, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[foo [red]bar[/red]-baz_-baz_foo [red]bar[/red]]": 0.0006917519999660726, + "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[foo-bar_-bar_foo]": 0.0006865210000341904, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_contains_escapes[[red]foo[/red]-True]": 0.0006729049999876224, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_contains_escapes[foo-False]": 0.000628503000029923, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[ [red]foo[/red]-True]": 0.0006190639999772429, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[ foo-False]": 0.000611350000042421, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[[red]foo[/red]-True]": 0.0006167709999544968, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[foo [red]bar[/red]-False]": 0.0006023730000492833, + "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[foo-False]": 0.0006144260000269242, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[ [red]foo[/red]-True]": 0.0007788529999857019, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[ foo-False]": 0.0006261379999727978, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[[red]foo[/red]-True]": 0.0006176630000140904, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[foo [red]bar[/red]-False]": 0.0005989790000739958, + "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[foo-False]": 0.0005934970001248985, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json0-id_set_json0-True-True]": 0.0032531390000372085, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json1-id_set_json1-True-False]": 0.003419970999971156, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json2-id_set_json2-True-True]": 0.00283879600004866, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json3-id_set_json3-True-False]": 0.003014154999902985, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_name_id_equal[mapper0-True]": 0.0025693149999597154, + "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_name_id_equal[mapper1-False]": 0.0028597159999321775, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_disabled_rule": 0.004885266000030697, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_filename_returned_in_validations": 0.004599803999951746, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_fixes[## Header\\n next line-## Header\\n\\n next line]": 0.0072927639999420535, + "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.008901664000006804, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_fixes[##Hello-## Hello]": 0.007803077000005487, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[## Header\\n next line-blanks-around-headings]": 0.006520758000021942, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[##Hello-no-missing-space-atx]": 0.022558906000028855, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[

something

-no-inline-html]": 0.00721841399990808, + "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[\\n## Unreleased\\n\\n * Feature1\\n* feature2-list-indent]": 0.01605137699999659, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_dataset_name_matches_in_xif_and_schema": 0.09441308000003801, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_modeling_rule": 0.0949848449999422, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[schema]": 0.09805863299993689, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[testdata]": 0.10199651799996445, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[xif]": 0.09745721100000537, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[yml]": 0.1112780930000099, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_missing_key_from_yml": 0.09896657699994194, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_not_empty_rules_key": 0.10697781099997883, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_not_empty_schema_key": 0.09993769699997301, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_schema_types_valid[schema0-False]": 0.0968674459999761, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_schema_types_valid[schema1-True]": 0.1862267010000096, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_valid_modeling_rule": 0.45919057600008273, + "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_valid_rule_file_name": 0.09994831599999543, + "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.0038374490000023798, + "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.0038692679999599022, + "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.003333739999959562, + "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.0035051899998848057, + "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.003912640000066858, + "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.00407625600001893, + "demisto_sdk/commands/common/tests/native_image_test.py::test_docker_images_to_supported_native_images": 0.0030884629999832214, + "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.003200843000001896, + "demisto_sdk/commands/common/tests/native_image_test.py::test_get_native_image_reference[native:8.4-None]": 0.003169053000021904, + "demisto_sdk/commands/common/tests/native_image_test.py::test_load_native_image_config": 0.003585400000019945, + "demisto_sdk/commands/common/tests/old_release_notes_test.py::test_rn_master_diff[-False]": 0.0013106949999723838, + "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.0010029010000494054, + "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.0007555000000252221, + "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.0009565749999751461, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content0-True-valid_list_mock0]": 0.03252363299998251, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content1-False-valid_list_mock1]": 0.034621103000006315, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content2-False-valid_list_mock2]": 0.03353118299997959, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content3-False-valid_list_mock3]": 0.03300153599997202, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content4-False-valid_list_mock4]": 0.03309390699996584, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_integration_pack": 0.01725333799998907, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[0.-False]": 0.03116294400001607, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1-2-1-False]": 0.031235492000007525, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1.1.1-True]": 0.03130281599993623, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1.2-False]": 0.031154316999902676, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[12.1.5-True]": 0.033676494999951956, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[4.4.16-True]": 0.030734666000000743, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[blabla-False]": 0.03097782999998344, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_not_dict": 0.03269648700000971, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_empty_categories": 0.03702413000007709, + "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.03325132199995551, + "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.03333887600001617, + "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.0380305059999273, + "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.03433016499997166, + "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.035820564000005106, + "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.0334368879999829, + "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.03715316100010568, + "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.03788576699997748, + "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.03870226200001525, + "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.0384876709999844, + "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.037571595000031266, + "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.037289253999972516, + "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.0387895729999741, + "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.036964024999974754, + "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.03716443799993385, + "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.03791463800001793, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid_version_add_error": 0.03714287999997623, + "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.03878283000000238, + "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.03540559099997154, + "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.03928173400004198, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_name_does_not_contain_excluded_word": 0.03079755800001749, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack0]": 0.05593798499995728, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack10]": 0.09693112899998368, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack11]": 0.10569792400008282, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack12]": 0.0361097130000303, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack1]": 0.0542589860000362, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack2]": 0.06087582400004976, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack3]": 0.05125917600003049, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack4]": 0.09117800500001749, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack5]": 0.10518392500000573, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack6]": 0.09970152699992241, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack7]": 0.08192295999998578, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack8]": 0.6785895560000768, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack9]": 0.10018562900000916, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content0-False]": 0.03176111099998025, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content1-False]": 0.031787563000023056, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content2-False]": 0.03161150200003249, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content3-False]": 0.031762443999980405, + "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content4-True]": 0.03244290300006014, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_check_timestamp_format": 0.03239456099998961, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_file_not_found": 0.03962730699998929, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_getting_git_error": 0.041052778999983275, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_relative_path": 0.0387724629999866, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_running_on_master": 0.04078018700005259, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_invalid_is_pack_metadata_desc_too_long": 0.0019428049998850838, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tag_prefix[tags0-True]": 0.04009409100001449, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tag_prefix[tags1-False]": 0.05248182999991968, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags0-True-branch_tags0]": 0.04478781200009507, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags1-True-branch_tags1]": 0.03818165199999157, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags2-False-branch_tags2]": 0.038356281000005765, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags3-True-branch_tags3]": 0.037687718000029236, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags4-False-branch_tags4]": 0.0406454829999916, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags_with_non_approved_prefix[tags0-False-branch_tags0]": 0.040791585000022224, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases0-True-branch_usecases0]": 0.03770805100003827, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases1-True-branch_usecases1]": 0.04027906499987921, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases2-False-branch_usecases2]": 0.04034211999993431, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_error_added_full_path": 0.0006911689999355985, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_error_added_name_only": 0.0010836629999744218, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_file_exist": 0.0008485339999992902, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[incident-tags3-True]": 0.03996594399995956, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[layout-tags4-True]": 0.03848762600000555, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[none-tags0-True]": 0.038987749999989774, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[none-tags1-False]": 0.039877851000028386, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[playbook-tags2-True]": 0.0699384270000678, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[playbook-tags5-True]": 0.06790411600007928, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata0-1.0.1-True-True]": 0.005020918000013808, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata1-1.0.1-True-False]": 0.005058216999941578, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata2-1.0.2-True-False]": 0.010497808000025088, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata3-1.0.2-False-False]": 0.004892209000047387, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata4-1.0.0-False-True]": 0.004639376999932665, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[community-True]": 0.03948438500009388, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[developer-True]": 0.038686246999986906, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[partner-True]": 0.039517683999974906, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[someName-False]": 0.055964247000019895, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[test-False]": 0.039987284999995154, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[xsoar-True]": 0.03801327099995433, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_no_readme_alert_on_scripts_layouts": 0.04127095299992334, + "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.038683060000039404, + "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.04009217000003673, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_parse_file_into_list": 0.0007559710000464293, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_valid_is_pack_metadata_desc_too_long": 0.002956847000007201, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_author_image_exists_invalid": 0.004871469000022444, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_author_image_exists_valid": 0.004687487000012425, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_core_pack_dependencies": 0.03277331600003208, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_dependencies_invalid_id_set": 0.038912856000024476, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_dependencies_skip_id_set_creation": 0.3096265389999644, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_metadata": 0.05897711900007607, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_and_pack_description_no_readme_file": 0.04520643200004315, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_missing_file": 0.033875138999917453, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[ -False]": 0.038248331000033886, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[-False]": 0.03523953899997423, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[Text-True]": 0.046410883000021386, + "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.03780271499999799, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[ -False]": 0.03541662800000722, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[-False]": 0.036719863999962854, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[Text-True]": 0.034569464000014705, + "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.0350814669999977, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_invalid_images": 15.106691157000057, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_relative_url": 0.03626988700000311, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_valid_images": 0.05976456700000199, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_unique_files": 0.06413824000003387, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_contribute_pack_metadata_no_mail_and_url": 0.08102981800004727, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_contribute_pack_metadata_price_change": 0.07622522299999446, + "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.06952324600001702, + "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.07811400800000001, + "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_pack_metadata_url[some_support_url-True]": 0.08096380099999578, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json0-True]": 0.0007496980000496478, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json1-True]": 0.0006606919999967431, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json2-False]": 0.0008668680000027962, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json0-True]": 0.0007006570000953616, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json1-True]": 0.0006306669999958103, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json10-False]": 0.001026144000036311, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json11-True]": 0.0006425380000791847, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json12-True]": 0.0006316680000395536, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json13-True]": 0.0006300349999719401, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json14-True]": 0.0006331719999934649, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json15-False]": 0.0008300380000036967, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json16-False]": 0.0011472900000057962, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json17-True]": 0.0011141189999648304, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json2-True]": 0.0006521960000327454, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json3-True]": 0.0006329800000344221, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json4-False]": 0.0008645730000580443, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json5-False]": 0.000835739999956786, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json6-False]": 0.0008221230000344804, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json7-True]": 0.0006433820000779633, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json8-True]": 0.0006307769999693846, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json9-True]": 0.0006216810000410078, + "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.048646109999936016, + "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.10798854700004767, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json0-False]": 0.0010130120000440002, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json1-True]": 0.0006689690000030168, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json2-True]": 0.0006463559999474455, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_id_uuid[playbook_json0-True]": 0.0006501730000536554, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_id_uuid[playbook_json1-False]": 0.0006550239999683072, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json0-True]": 0.00098566999997729, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json1-True]": 0.0010983689999193302, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json2-False]": 0.0010670599999684782, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json3-False]": 0.0008822759999702612, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json4-False]": 0.0008277640000073916, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json5-True]": 0.0006440809999617159, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json6-True]": 0.0006479900000044836, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_taskid_equals_id[playbook_json0-True]": 0.0006397540000193658, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_taskid_equals_id[playbook_json1-False]": 0.0006267900000125337, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_using_instance[playbook_json0-False]": 0.0008715170000073158, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_using_instance[playbook_json1-True]": 0.0006677169999989019, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current0-True]": 0.000712126999985685, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current1-True]": 0.0006676360000597015, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current2-True]": 0.0006571249999751672, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current3-False]": 0.0008851020000406606, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current4-False]": 0.0008436549999828458, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current5-False]": 0.0008370909999939613, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json0-True]": 0.0007131809999805228, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json1-False]": 0.0008579600000189203, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json2-False]": 0.0008898210000438667, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json3-False]": 0.0008642619999932322, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_name_contains_the_type": 0.0825919250000311, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_name_does_not_contains_the_type": 0.058895472999950016, + "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.010579446000065218, + "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.011541511000018545, + "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.030029631999923367, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json0-id_set_json0-True]": 0.06360736099992437, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json1-id_set_json1-False]": 0.0632307159999641, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json2-id_set_json2-True]": 0.06796259199995802, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json3-id_set_json3-False]": 0.0641216760000134, + "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.09109564599998521, + "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.08281011700000818, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_valid_schema": 0.3386464799999658, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[False-False-True]": 0.12485048700006018, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[True-False-False]": 0.12990355200003023, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[True-True-True]": 0.21444900199998074, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_verify_else_for_conditions_task[playbook_task_json0-False]": 0.0006962400000247726, + "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_verify_else_for_conditions_task[playbook_task_json1-True]": 0.0006388529999981074, + "demisto_sdk/commands/common/tests/pre_process_rule_test.py::TestPreProcessRuleValidator::test_get_field_name": 0.0007230900000081419, + "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# BSD\\n def test():\\n pass]": 0.020104174999971747, + "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# Copyright\\n import pytest]": 0.02148577299999488, + "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# MIT\\n import test]": 0.019825385999979517, + "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# proprietary\\n\\ninput]": 0.021681457999932263, + "demisto_sdk/commands/common/tests/readme_test.py::test_air_gapped_env": 0.0032892969999807065, + "demisto_sdk/commands/common/tests/readme_test.py::test_are_modules_installed_for_verify_false_res": 0.39087387899996884, + "demisto_sdk/commands/common/tests/readme_test.py::test_check_readme_relative_image_paths": 0.0018924119999610411, + "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.021277213000018946, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found0-False]": 0.020266739000021516, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found1-False]": 0.006310335000023315, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found2-True]": 0.005975870999975541, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found0-errors_ignore0-False]": 0.021229554999990796, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found1-errors_ignore1-False]": 0.021327878000022338, + "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found2-errors_ignore2-True]": 0.025842370000020765, + "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## BSD\\n\\n---\\ninput]": 0.022612284999979693, + "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## Copyright\\ninput]": 0.020547390999979598, + "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## MIT\\n\\n----------\\ninput]": 0.020376601999942068, + "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## proprietary\\n\\ninput]": 0.02256724099999019, + "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_in_integration_readme": 0.008018962999983614, + "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_in_repo_readme": 0.003420822999999018, + "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_not_in_readme": 0.00692452499998808, + "demisto_sdk/commands/common/tests/readme_test.py::test_invalid_short_file": 0.0014533419999906982, + "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.012453900000082285, + "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.06260579799999277, + "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.029710220999959347, + "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.013967013000012685, + "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.2742459849999932, + "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.01291950700004918, + "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.20699005000006, + "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.0358945979999703, + "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.015543995000030009, + "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.20925200200002791, + "demisto_sdk/commands/common/tests/readme_test.py::test_is_image_path_valid": 0.0021273699999824203, + "demisto_sdk/commands/common/tests/readme_test.py::test_readme_ignore[/HelloWorld/README.md-getting started and learn how to build an integration]": 0.020570954999982405, + "demisto_sdk/commands/common/tests/readme_test.py::test_relative_url_not_valid": 0.0024495510000406284, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Additional Information\\n\\n## OtherSection-Additional Information]": 0.031190622000053736, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Known Limitations\\n\\n----------\\n-Known Limitations]": 0.021792334999929608, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting-Troubleshooting]": 0.021612849999996797, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting\\n## OtherSection-Troubleshooting]": 0.023119398999995155, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting\\n\\n---\\n## OtherSection-Troubleshooting]": 0.02150002000001905, + "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Use Cases\\n\\n----------\\n## OtherSection-Use Cases]": 0.021673705000011978, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Additional Information\\n\\n### OtherSection]": 0.019964352000044983, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Additional Information\\n\\ninput]": 0.02226695999996764, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Known Limitations\\n\\n----------\\ninput]": 0.021983662000025106, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Troubleshooting\\n\\n---\\ninput]": 0.02014115400004357, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Troubleshooting\\ninput]": 0.020004418999974405, + "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Use Cases\\n\\n----------\\ninput]": 0.020064209999986815, + "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.002135496000050807, + "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.002008757000055539, + "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.021276790999991135, + "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.02124096499994721, + "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.04362910899999406, + "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.021464502000014818, + "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.02157799399998339, + "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.021586270000057084, + "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.02133865700000115, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_readme_image_paths": 10.044326151999996, + "demisto_sdk/commands/common/tests/readme_test.py::test_verify_template_not_in_readme": 0.0093530719999535, + "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_has_corresponding_rn_file[None-False]": 0.005890972000031525, + "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_has_corresponding_rn_file[Some RN text-True]": 0.0053636369999594535, + "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_is_valid_file[None-False]": 0.005323222000015448, + "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_is_valid_file[Some RN text-True]": 0.008411804999923334, + "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.14620187100001658, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete[-False]": 0.14546753699994497, + "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.1470075629999883, + "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.1434696820000454, + "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.16613543100004335, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_added[-False]": 0.16464910000001964, + "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.16521257899989905, + "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.1655973739999581, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_file_pack_contained_in_file_name_different_pack": 0.022807535000026746, + "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.14809707600005595, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_invalid_file_type[-False]": 0.15005654199995888, + "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.14701277299997173, + "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.14674541700003374, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_renamed_file": 0.027714892999938456, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_rn_config": 0.004476913999951648, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_with_author_image": 0.023015423999993345, + "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.004135215000019343, + "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.004111921999992774, + "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.0041463170000497485, + "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.0017424000000119122, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[-False]": 0.0021846169999548692, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[ #### Integrations\\n##### Some Integration-True]": 0.00639552399997001, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[-False]": 0.0018892960000584935, + "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.0017437939999922492, + "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.0019211750000067696, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_init": 0.0005459489999566358, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Content item dose not exist]": 0.005776931000013974, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Content type dose not exist]": 0.02988182699994013, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid content type format]": 0.005505542999969748, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid special forms missing star]": 0.005624464999982592, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid special forms]": 0.005653576999975485, + "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.012808950000021468, + "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.010646745999963514, + "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.010780535999970198, + "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.012715124999999716, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[%%UPDATE_RN%%-False]": 0.0016305340000144497, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[-False]": 0.002053440999986833, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[This are sample release notes-False]": 0.0015784859999712353, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[## script_name\\n- Some description.-True]": 0.00078895100000409, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[#### Scripts\\n##### script_name\\n- Some description.-True]": 0.0007994010000516028, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[#### Scripts\\n- Some description.-True]": 0.0007478349999701095, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[##### script_name\\n- Some description.-False]": 0.0010408320000010463, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[- Some description.-False]": 0.00629769100004296, + "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_headers": 0.057035440999982256, + "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.027331117000017002, + "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.008879928999988351, + "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.005828737000001638, + "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.009761964999938755, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[-CIDR-False]": 0.0014929060000099525, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[CIDR--False]": 0.001531296999985443, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[CIDR-CIDR-True]": 0.0013757069999655869, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_equals_details[CIDR-CIDR-True]": 0.0014251289999833716, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_equals_details[CIDR-CIDR2-False]": 0.0015203570000608124, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[-1-False]": 0.0018950770000287775, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[0-True]": 0.0013795339999660428, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[500-True]": 0.001803875999939919, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[not_valid-False]": 0.0017988369999670795, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[CIDR-True]": 0.0016639760000316528, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[host_test-True]": 0.0014001519999737866, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4 ipv6-True]": 0.0013050149999571659, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4&ipv6-True]": 0.0013372649999041641, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4*ipv6-False]": 0.0014333259999830261, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4-ipv6-False]": 0.0014839090000009492, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[-1-True]": 0.0013725320000048669, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[0-False]": 0.0014685220000387744, + "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[1-False]": 0.0014853009999455935, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_configuration_extraction[script0-expected0]": 0.0006723149999174893, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file0-old_file0-True]": 0.0013034829999583053, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file1-old_file1-False]": 0.0007634439999151255, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file2-old_file2-True]": 0.0010931900000059613, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file3-old_file3-False]": 0.0007447809999803212, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file4-old_file4-False]": 0.000767551999956595, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file5-old_file5-False]": 0.0007139029999621016, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file6-old_file6-True]": 0.0010526949999416502, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file7-old_file7-False]": 0.0007166859999188091, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file8-old_file8-False]": 0.0007583240000030855, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_files_names_with_separators": 0.040830276000008325, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_files_names_without_separators": 0.11116646000004948, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_folder_name_with_separators": 0.0437597119999964, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_folder_name_without_separators": 0.1269742610000435, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_invalid_script_file_path": 0.0019034020000390228, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file0-old_file0-False]": 0.0007394290000206638, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file1-old_file1-True]": 0.001152479999973366, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file2-old_file2-False]": 0.0007392290000325374, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file3-old_file3-False]": 0.0007435969999960435, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file0-old_file0-False]": 0.0007191710000142848, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file1-old_file1-False]": 0.0007021700000109377, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file2-old_file2-False]": 0.0007249330000718146, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file3-old_file3-False]": 0.0007383579999782341, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file4-old_file4-True]": 0.0010558500000001914, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file0-old_file0-True]": 0.0010671419999539467, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file1-old_file1-True]": 0.001035411000032127, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file2-old_file2-False]": 0.000927359999991495, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file3-old_file3-False]": 0.0007299030000353923, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/ApiModules-False-True]": 0.0007104960000106075, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/ApiModules-True-True]": 0.0006950369999572104, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/Pack1-True-True]": 0.0007314150000183872, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content0-False-True]": 0.11368030799997086, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content1-True-False]": 0.18376087799998686, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content10-True-True]": 0.1962641860000076, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content11-True-True]": 0.10342682800001057, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content12-True-True]": 0.09894202699996413, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content13-True-True]": 0.11594353200001706, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content2-True-False]": 0.126087843999926, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content3-True-True]": 0.10398143300000129, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content4-True-True]": 0.100920149999979, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content5-True-True]": 0.10170798399997238, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content6-True-False]": 0.18212847300003432, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content7-True-True]": 0.1053828499999554, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content8-True-True]": 0.10055446199993412, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content9-True-True]": 0.11252456400001165, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_native_image_does_not_exist_in_yml_fail[script_yml0-False]": 0.10349450300003582, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_native_image_does_not_exist_in_yml_fail[script_yml1-True]": 0.10024800600007211, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_there_duplicates_args[current_file0-True]": 0.0008488639999768566, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_there_duplicates_args[current_file1-False]": 0.004360606999966876, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current0-True]": 0.0008151900000825663, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current1-True]": 0.0006713330000707174, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current2-True]": 0.0006677850000187391, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current3-False]": 0.0008564279999632163, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current4-False]": 0.0008297890000221742, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current5-False]": 0.0008780990000900601, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_name[current0-True]": 0.000657276999959322, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_name[current1-False]": 0.0008585220000441041, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file0-False]": 0.0009019930000135901, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file1-True]": 0.0007016500000531778, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file2-True]": 0.0006395729999439936, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_name_contains_the_type": 0.03359511700000439, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_name_does_not_contains_the_type": 0.10344368800002712, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_no_incident_in_core_pack[content0-True]": 0.0006786550000015268, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_no_incident_in_core_pack[content1-False]": 0.000989446000062344, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_runas_is_dbtrole": 0.04025748700007625, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_runas_is_not_dbtrole": 0.03392721700004131, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-4.5.0-False]": 0.0010673419999989164, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-5.5.0-True]": 0.0008869949999734672, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-5.5.1-True]": 0.0007624440000313371, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-6.0.0-True]": 0.0007527349999918442, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-None-False]": 0.0010792520000109107, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[python--True]": 0.0007184509999547117, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[python-4.5.0-True]": 0.000714182000024266, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_script_file_path": 0.0005371130000071389, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-False-False-True]": 0.10839697299991258, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-False-True-True]": 0.20306624500000225, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-True-False-False]": 0.10526498700005504, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-True-True-True]": 0.10836872800001629, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-False-False-True]": 0.10771801499998901, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-False-True-True]": 0.10586673100004873, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-True-False-False]": 0.12573999299996785, + "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-True-True-True]": 0.2759545229999958, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_get_matching_regex[Packs/XDR/NoMatch/XDR.yml-regexes1-False]": 0.0007404019999626144, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_get_matching_regex[Packs/XDR/Playbooks/XDR.yml-regexes0-(?:./)?Packs\\\\/([^\\\\\\\\\\\\/]+)\\\\/Playbooks\\\\/.*\\\\.yml]": 0.0009647009999298461, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable0-non_acceptable0-regex0]": 0.0011238370000228315, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable1-non_acceptable1-regex1]": 0.0009411849999878541, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable10-non_acceptable10-regex10]": 0.0006961679999903936, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable11-non_acceptable11-regex11]": 0.0007038029999648643, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable12-non_acceptable12-regex12]": 0.0006906200000003082, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable13-non_acceptable13-regex13]": 0.0007088619999535695, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable14-non_acceptable14-regex14]": 0.0006943449999425866, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable15-non_acceptable15-regex15]": 0.0007052560000033736, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable16-non_acceptable16-regex16]": 0.0007015780000187988, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable17-non_acceptable17-regex17]": 0.0006937240000297606, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable18-non_acceptable18-regex18]": 0.0007216569999854983, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable19-non_acceptable19-regex19]": 0.0006965599999375627, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable2-non_acceptable2-regex2]": 0.0007547490000661128, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable20-non_acceptable20-regex20]": 0.0006993750000106047, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable21-non_acceptable21-regex21]": 0.0007269750000205022, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable22-non_acceptable22-regex22]": 0.000722408000001451, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable23-non_acceptable23-regex23]": 0.0006900180000002365, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable24-non_acceptable24-regex24]": 0.0006913390000136133, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable25-non_acceptable25-regex25]": 0.0006920609999951921, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable26-non_acceptable26-regex26]": 0.0007188900000301146, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable27-non_acceptable27-regex27]": 0.0009174510000207192, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable28-non_acceptable28-regex28]": 0.0007129300000201511, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable29-non_acceptable29-regex29]": 0.0006885940000529445, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable3-non_acceptable3-regex3]": 0.0009066520000260425, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable30-non_acceptable30-regex30]": 0.000868190000062441, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable31-non_acceptable31-regex31]": 0.0007530249999945227, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable32-non_acceptable32-regex32]": 0.0012103780000529696, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable33-non_acceptable33-regex33]": 0.000694055000053595, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable4-non_acceptable4-regex4]": 0.0007250939999607908, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable5-non_acceptable5-regex5]": 0.0009318479999933516, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable6-non_acceptable6-regex6]": 0.0008802219999779481, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable7-non_acceptable7-regex7]": 0.0006924709999793777, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable8-non_acceptable8-regex8]": 0.0007111369999961425, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable9-non_acceptable9-regex9]": 0.0007769199999643206, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config0-True]": 0.014069481999911204, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config1-True]": 0.013399722999906771, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config2-True]": 0.013298473000020294, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config3-True]": 0.01327507999997124, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config4-True]": 0.013231508000046688, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config5-False]": 0.014415048999921964, + "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config6-False]": 0.014215265000018462, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_check_for_spaces_in_file_name": 0.21284088299995574, + "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.2590774280000119, + "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.26042005300001847, + "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.1959244010000134, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_field_with_open_ended": 0.35858028700005207, + "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.4238861740000175, + "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.6956357650000768, + "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.08999638900007767, + "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.26611294100001714, + "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.5741001909999568, + "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.03259141099994167, + "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.2739371809999511, + "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.2522471500000165, + "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.3726575510000316, + "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.2649310130000231, + "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.06097236699997666, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_indicator_with_open_ended": 0.28478977899999336, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_extension": 0.0031859069999882195, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Notinregex/report-sade.json-False]": 0.0030058589999271135, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Packs/Test/Integrations/Cymon/Cymon.yml-True]": 0.2984267990000262, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Packs/Test/Reports/report-sade.json-True]": 0.3703359250000062, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[fromVersion-False]": 0.38089725099996485, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[fromVersion-True]": 0.37940323700001954, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[id-False]": 0.38011345199998914, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[id-True]": 0.3788670009999464, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isAllFeeds-False]": 0.3788480219999997, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isAllFeeds-True]": 0.37611947999999984, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isFeed-False]": 0.3870096109999963, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isFeed-True]": 0.37745139200001177, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[name-False]": 0.38654532499998595, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[name-True]": 0.37698235099992417, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[playbookId-False]": 0.3830405670000232, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[playbookId-True]": 0.38497260899998764, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[selectedFeeds-False]": 0.3810497490000557, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[selectedFeeds-True]": 0.3808375550000278, + "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.11976254100000006, + "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.12084482200003777, + "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.12015484600004811, + "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.12506042199999, + "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.12223813300005304, + "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.12139454999993404, + "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.04052502500007904, + "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.0403057370000397, + "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.04160760600007052, + "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.041595574999973906, + "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.2344255279999743, + "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.17381453500001953, + "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.17336924400001408, + "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.024541744000032395, + "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.023854140999958418, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_alias_to": 0.27953823599995076, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_aliases__invalid_type": 0.36878490399999464, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_aliases__valid": 0.2894578449999585, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_pretty_name": 0.29017419100006236, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[dependency_packs]": 0.1458950189999655, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[fromVersion]": 0.14375295900003948, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[id]": 0.14722584300000108, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[name]": 0.1447156380000365, + "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[wizard]": 0.1446283750000248, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_check_for_spaces_in_file_name": 0.0017716460000087864, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_modeling_rule_is_valid[yml_data_update0]": 0.07466588099998717, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_modeling_rule_is_valid[yml_data_update1]": 0.07891326399999343, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_parsing_rule_is_valid[yml_data_update0]": 0.07893307400007643, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_parsing_rule_is_valid[yml_data_update1]": 0.09900179399994613, + "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.2610679510000864, + "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.2623810819999335, + "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.19369204400004492, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_layout_rule_missing_layout_id_field": 0.17795756800006757, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_modeling_rule_schema_bad_type": 0.14575988600000755, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_modeling_rule_yml_missing_fromversion": 0.15626253099998166, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_parsing_rule_yml_missing_fromversion": 0.27957463200004895, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_trigger_missing_search_field": 0.17612852100006648, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xdrc_template_missing_ostype": 0.15610624300006748, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xsiam_dashboard_has_creator_mail": 0.23687945000000354, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xsiam_report_missing_global_id": 0.3547980460000417, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_field_with_open_ended": 0.16944938400001774, + "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.42453004300006114, + "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.584101894000014, + "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.08895749999993541, + "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.08728758499995593, + "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.47162790500004803, + "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.13067177700003185, + "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.1323813589999645, + "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.24873700900002405, + "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.2492520010000021, + "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.06114225199996781, + "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.060248906000026636, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_indicator_with_open_ended": 0.28203211399994643, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_extension": 0.0022696650000284535, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Notinregex/report-sade.json-False]": 0.003332589000081043, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Packs/Test/Integrations/Cymon/Cymon.yml-True]": 0.0012856179999971573, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Packs/Test/Reports/report-sade.json-True]": 0.0018261269999584329, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[fromVersion-False]": 0.38127996700001177, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[fromVersion-True]": 0.3784856909999803, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[id-False]": 0.38327947699997367, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[id-True]": 0.3786039500000129, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isAllFeeds-False]": 0.38606381099998544, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isAllFeeds-True]": 0.3782952649999629, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isFeed-False]": 0.3820011320000276, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isFeed-True]": 0.3806406369999422, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[name-False]": 0.3833021789999407, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[name-True]": 0.3764815140000337, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[playbookId-False]": 0.3807411050000269, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[playbookId-True]": 0.3791433789999701, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[selectedFeeds-False]": 0.3822916319999763, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[selectedFeeds-True]": 0.3764145750000125, + "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.12088590699994484, + "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.12170449200004896, + "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.12101517700000386, + "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.11965419599999905, + "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.12296501800000215, + "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.1202288899999644, + "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.16669493399996327, + "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.167638474000114, + "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.17642316900003152, + "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.1758628630000203, + "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.6245860539999626, + "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.5655627129999061, + "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.5749077760000318, + "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.10047456699993518, + "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.10004948099998501, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_layout_rule": 0.17410132600002726, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_modeling_rule_schema": 0.13589765400001852, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_modeling_rule_yml": 0.16579700800002684, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_parsing_rule_yml": 0.15285327700001972, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_trigger": 0.20718446999995876, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xdrc_template": 0.30610630600000377, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xsiam_dashboard": 0.31952902799997673, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xsiam_report": 0.22218985900002508, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_alias_to": 0.1731612359999417, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_aliases__invalid_type": 0.1735241219999466, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_aliases__valid": 0.17171481500002983, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_pretty_name": 0.279329318000066, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[dependency_packs]": 0.1453888730000017, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[fromVersion]": 0.1528383780000695, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[id]": 0.14435566899993546, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[name]": 0.1442077839999456, + "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[wizard]": 0.1459338650000177, + "demisto_sdk/commands/common/tests/timers_test.py::test_timers__happy_path": 0.00284061100001054, + "demisto_sdk/commands/common/tests/timers_test.py::test_timers__no_group_exist": 0.001834012000074381, + "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data0-Integrations]": 0.0006649909999509873, + "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data1-Layouts]": 0.0006297539999877699, + "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data2-Playbooks]": 0.0006256969999753892, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_camel_to_snake": 0.0006314490000249862, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files0-types0-output0]": 0.018274206999990383, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files1-types1-output1]": 0.001594877000059114, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files2-types2-output2]": 0.0012675149999950008, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_on_pack[AbuseDB-file_paths_list0]": 0.0006722640000020874, + "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.0005569990000253711, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[-None]": 0.0006165219999161309, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[.pack-ignore-.pack-ignore]": 0.0006187559999943915, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[.secrets-ignore-.secrets-ignore]": 0.0006154479999622708, + "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.000799360999963028, + "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.0006453540000279645, + "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.0007734819999996034, + "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.0007240009999804897, + "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.0007700470000031601, + "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.00074667300003739, + "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.0007519140000340485, + "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.000736885000037546, + "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.0007325860000264584, + "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.004345557999954508, + "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.0007481360000269888, + "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.0007083209999905193, + "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.013939680000021326, + "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.0008708760000217808, + "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.0013181910000525932, + "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.000706448000016735, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[Author_image.png-author_image]": 0.0006403759999784597, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[Packs/TestPack/Integrations/TestIntegration/.vulture_whitelist.py-vulture_whitelist]": 0.0006306079999944814, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[pack_metadata.json-metadata]": 0.0006655710000131876, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[path19-doc_files]": 0.0006233130000623532, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_ignore_sub_categories": 0.0035991359999911765, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_no_file": 0.0005008640000596642, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_with_invalid_json": 0.004381353999974635, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_with_invalid_yml": 0.020978834000004554, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[parsingrule-external-test.json-parsingrule-external-parsingrule-test.json]": 0.0006928329999595917, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[parsingrule-test.json-parsingrule-external-parsingrule-test.json]": 0.0006809409999846139, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[test.json-parsingrule-parsingrule-external-test.json]": 0.0007297010000115733, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data0-Integrations-javascript]": 0.0007146940000097857, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data1-Scripts-javascript]": 0.0008011740000029022, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data2-Layouts-]": 0.0006897369999592229, + "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.0009719939999968119, + "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.0008215429999722801, + "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.006069725999964248, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[None-True-None]": 0.0006839160000708944, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[invalid-path.json-False-None]": 0.022770067000010386, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[test-True-None]": 0.0007066090000193981, + "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.004661008000027778, + "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.0007356520000030287, + "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.003100785000015094, + "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.0031519610000145803, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_non_unicode[.json-dumps]": 0.005759806999947159, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_non_unicode[.yml-dumps]": 0.005967675000078998, + "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.002849266000055195, + "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.0033106470000348054, + "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.0025763369999936003, + "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.002623805999974138, + "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.05122189400003663, + "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.040468469000018104, + "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.04657033799998089, + "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.0503330819999519, + "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.06420624899999439, + "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.0035490220000156114, + "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.034383714999989934, + "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.03471687699999393, + "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.0014516790000698165, + "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_yml_paths_in_dir[demisto_sdk]": 0.0008350190000214752, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFile::test_get_yaml": 0.002486599999997452, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_not_recursive": 0.0006433989999550249, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_project_dir_is_file": 0.0004776709999987361, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_recursive": 0.0006206379999298406, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_recursive_pack": 0.000759486999982073, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_item_has_marketplaces_field": 0.00044520899996314256, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_no_marketplaces_specified": 0.0004798150000056012, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_only_pack_has_marketplaces": 0.0005649660000131007, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_pack_not_in_cache": 0.0010800150000136455, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_content": 0.03428421899997147, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_content_sanity": 0.03679276800005482, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid": 0.04888183600007778, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid_branch": 0.04954352200002177, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid_origin_branch": 0.053724050000028, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_origin": 0.10761891300001025, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_origin_tag": 0.3446212869999954, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_sanity": 0.10823492199995144, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_tag": 0.3455259240000146, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_md_file_origin": 0.03288369900002408, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_negative": 0.0006740169999375212, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[IPNetwork_test/file.json]": 0.0005553750000331092, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[SetGridField_test/file.json]": 0.0005490949999398254, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[StixDecodeTest/file.json]": 0.0005608559999359386, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[TestCommands/file.json]": 0.0005471300000294832, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[data_test/file.json]": 0.0005580019999911201, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[pack_metadata.json]": 0.0005575319999593376, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[some_text_file.txt]": 0.0005936280000469196, + "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.0005628200000273864, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[test_data/file.json]": 0.000559855000119569, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testcommandsfunctions/file.json]": 0.0005654440000171235, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testdata/file.json]": 0.0005594539999833614, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testhelperfunctions/file.json]": 0.0006463179999514068, + "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFileLocally::test_get_file_from_master_when_in_private_repo": 0.18231697600003827, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_convertion_to_id_set_name[JARM-reputation]": 0.0006022739999593796, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_convertion_to_id_set_name[Proofpoint Threat Response-betaintegration]": 0.0005866840000408047, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_no_item_id_in_specific_type": 0.0004557299999987663, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_no_such_type": 0.0004421560000196223, + "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_sanity": 0.0004932809999331766, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_invalid_marketplace_version": 0.0005318530000408828, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xpanse_marketplace_version": 0.0005039510000415248, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsiam_marketplace_version": 0.0005014270000174292, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_marketplace_version": 0.0005006129999856057, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_on_prem_marketplace_version": 0.0004925389999357321, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_saas_marketplace_version": 0.0004981079999879512, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_should_remove_text": 0.00048568599993359385, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_tag_only_on_edl_description[EDL_xsiam_res.md-marketplacev2]": 0.0013153539999848363, + "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_tag_only_on_edl_description[EDL_xsoar_res.md-xsoar]": 0.00108524500006979, + "demisto_sdk/commands/common/tests/tools_test.py::TestReleaseVersion::test_get_last_release": 0.001811478999911742, + "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[0.0.0-5.0.0--1]": 0.0010049769999227465, + "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[4.5.0-4.5-0]": 0.0007221470000331465, + "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[5.0.0-0.0.0-1]": 0.0007610399999862238, + "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[5.0.0-5.0.0-0]": 0.0007359329999871989, + "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_no_text_to_remove": 0.0006457349999777762, + "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_remove_tags_only": 0.0004655870000078721, + "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_remove_text": 0.0006877029999827755, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[-expected_result3]": 0.0006187550000618103, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[[\"a1\",\"b2\",\"c3\"]-expected_result1]": 0.0006178730000101496, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[a1,b2,c3-expected_result0]": 0.0006742779999626691, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[arg2-expected_result2]": 0.007642767999982425, + "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[arg4-expected_result4]": 0.0006062610000299173, + "demisto_sdk/commands/common/tests/tools_test.py::test_capital_case": 0.0004819299999780924, + "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_non_vs_code_format_invalid": 0.0005247889999395738, + "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_non_vs_code_format_valid": 0.001075556999978744, + "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_vs_code_format_invalid": 0.0004785619999552182, + "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_vs_code_format_valid": 0.0005004939999935232, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[\"not a field\"-]": 0.0006329810000806901, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${.=1}-]": 0.0005914830000506299, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid.[0]}-employeeid]": 0.0006147770000666242, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid.hello}-employeeid]": 0.000610299000015857, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid}-employeeid]": 0.0006849370000168165, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[.-]": 0.0005927450000058343, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid-employeeid]": 0.0011891999999988911, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid.[0].hi-employeeid]": 0.0006089160000328775, + "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid.hello-employeeid]": 0.0006151879999833909, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee & Number-employeenumber]": 0.0006748800000195843, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee Number!!!-employeenumber]": 0.0005781889999525447, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee Number-employeenumber]": 0.0005886680000344313, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee, Number?-employeenumber]": 0.0005724679999730142, + "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee_Number-employeenumber]": 0.0005980959999192237, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path0-root/Packs/MyPack]": 0.0006441319999908046, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path1-Packs/MyPack1]": 0.0006804989999977806, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path2-Packs/MyPack2]": 0.0006231929999671593, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path3-Packs/MyPack3]": 0.0006057589999386437, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path4-Packs/MyPack4]": 0.0005900600000359191, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[.circleci/some_file.yml-build-config-file]": 0.0006146369999555645, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[.gitlab/some_file.yml-build-config-file]": 0.0006135540000400397, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[CONTRIBUTORS.json-contributors]": 0.0005974150000156442, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/.secrets-ignore-.secrets-ignore]": 0.0005970549999005925, + "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.0006093570000302861, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Author_image.png-author_image]": 0.0005876369999668896, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/IndicatorTypes/indicator.json-reputation]": 0.000632238000093821, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.js-javascriptfile]": 0.0006192650000116373, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.ps1-powershellfile]": 0.0006088349999799902, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.py-pythonfile]": 0.0006167509999386311, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.xif-xiffile]": 0.0006319889999986117, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/some_image.png-image]": 0.000598224999919239, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Jobs/job.json-job]": 0.00059656400003405, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Lists/list.json-list]": 0.0006025330000056783, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/ReleaseNotes/1_0_0.json-releasenotesconfig]": 0.0005984260000104769, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/ReleaseNotes/1_0_0.md-releasenotes]": 0.0006197059998953591, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/README.md-readme]": 0.0006133439999871371, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/myScript/myScript.yml-script]": 0.0006088960000170118, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/script-myScript.yml-script]": 0.0006182330000115144, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Triggers/trigger.json-trigger]": 0.0006028150000361165, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMDashboards/dashboard.json-xsiamdashboard]": 0.0006164990000456783, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMDashboards/dashboard_image.png-xsiamdashboardimage]": 0.0005918549999819334, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMReports/report.json-xsiamreport]": 0.000596301999962634, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMReports/report_image.png-xsiamreportimage]": 0.0006273500000020249, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/doc_files/foo.md-doc_files]": 0.0006095959999470324, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/pack_metadata.json-metadata]": 0.0005944179999346488, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/some_random_file-None]": 0.0006446339999683914, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[doc_files/image.png-doc_image]": 0.0006059099999902173, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[some_random_file_not_under_Packs-None]": 0.0006042169999886937, + "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[xsoar_config.json-xsoar_config]": 0.0006028749999131833, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path[input_path0-expected_output0]": 0.0006102399999576846, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path[input_path1-expected_output1]": 0.0006170309999902202, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path_no_remote": 0.003373632999966958, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_core_packs": 0.20597904300001346, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[git@github.com:demisto/content-dist.git-expected_name1]": 0.0020890069999950356, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://code.pan.run/xsoar/content-dist-expected_name4]": 0.002069101000017781, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://code.pan.run/xsoar/content-dist.git-expected_name5]": 0.0019606879999400917, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://github.com/demisto/content-dist-expected_name3]": 0.0020730260000050293, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://github.com/demisto/content-dist.git-expected_name2]": 0.0019612190000657392, + "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.0020326620000332696, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[ssh://git@github.com/demisto/content-dist.git-expected_name0]": 0.0022328460000267114, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_definition_name": 0.0007718310000655038, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data0-TestBrand]": 0.0021238330000414862, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data1-TestID]": 0.0021467549999556468, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data2-TestName]": 0.0021610209999494145, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data3-TestType]": 0.0023504039999693305, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data4-TestDisplay]": 0.0018558919999804857, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data5-T Name]": 0.0019475619999980154, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data6-Testlayout]": 0.0018496910000180833, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data7-D Name]": 0.0017962910000051124, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data8-R Name]": 0.0018601709999757077, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data9-Test2]": 0.0018086040000184767, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__image": 0.027006771000003482, + "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.0007461519999765187, + "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.0007695750000493717, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__integration": 0.03590155599999889, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__layout": 0.004463638000004266, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__mapper": 0.004581857999937711, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__old_classifier": 0.004445435000036468, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__playbook": 0.0892385470000363, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__reputation": 0.004481760999908602, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__script": 0.02021018299996058, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current0-2]": 0.0006083860000103414, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current1-2]": 0.0006064819999664905, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current2-None]": 0.0005900410000663214, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current3-2]": 0.000584549999985029, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current4-None]": 0.000578168999936679, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current5-3]": 0.0005950389999611616, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current6-3]": 0.000595951999969202, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current7-None]": 0.0005756840000117336, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current8-3]": 0.0005829579999954149, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current9-None]": 0.000591031999988445, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current0-2]": 0.0006220409999855292, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current1-2]": 0.0005961630000115292, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current2-None]": 0.0006150479999860181, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current3-None]": 0.0005978539999205168, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current4-2]": 0.0006592400000045018, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current5-3]": 0.0006061410000484102, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current6-3]": 0.0006013720000623834, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current7-None]": 0.0005909319999659601, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current8-None]": 0.0006021829999554029, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current9-3]": 0.000595108999959848, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_from_version": 0.0015682460000334686, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_from_version_error": 0.0011375119999570416, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__ignore_missing_test": 0.008953181000038057, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__ignore_test": 0.0372398630000248, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__no_ignore_pack": 0.026959517000079813, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__no_pack": 0.0211802949999651, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__test_not_ignored": 0.02735673499995528, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_last_remote_release_version": 0.0025944390000631756, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_latest_release_notes_text_invalid": 0.0008385549999729847, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[-expected_object4]": 0.004648391000046104, + "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.010003170999937083, + "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.004827315000056842, + "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.0047493000000145, + "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.004735173999961262, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[test-None]": 0.030769039999995584, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[test[dssa]sdf-None]": 0.004985550999947463, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_metadata": 0.003989482999941174, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths0-None-expected_packs0]": 0.0007611199999359997, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths1-None-expected_packs1]": 0.0006883340000172211, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths2-skip_file_types2-expected_packs2]": 0.0007004860000279223, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_relative_path_from_packs_dir": 0.0004454319999354084, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_note_entries[1.3-expected_result1]": 0.023476656000013918, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_note_entries[1.3.8-expected_result0]": 0.038948693000008916, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_notes_file_path_invalid": 0.0005865839999614764, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_notes_file_path_valid": 0.0004800049999857947, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data0-integration-expected_commands0-expected_scripts0]": 0.0007571429999302381, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data1-script-expected_commands1-expected_scripts1]": 0.0007303329999786001, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data2-testplaybook-expected_commands2-expected_scripts2]": 0.0007449400000041351, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data3-playbook-expected_commands3-expected_scripts3]": 0.0007761879999748089, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data4-integration-expected_commands4-expected_scripts4]": 0.0007227880000755249, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data5-script-expected_commands5-expected_scripts5]": 0.0007671109999591863, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_test_playbook_id": 0.0004624619999731294, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_to_version_no_to_version": 0.0053200240000137455, + "demisto_sdk/commands/common/tests/tools_test.py::test_get_to_version_with_to_version": 0.0059090239998909055, + "demisto_sdk/commands/common/tests/tools_test.py::test_gitlab_ci_yml_load": 0.001361061000011432, + "demisto_sdk/commands/common/tests/tools_test.py::test_has_remote[origin https://github.com/turbodog/content.git-False]": 0.0016718279999849983, + "demisto_sdk/commands/common/tests/tools_test.py::test_has_remote[upstream https://github.com/demisto/content.git-True]": 0.0013927279999847997, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config0-integration-False]": 0.0006729759999757334, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config1-integration-False]": 0.0006450139999856219, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config2-playbook-False]": 0.0006673239999486213, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config3-integration-True]": 0.0006452229999922565, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[07/21/23-False]": 0.0005781089999459255, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1-True]": 0.0006368790000124136, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[12345678-True]": 0.000599098000009235, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[123d-False0]": 0.0005859030000010534, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[123d-False1]": 0.0005712360000416083, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1626858896-True]": 0.0005984060000514546, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1689889076-True]": 0.0005938290000244706, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[2023-07-21T12:34:56Z-False]": 0.0006159099999649698, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[21 July 2023-False]": 0.0005878770000435907, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[Thu, 21 Jul 2023 12:34:56 +0000-False]": 0.0005971939999653841, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[d-False]": 0.0005937569999900916, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata0-False]": 0.001788606000047821, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata1-False]": 0.0011971729999800118, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata2-True]": 0.0012458450000281118, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata3-False]": 0.0012142150000045149, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse-True]": 0.0006426089999536089, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse/Classifiers-False]": 0.0006020229999990079, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse/Layouts-False]": 0.0006754499999601649, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Unknown-False]": 0.0006560029999604922, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[-False]": 0.0005945379999729994, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[ffc9fbb0-1a73-448c-89a8-fe979e0f0c3e-True]": 0.0005971539999904962, + "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[somestring-False]": 0.000591031999988445, + "demisto_sdk/commands/common/tests/tools_test.py::test_origin_content[origin https://github.com/demisto/content.git-True]": 0.0012843059999454454, + "demisto_sdk/commands/common/tests/tools_test.py::test_origin_content[origin https://github.com/turbodog/content.git-False]": 0.0012714429999505228, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[-expected6]": 0.0005862439999191338, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[1.yml,2.yml-expected2]": 0.0006011899999407433, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[1.yml-expected1]": 0.0006183539999824461, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[None-expected7]": 0.000571416000013869, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths0-expected0]": 0.000602373999925021, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths3-expected3]": 0.00058840699995244, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths4-expected4]": 0.0005742519999216711, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths5-expected5]": 0.0006064610000180437, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[test/test.yml,test1/test1.yml-expected8]": 0.0005978760000857619, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs_error[1]": 0.0006688059999646612, + "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs_error[True]": 0.0006214590000013231, + "demisto_sdk/commands/common/tests/tools_test.py::test_pascal_case": 0.0005018470000095476, + "demisto_sdk/commands/common/tests/tools_test.py::test_run_command_os[ls-/home/runner/work/demisto-sdk/demisto-sdk]": 0.019370642000012595, + "demisto_sdk/commands/common/tests/tools_test.py::test_run_command_os[ls-cwd1]": 0.01942926600008832, + "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.0008216030000198771, + "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[Account Enrichment-integration-test_playbooks2-False-expected_test_list2]": 0.0008222529999670769, + "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[PagerDuty v2-integration-test_playbooks0-True-expected_test_list0]": 0.0008334249999961685, + "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[PagerDuty v2-integration-test_playbooks1-False-expected_test_list1]": 0.000921650000009322, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict0-paths0-2-expected_dict0]": 0.000754286999949727, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict1-paths1-2-expected_dict1]": 0.0007170679999717322, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict2-paths2-2-expected_dict2]": 0.0007202429999892956, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict3-paths3-2-expected_dict3]": 0.0007460920000426086, + "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict4-paths4-2-expected_dict4]": 0.0007182200000102057, + "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_dir": 0.0019034100000681065, + "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_file[file.txt-c8c54e11b1cb27c3376fa82520d53ef9932a02c0]": 0.0013135499999634703, + "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_file[file2.txt-f1e01f0882e1f08f00f38d0cd60a850dc9288188]": 0.0011975639999945997, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[0-False]": 0.0005881569999814928, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[1-True]": 0.0005915940000136288, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[F-False]": 0.0005769150000674017, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[False-False0]": 0.0005934180000508604, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[False-False1]": 0.0005738199999996141, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[N-False]": 0.0005821039999887034, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[NO-False]": 0.0006150069999648622, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[No-False]": 0.0007232469999962632, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[None-False]": 0.0006466550000254756, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[True-True0]": 0.0007128899999884197, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[True-True1]": 0.000594669999998132, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[Y-True]": 0.0005970450000631899, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[YeS-True]": 0.0005868659999919146, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[Yes-True]": 0.000597555000013017, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[false-False]": 0.0005815140000322572, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[n-False]": 0.0006334619999392999, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[nO-False]": 0.0005998189999445458, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[no-False]": 0.0006490310000231148, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[t-True]": 0.0006078650000063135, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[y-True]": 0.0005997790000265013, + "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[yes-True]": 0.0006035850000216669, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_default_true[None]": 0.0005066149999493064, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_default_true[]": 0.0005108630000449921, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[ ]": 0.0005295379999665784, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[None0]": 0.0005247790000453278, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[None1]": 0.000598836999984087, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[\\u05db\\u05df]": 0.0005476710000493767, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[]": 0.000547984000093038, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[00]": 0.0005012049999777446, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[01]": 0.000510832000031769, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[False]": 0.0005070759999625807, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[false]": 0.0005735220000815389, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[n]": 0.0005161930000099346, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[no]": 0.0005096620000131225, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[10]": 0.0005373820000045271, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[11]": 0.0005096589999880052, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[True]": 0.0005260710000243307, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[true]": 0.0005553260000397131, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[y]": 0.0005225350000159779, + "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[yes]": 0.0005301489999851583, + "demisto_sdk/commands/common/tests/tools_test.py::test_suppress_stdout": 0.0010357319999911851, + "demisto_sdk/commands/common/tests/tools_test.py::test_suppress_stdout_exception": 0.000798591000034321, + "demisto_sdk/commands/common/tests/tools_test.py::test_test_get_file_version_suffix_if_exists_no_name_and_no_display": 0.00044563000000152897, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[*scan,file-scan-file]": 0.0006300669999745878, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[1URL2 3Finder4 5-1url2-3finder4-5]": 0.000600381000026573, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Audit - 'X509 Sessions'-audit-x509-sessions]": 0.0005947180000021035, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File-scan-file]": 0.0005859319999785839, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan - File-scan-file]": 0.0005822660000376345, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan -File-scan-file]": 0.000591021000047931, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File--scan-file]": 0.000611009999943235, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File-scan-file]": 0.0009414069999706953, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan IPs-scan-ips]": 0.0005931869999358241, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan- File-scan-file]": 0.0006120709999208884, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan-File-scan-file]": 0.0005910539999831599, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan.File-scan-file]": 0.0005944399999862071, + "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[URL Finder-url-finder]": 0.0006146869999952287, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestClassifiers::test_process_classifiers__no_types_scripts": 0.032094086000029165, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestCorrelationRules::test_process_correlation_rules": 0.008178754000027766, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDashboard::test_process_dashboard__no_script": 0.007823423000047569, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDashboard::test_process_dashboard__with_script": 0.006604535999940708, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source2-second_source2-True]": 0.002140012999973351, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source3-second_source3-False]": 0.0015108500000451386, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source4-second_source4-False]": 0.01669558600002574, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source5-second_source5-True]": 0.0022490660000471507, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack2-first_source0-second_source0-True]": 0.0028885610000202178, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack2-first_source1-second_source1-True]": 0.002149772000052508, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_no_duplicate": 0.0005841999999347536, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_similar_items_on_different_marketplaces": 0.00051787699999295, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestFlow::test_find_duplicates": 0.0002566890000252897, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericDefinition::test_get_generic_definition_data": 0.005572129000029236, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFields::test_process_generic_fields": 0.006338028000016038, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_fields_by_script_argument[task0]": 0.0005889199999842276, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_fields_by_script_argument[task1]": 0.0005421809999575089, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input0-True]": 0.0006987250000065615, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input1-True]": 0.0009661920000212376, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input2-True]": 0.0006229929999221895, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input3-False]": 0.0006019740000056117, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input4-False]": 0.0007382569999663247, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_values_for_keys_recursively": 0.000558803000046737, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__exception": 0.0012349050000466377, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__marketplace_mismatch": 0.0022687140000243744, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__sanity": 0.03438571200001661, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericModule::test_get_generic_module_data": 0.005619486999989931, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericType::test_get_generic_type_data": 0.007754521000038039, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__marketplace_mismatch": 0.0018784439999990354, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__no_types_scripts": 0.03301188099999308, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__sanity": 0.035318979999999556, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields_with_alternative_fields": 0.03297146699998166, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentTypes::test_get_incident_type_data__no_playbooks_scripts": 0.030447730999981104, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentTypes::test_get_incident_type_data__sanity": 0.031078795000041737, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIndicatorType::test_get_indicator_type_data_no_integration_no_scripts": 0.030660225000019636, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIndicatorType::test_process_indicator_type__sanity": 0.03138008399997716, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__exception": 0.0035572879999676843, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__marketplace_mismatch": 0.0014149800000495816, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__sanity": 0.04963737699995363, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[False-False]": 0.06476037799995993, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[False-True]": 0.0647553759999937, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[True-False]": 0.0720502300000021, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[True-True]": 0.06891163200003803, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[False-False]": 0.12584497000000283, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[False-True]": 0.09433536699998513, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[True-False]": 0.09402475600001026, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[True-True]": 0.09217198900000767, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_non_job_extension[False]": 0.07003992800008518, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_non_job_extension[True]": 0.06391892700003154, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayoutRules::test_process_layout_rules": 0.007263774000023204, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layouts__no_incident_types_and_fields": 0.032686645000012504, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layouts__sanity": 0.03308440400007839, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[incident-marketplacev2-False]": 0.00849533400008795, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[incident-xsoar-False]": 0.006338657000014791, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[indicator-marketplacev2-False]": 0.008572107000020424, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[indicator-xsoar-False]": 0.007184545999962211, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__marketplace_mismatch": 0.005406006999976398, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__sanity": 0.033173002000012275, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__complex_value": 0.029850613000007797, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__no_types_fields": 0.03270999900001925, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__outgoing_mapper": 0.0029369910000127675, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__sanity": 0.030438760999970782, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers_alternative_field": 0.03100053899993327, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestModelingRules::test_process_modeling_rules": 0.009000675999971008, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content0-Cortex XSOAR-certified]": 0.0074523650000060115, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content1-Some Partner-certified]": 0.00675211900005479, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content2-Someone-]": 0.006699109999942721, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata__marketplace_mismatch": 0.0012968710000222927, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_exception_thrown": 0.03153587800005653, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_success[False]": 0.006905254999992394, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_success[True]": 0.007281207000005452, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestParsingRules::test_process_parsing_rules": 0.009412074000010762, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_filters_from_playbook_tasks": 0.0007344109999962711, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data": 0.01558589400008259, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_2": 0.037797732999990785, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_bad_graph": 0.03374797600002921, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_bad_graph_2": 0.03685443699998814, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_no_fields": 0.037689219999947454, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_with_alternative_fields_second_level": 0.01205411300003334, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_with_alternative_fields_top_level": 0.011729697000021133, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_and_filters_from_playbook_two_conditions_task": 0.000495725999996921, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_condition_task": 0.0004815179999582142, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_inputs": 0.0014719770000510835, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_tasks": 0.0005058339999663986, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_process_playbook__exception": 0.0038387330000091424, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestReport::test_process_report__no_script": 0.00737837799999852, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestReport::test_process_report__with_script": 0.005553712999926574, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data": 0.002961936000019705, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[demisto.executeCommand('dummy_command', {'key': 'test'});]": 0.008345023000003948, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[executeCommand('dummy_command', {'key': 'test'});]": 0.008571977000030984, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[execute_command('dummy_command', {'key': 'test'});]": 0.010423972999888065, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_with_alternative_fields_second_level": 0.0026627390000726336, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_with_alternative_fields_top_level": 0.002779558000099769, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__exception": 0.002777002000016182, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__marketplace_mismatch": 0.002020059000017227, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__sanity_package": 0.003483280000011746, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestTriggers::test_process_triggers": 0.021201272000041627, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWidget::test_process_widget__no_script": 0.030680228999983683, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWidget::test_process_widget__with_script": 0.03563545000002932, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWizard::test_process_wizards[False]": 0.007747241999993548, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWizard::test_process_wizards[True]": 0.009336282000106166, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXDRCTemplates::test_process_xdrc_templates": 0.007882778999999118, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXSIAMDashboards::test_process_xsiam_dashboards": 0.007354102999954648, + "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXSIAMReports::test_process_xsiam_reports": 0.00732550899999751, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_add_item_to_exclusion_dict": 0.008136883999952715, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test0-False]": 0.0006452740000213453, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test1-False]": 0.0006244749999382293, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test2-True]": 0.0006150380000349287, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test3-True]": 0.000629274000004898, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_get_filters_and_transformers_from_complex_value": 0.00047945499994739293, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merge_id_sets": 0.002431628000067576, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merged_id_sets_with_duplicates": 0.0019893229999752293, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merged_id_sets_with_legal_duplicates": 0.00138243899993995, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp": 0.002768114999980753, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp_no_update_excluded_dict": 0.0011389450000365287, + "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp_update_excluded_dict": 0.002483314999949471, + "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file0-True]": 0.0008347180000214394, + "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file1-False]": 0.0009412470000143003, + "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file2-True]": 0.0006137249999937922, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file0-None-True]": 0.001167187999953967, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file1-id_set1-False]": 0.0011734689999229886, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file2-id_set2-True]": 0.0007562000000120861, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file3-id_set3-False]": 0.0009963079999693036, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file0-None-True]": 0.0008809729999939009, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file1-id_set1-False]": 0.0010342789999526758, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file2-id_set2-False]": 0.000977534000014657, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file3-id_set3-True]": 0.0007639350000090417, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file0-None-True]": 0.000874421999981223, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file1-id_set1-False]": 0.0009446830000001682, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file2-id_set2-False]": 0.0009520970000380657, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file3-id_set3-True]": 0.0007453910000094766, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file0-True]": 0.0006758220000051551, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file1-False]": 0.0008836600000563521, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file2-False]": 0.0013969479999786927, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file3-True]": 0.0006549230000132411, + "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file4-True]": 0.0006615639999836276, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_multiple_errors": 0.0006747579999455411, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_no_errors": 0.0005839610000180073, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_one_error": 0.0007980290000091372, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[bad-id-name-name]": 0.002285877000019809, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-bad-name-name]": 0.0021296230000302785, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-id-bad-name]": 0.002112542000020312, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-id-name-bad]": 0.0020985860000450884, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_root_section": 0.001793777000045793, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_valid_file_content": 0.0029932139999573337, + "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::test_schema_file_correct_path": 0.0010060570000405278, + "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.002917183000135992, + "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.0030495400001200323, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_convert_dir": 0.011096544000110953, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_create_classifier_from_old_classifier": 0.01009699900009764, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_create_mapper_from_old_classifier": 0.0076271620002899, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_extract_classifier_name[classifier-Cymulate-None]": 0.000686481000002459, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_extract_classifier_name[classifier-Cymulate_5_9_9-Cymulate]": 0.0008312620000197057, + "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_get_classifiers_schema_intersection_fields": 0.007606994000070699, + "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.011739556000065932, + "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.011916055999790842, + "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.006858779999902254, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_convert_dir": 0.016145908000225973, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_get_layout_indicator_fields": 0.006421544000204449, + "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_group_layouts_needing_conversion_by_layout_id": 0.014463960999592018, + "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs0-expected0]": 0.0008775669998613012, + "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs1-expected1]": 0.000680419999980586, + "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs2-expected2]": 0.0007194030001755891, + "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_get_layout_dynamic_fields": 0.006061260000251423, + "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.003157812000154081, + "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.003030626000054326, + "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.003096707999930004, + "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.0034347399998750916, + "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.0031221259998801543, + "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.0030886639999607723, + "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.0030537680001998524, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_convert_dir": 0.015984337999952913, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_layout_to_incidents_dict": 0.007081676000098014, + "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_layout_to_indicators_dict": 0.007796960000177933, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_dump_new_entity": 0.0007802770001035242, + "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.00643631999992067, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_entity_separators_to_underscore[abcde-abcde]": 0.0070229539999218105, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_entity_separators_to_underscore[axzjd-frl-axzjd_frl]": 0.006538030000001527, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_get_layouts_by_layout_container_type": 0.008554461999892737, + "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_get_layouts_by_layout_type": 0.010174674999916533, + "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.0014834889998383005, + "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.000832682999998724, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_with_degradated_files": 0.004052420999869355, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_with_passed_files": 0.0035720040000342124, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_without_files": 0.004364552999959415, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_cov_creation": 0.00353541600020435, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_fail_without_coverage_file": 0.002994567000087045, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_files": 0.007855767999672025, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_get_report_str": 0.007625329000120473, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_original_summary": 0.004603618999908576, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_export_report_function": 0.02621753800008264, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_json_min_report": 0.010458102000029612, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_print_report": 0.0101206640001692, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_txt_report": 0.008646695000152249, + "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.003147653000041828, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_custom_epsilon_file[test-1.0-79.0]": 0.0032288649997553875, + "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.0032083959997635247, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_exist_file[test-70.0-69.0]": 0.002748417999555386, + "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.0027105470001060894, + "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_new_file[test-70.0]": 0.0027681559997745353, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestCreateCoverageSummaryFile::test_creation": 0.0030865000003359455, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_the_data_file_is_valid": 0.000666573999751563, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_url_and_validate_data": 0.10290884899995945, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_json_parse_error": 0.004541793999806032, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_key_error": 0.004221695999831354, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_value_error": 0.004695120999713254, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_no_cache": 0.00028013199994347815, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_not_updated_file": 0.0043555649999689194, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_updated_file": 0.037270922000061546, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_without_cached_data": 0.005238415000121677, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestExportReport::test_export_report": 0.0032855999997991603, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestExportReport::test_export_report_with_error": 0.0023618469997472857, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestFixFilePath::test_fix[HealthCheckAnalyzeLargeInvestigations-the_python_file_path]": 0.008077706000221951, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestFixFilePath::test_with_two_files[cov_file_names0]": 0.010859803000130341, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_combine": 0.009661657000151536, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_cov_file": 0.0027049760001318646, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_load_old": 0.009891413000104876, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_report_dir": 0.0026652929998363106, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_without_data": 0.0030327700001180347, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::TestInvalidReportType::test_general": 0.0006215900002644048, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::TestInvalidReportType::test_with_all": 0.0006732259998898371, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_all_report_types_explicit": 0.00046871500012457545, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_one_invalid": 0.0005215229998611903, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_all": 0.0005256010001630784, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_all_and_other_values": 0.0004926900001009926, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_mixed_values": 0.0004812580000361777, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_multiple": 0.0004876000002695946, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_none": 0.00044826699991062924, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_one": 0.00044448900007409975, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[10-10]": 0.0016971460001968808, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[20-20]": 0.0011732289997326006, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[30-30]": 0.0010174479998568131, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[40-40]": 0.0009713540000575449, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[50-50]": 0.0009898859996155807, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[CRITICAL-50]": 0.0009723650002797513, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[DEBUG-10]": 0.0011015840000254684, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[ERROR-40]": 0.0009297349999997095, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[INFO-20]": 0.0009385720002228481, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[WARNING-30]": 0.000977402999978949, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list0-files_set0]": 0.002717651000011756, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list1-files_set1]": 0.002899810000144498, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list2-files_set2]": 0.0029325520001748373, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list3-files_set3]": 0.002910559999918405, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list4-files_set4]": 0.003245026000058715, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[10-10]": 0.0009472169997479796, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[20-20]": 0.0008028280001326493, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[30-30]": 0.000953019000007771, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[40-40]": 0.0008014359998469445, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[50-50]": 0.0007780620003359218, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[CRITICAL-50]": 0.0008722169998236495, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[DEBUG-10]": 0.0009158299997125141, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[ERROR-40]": 0.0007828709999557759, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[INFO-20]": 0.0007964060000631434, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[WARNING-30]": 0.0008072159998846473, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_get_report_str": 0.0005769760002749535, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75-75.0]": 0.000635105000128533, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75.0%-75.0]": 0.0005940279997957987, + "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75.0-75.0]": 0.0006221720000212372, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_assert": 0.0005041200001869584, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_history_url": 0.002009048000218172, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_json_file": 0.0006666129997938697, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_json_min_file": 0.0006100380001043959, + "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_latest_url": 0.002285693999965588, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_contains_indicator_type": 0.23896285500018166, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_content_artifacts": 0.24392399699991074, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_content_artifacts_by_id_set": 0.13464892799970585, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_private_content_artifacts": 0.2676207009999416, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_dump_pack": 0.08530612799995652, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_duplicate_file_failure": 0.23740485200005423, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_malformed_file_failure[json]": 0.13629633300001842, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_malformed_file_failure[yml]": 0.2381822340000781, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_sign_packs_failure[-True]": 0.005294688999811115, + "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_sign_packs_failure[some_key-False]": 0.008582051999837859, + "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.0026457180001671077, + "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.013095153999756803, + "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.013297812000018894, + "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.01836963599998853, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_add_command_to_implementing_integrations_mapping": 0.003580908999992971, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_do_not_modify_specific_brand": 0.0037243489998672885, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_generic_command_that_does_not_use_a_specific_brand": 0.003587754000136556, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_generic_command_that_uses_a_specific_brand": 0.0036175499999444582, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_no_output": 0.08511792700005572, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_empty_pack": 1.6280095949996394, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_pack": 1.8165794599999572, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_pack_output": 0.22822116999986974, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_output": 0.08890023599997221, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_command_to_implemented_integration_map": 0.004009140999869487, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_id_set_flow": 6.094000981999898, + "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_id_set_flow_xpanse": 6.022586989000047, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_dir": 0.10758609300000899, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_git": 0.11108428099993262, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_invalid_path": 0.09197402400008059, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_only_supported_files": 0.10213850400003821, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_single_file": 0.09979985899991561, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_is_performed_only_on_release_notes": 0.14357159799999408, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_with_release_notes_is_skipped_on_invalid_json_file": 0.09373755399997208, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_with_release_notes_is_skipped_on_invalid_yml_file": 0.10938791500001344, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_get_invalid_files_from_git_with_release_notes": 0.12535879699998986, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_supported_files_are_only_release_notes": 0.09644854200007558, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_failure_on_malformed_rns": 0.13325467900000376, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_invalid_misspelled_files_are_correct": 0.21817372799995383, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_invalid_misspelled_files_with_no_failure": 0.183369025999923, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_valid_spelled_files": 0.16908641999992824, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_invalid_spelled_files": 0.09229422999999315, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_malformed_release_notes": 0.09212395300005483, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_mixed_report": 0.09163030200005551, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_of_valid_spelled_files": 0.09750347100003864, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_skip_non_xsoar_supported_file": 1.2876967410000475, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_mix_packs": 1.3674769119999155, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_non_supported_pack": 0.11835432700002002, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_supported_pack": 0.11874676899998349, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_multiple_supported_packs": 0.12700376499998356, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_non_supported_pack": 0.11750010100001873, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_supported_pack": 0.1190948580000395, + "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.4506302159999791, + "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.21017300899995917, + "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.18746004999997012, + "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.33670195800004876, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[ThisIsCamelCase-parts0]": 0.0007292500000062319, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[thisIPIsAlsoCamelCase-parts1]": 0.0007755880000104298, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[thiswordsimulatesnocamelcasesplitandshouldremainunchanged-parts2]": 0.0006027750000043852, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[AGoodSpelledWord-True-True]": 0.6848386620000042, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[Hello-False-False]": 0.09276224299998148, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorld-False-False]": 0.09355975300007913, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorld-True-True]": 0.30179703999999674, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorrld-True-False]": 0.09260026200001903, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[Heloo-True-False]": 0.09201054099997918, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[IPs**-False-False]": 0.09167187000002741, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[IPs-False-False]": 0.09203839400004199, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvalidWord-False-False]": 0.09243600499996774, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvalidWord-True-True]": 0.3368001210000102, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvaliddWord-True-False]": 0.09301402399989911, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[NotAGoooodSpelllledWordddd-True-False]": 0.3751912240000479, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeTest-False-False]": 0.0910649269999908, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeTest-True-True]": 0.234797527000012, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeWord-False-False]": 0.09276870600007214, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeWord-True-True]": 0.23049109199996565, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SommmmeTest-True-False]": 0.20288397000001623, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGood-False-False]": 0.09044220599997743, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGoodBoy-True-True]": 0.3570762649999324, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGoooodddd-True-False]": 0.25997534499998665, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[WordsTxxt-True-False]": 0.09164906600005907, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[bizzare-False-False]": 0.09188068900004964, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[bizzaree-True-False]": 0.09246917699999813, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalid-False-False]": 0.09282452000002195, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalid-word-kebabb-casee-True-True]": 0.09305618299998741, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalidd-True-False]": 0.09681486599998834, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[old-False-False]": 0.09273668599996654, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[tell-False-False]": 0.09422101600006272, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[tellllllllll-True-False]": 0.3866906719999861, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[valid-word-kebab-case-False-False]": 0.0911950710000724, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[word-False-False]": 0.09106913599998734, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[wordd-True-False]": 0.09230581299999585, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content0-expected_known_words0]": 0.09808501600002728, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content1-expected_known_words1]": 0.0979965009999546, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content2-expected_known_words2]": 0.10322799299996177, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_commands_name": 0.12077726700005087, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_commons_scripts_name": 0.10271331199999167, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_integrations_name": 0.10473816899997246, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_scripts_name": 0.10511009399999693, + "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.3000216270000351, + "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.48267279499998494, + "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.6425695739999355, + "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.18509315300002527, + "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.3303345580000041, + "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.4682641000000558, + "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.21010774700005186, + "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.3303305710001041, + "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.4775137170000221, + "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.18868974399998706, + "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.32422900399996024, + "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.21422475999997914, + "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.1787750340000116, + "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.32506571499993697, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words0-True]": 0.021028989000058118, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words1-False]": 0.002524450999999317, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words2-True]": 0.0024898359999951936, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words3-True]": 0.0026665359999924476, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_replace_escape_characters[\\\\tthis\\\\rhas\\\\nescapes\\\\b- this has escapes ]": 0.0005828179999980421, + "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_replace_escape_characters[no escape sequence-no escape sequence]": 0.0005815449999886368, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content0-True]": 0.000969708999946306, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content1-True]": 0.0007843229999480172, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content10-True]": 0.0007032530000401493, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content11-True]": 0.0007291009999903508, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content12-True]": 0.0007083110000394299, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content13-True]": 0.0008315919999972721, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content14-True]": 0.0007307430000196291, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content15-True]": 0.0007159060000390127, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content16-False]": 0.0009839659999215655, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content17-False]": 0.001190170999905149, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content18-False]": 0.0009019039999884626, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content19-True]": 0.0007292820000088795, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content2-True]": 0.0007347289999870554, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content20-True]": 0.0007259149999185865, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content21-True]": 0.0007144639999410174, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content22-True]": 0.0007097639999642524, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content23-True]": 0.0007187110000472785, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content24-True]": 0.000730342999986533, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content25-True]": 0.0007091029999628518, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content26-False]": 0.001059726999983468, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content27-True]": 0.0007936210000138999, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content28-False]": 0.0008957309999004792, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content29-True]": 0.0007095139999364619, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content3-True]": 0.0007169379999822922, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content30-True]": 0.0006993349999788734, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content31-True]": 0.000700447000042459, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content4-True]": 0.0007196430000249165, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content5-True]": 0.000702981000017644, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content6-True]": 0.0007128599999646212, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content7-True]": 0.0007182510000234288, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content8-True]": 0.0007194729999469018, + "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content9-True]": 0.0007109179999815751, + "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildCustomContent::test_build_custom_content_object": 0.06642667399995617, + "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_build_existing_pack_structure": 0.0114166829999931, + "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_build_pack_content_object": 0.01171370599996635, + "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_get_main_file_details": 0.0062644790000376815, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_and_extract_existing_file": 0.03380858299993861, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_file_layout": 0.006747430000075383, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_file_playbook": 0.0638086190000422, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_no_force_skip": 0.006272544999944785, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_update_data_json": 0.0058392949999870325, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_update_data_yml": 0.022159748000035506, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_and_extract_new_integration_file": 0.02023917399998254, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_and_extract_new_script_file": 0.012262039000006553, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_new_file_layout": 0.006080425999982708, + "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_new_file_playbook": 0.011803232999909596, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_all_flag": 0.2258149749999916, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_init_flag": 0.009163557999954719, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_input_flag_custom": 0.0018582280000600804, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_input_flag_system": 0.001927907000037976, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_item_type": 0.0018996260000676557, + "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_output_flag": 0.0015988229999379655, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G S M]": 0.0007103550000238101, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G S_M]": 0.0007149130000243531, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G-S-M]": 0.0007078320000459826, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[GSM]": 0.0007193219999521716, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G_S-M]": 0.0007209270000316792, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G_S_M]": 0.0007257259999278176, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_get_custom_content_objects": 0.22863124499997411, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[automation-demisto-script-demisto]": 0.00083163199997216, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[playbook-demisto-demisto]": 0.0008580720000281872, + "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[test-test]": 0.0010533060000170735, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Demisto-False]": 0.005500584000060371, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Integrations-False]": 0.005498329000033664, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs-False]": 0.00547838199997841, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs/TestPack-True]": 0.0055184760000202004, + "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs/TestPack/-True]": 0.005351726000014878, + "demisto_sdk/commands/download/tests/downloader_test.py::test_auto_replace_uuids_flag[False]": 0.22745365299999776, + "demisto_sdk/commands/download/tests/downloader_test.py::test_auto_replace_uuids_flag[True]": 0.42635076099992375, + "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content0-Playbook-False-/playbook/search-GET-expected_request_body0]": 0.0012009199999738485, + "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content1-Mapper-True-/classifier/search-POST-expected_request_body1]": 0.0011122860000227774, + "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content2-Field-True-/incidentfields-GET-expected_request_body2]": 0.0011483219999490757, + "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content3-Classifier-False-/classifier/search-POST-expected_request_body3]": 0.0011090289999629022, + "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item0-ContentItemType.PLAYBOOK-name_1.yml]": 0.0009461540000188506, + "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item1-ContentItemType.FIELD-name_1.json]": 0.0008532429999945634, + "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.0008312519998980861, + "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item3-ContentItemType.FIELD-id_1.json]": 0.0008319419999907041, + "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks": 0.04801926799990497, + "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_api_failure": 0.0031867559999909645, + "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_item_does_not_exist_by_name": 0.048008749000018724, + "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_non_api_failure": 0.0023150489999466117, + "demisto_sdk/commands/download/tests/downloader_test.py::test_invalid_regex_error": 0.002354653999987022, + "demisto_sdk/commands/download/tests/downloader_test.py::test_list_files_flag": 0.22199005699997088, + "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.json-dumps--fields0-False]": 0.00522256399995058, + "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.json-dumps--fields0-True]": 0.005992359000003944, + "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.yml-dumps--fields1-False]": 0.007455711999966752, + "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.yml-dumps--fields1-True]": 0.0074217380000618505, + "demisto_sdk/commands/download/tests/downloader_test.py::test_uuids_replacement_in_content_items": 0.4311221830000136, + "demisto_sdk/commands/error_code_info/tests/error_code_info_test.py::test_parse_function_parameters": 0.0010547980002684199, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_all_levels_dependencies": 0.0004764380000779056, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_first_level_dependencies": 0.0013448390000121435, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_mandatory_dependencies": 0.0005331749999868407, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_all_dependencies_graph": 0.002250187999948139, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_dependency_graph": 0.007827014000042709, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_dependency_graph_include_ignored_content": 0.00763782100005983, + "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.0010840930000313165, + "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.0008778479999591582, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies": 0.0017874249999749736, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies__commontypes_pack": 0.0017847109999706845, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies_on_filter": 0.001978102000009585, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies_with_items": 0.0018029740000429229, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_generic_classifier_dependencies": 0.0018381699999849843, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnDashboard::test_collect_dashboard_dependencies": 0.0018527280000739665, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnDashboard::test_collect_dashboard_dependencies_with_items": 0.001917149000007612, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericField::test_collect_generic_field_dependencies": 0.002092683999990186, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericModules::test_collect_generic_module_dependencies": 0.0018073630000685625, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericType::test_collect_generic_type_dependencies": 0.00206385000001319, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentField::test_collect_incident_field_dependencies": 0.0019407809999734127, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentField::test_collect_incident_field_dependencies_with_items": 0.0018655320000107167, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentType::test_collect_incident_type_dependencies": 0.002138078999962545, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentType::test_collect_incident_type_dependencies_with_items": 0.002065003000041088, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIndicatorType::test_collect_indicator_type_dependencies": 0.0018896150000387024, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIndicatorType::test_collect_indicator_type_dependencies_with_items": 0.001908972000023823, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIntegrations::test_collect_integration_dependencies": 0.001940911000019696, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIntegrations::test_collect_integration_dependencies_with_ites": 0.0019292609999297383, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies[False]": 0.001939960000015617, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies[True]": 0.0020996480000121664, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies_with_items": 0.001910252999948625, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_generic_layouts_dependencies": 0.0017307900000105292, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_incident_layouts_dependencies": 0.0021838750000711116, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_indicator_layouts_dependencies": 0.0019480240000575577, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_indicator_layouts_dependencies_with_items": 0.001958915999978217, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_layouts_dependencies_filter_toversion": 0.001831798000011986, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_layouts_dependencies[pack3-pack1]": 0.006226546999926086, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_layouts_dependencies[pack4-pack2]": 0.005554684000003363, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies": 0.002190126999948916, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies__commontypes_pack": 0.0018119500001034794, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_on_filter": 0.001988421000078233, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_with_field_aliasing": 0.0006985339999232565, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_with_items": 0.002203892000011365, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[cve]": 0.00248426599995355, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[domain]": 0.0024930710000035106, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[ip]": 0.002478736000000481, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[url]": 0.002518429999952332, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbook_dependencies_with_field_aliasing": 0.0007414130000142904, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_filter": 0.0024824120000062067, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields": 0.0029566580000732756, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields__commontypes_pack": 0.0026934159999996155, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields__phishing_pack": 0.003169534000051044, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_indicator_fields": 0.0027798579999966933, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[alienvault-get-indicators-expected_result2]": 0.002713582000012593, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[autofocus-get-indicators-expected_result1]": 0.0027552710000122715, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[aws-get-indicators-expected_result0]": 0.002749539999967965, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations_with_brand": 0.002658671000006052, + "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.0026549730000056115, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_playbook[Indeni Demo-expected_result1]": 0.002663099000017155, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_playbook[Pentera Run Scan-expected_result0]": 0.0027284209999720588, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[GetServerURL-expected_result0]": 0.0027880530000174986, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[HelloWorldScript-expected_result1]": 0.0026720849999719576, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[PrismaCloudComputeParseAuditAlert-expected_result2]": 0.002654433000031986, + "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.002715427000055115, + "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.0027255840000179887, + "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.0027883220000148867, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_skip_unavailable": 0.002833828000007088, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnReports::test_collect_report_dependencies": 0.0019494079999731184, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnReports::test_collect_report_dependencies_with_items": 0.0018860999999787964, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve-latest]": 0.0017153720000351314, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve-search]": 0.0017233949999990728, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve]": 0.0017420199999946817, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[domain]": 0.0017009230000439857, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[email]": 0.0017962010000474038, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[file]": 0.0017280739999705474, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[ip]": 0.0017424019999907614, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[send-mail]": 0.0017148999999676562, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[send-notification]": 0.001720551000062187, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[url]": 0.0017156609999915418, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts__filter_toversion": 0.001977149999959238, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_command_to_integration": 0.001997898000013265, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_command_to_integrations_and_script_executions": 0.002001925999991272, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[activemq-subscribe-expected_result1]": 0.0021287620000407514, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[alienvault-get-indicators-expected_result2]": 0.002166693999981817, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[sslbl-get-indicators-expected_result0]": 0.002174437000007856, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration_with_items[activemq-subscribe-expected_result1]": 0.002130687000033049, + "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.0022476940000046852, + "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.0021563829999990958, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[GetServerURL-expected_result0]": 0.002139500999987831, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[HelloWorldScript-expected_result1]": 0.0020292560000712, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[PrismaCloudComputeParseAuditAlert-expected_result2]": 0.002056076000030771, + "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.002126206000014008, + "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.002095000000053915, + "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.002217308000012963, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_two_integrations": 0.0024801170000046113, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_two_scripts": 0.002084149999973306, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_with_two_inputs": 0.002386402999945858, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_script_executions": 0.0019126779999965038, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnWidgets::test_collect_widgets_dependencies": 0.0018487289999598033, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnWidgets::test_collect_widgets_dependencies_with_item": 0.0019953340000142816, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestGetDependentOnGivenPack::test_find_dependencies_between_two_packs": 0.0016034240000522004, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestGetDependentOnGivenPack::test_get_dependent_on_given_pack": 0.14500019600001224, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_item_with_no_result[playbooks]": 0.0016577439999423405, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_item_with_no_result[scripts]": 4.106213052999976, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_0]": 0.0015370479999319286, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_1]": 0.0015320589999419099, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_2]": 0.001525947999937216, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_0]": 0.0015623350000737446, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_1]": 0.001858998999978212, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_2]": 0.0015563630000201556, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_specific_pack_playbook_item": 0.0015675350001060906, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_specific_pack_script_item": 0.0015597709999042308, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_find_dependencies_using_pack_metadata": 0.0013551189999247981, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_remove_items_from_content_entities_sections": 0.0005321539999840752, + "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_remove_items_from_packs_section": 0.0023128660000111267, + "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.0019430459999512095, + "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.0019335370000703733, + "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.0019225270000333694, + "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.0018402139999693645, + "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.001953034999985448, + "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.001824997000028361, + "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.001842396999961693, + "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.0018577859999595603, + "demisto_sdk/commands/format/tests/format_module_test.py::test_format_venv_in_dir": 0.07093261499994696, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file0-data0-False]": 0.0017284040002323309, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file1-data1-False]": 0.0017570180002621782, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file2-data2-False]": 0.0017355770000904158, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file3-data3-True]": 0.0016875270000582532, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file4-data4-False]": 0.0017447940001602547, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file5-data5-False]": 0.002689076000251589, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_default_version_lower_then_general": 0.0018166489999202895, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_data_with_oldfile": 0.0017685599998458201, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[generictype]": 0.0019155229999796575, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[job]": 0.001988580000215734, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[list]": 0.0021283999999468506, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[pre-process-rule]": 0.0021116389998496743, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_askuser_False": 0.002388425999924948, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_askuser_True": 0.0021915080001235765, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_assume_answer_False": 0.0017616469999666151, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_flag": 0.002559365000024627, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_oldFile": 0.001769079000041529, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[Without dot]": 0.10059567799999058, + "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.10759059700012585, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[empty string]": 0.10210824599994339, + "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.1017474109999057, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[ends with exclamation mark]": 0.0980327170000237, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[ends with question mark]": 0.09853592399986155, + "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.0980582880001748, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[url in the end]": 0.10140650999983336, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[url in the middle]": 0.09874714400029916, + "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.09996186199987278, + "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.0998582610000085, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[with dot]": 0.10399830400024257, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[with single-quotes in double-quotes]": 0.09921335000012732, + "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.10240989299995817, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[Without dot]": 0.09927713800016136, + "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.10133783400010543, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[empty string]": 0.0987307249999958, + "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.10125836299994262, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[ends with exclamation mark]": 0.10599413499994625, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[ends with question mark]": 0.10931982100032656, + "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.1059995919999892, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[url in the end]": 0.10608259899981931, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[url in the middle]": 0.10527826499992443, + "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.11098485100023936, + "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.10283084000025156, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[with dot]": 0.103602488000206, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[with single-quotes in double-quotes]": 0.11373813000022892, + "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.10607273400023587, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_initiate_file_validator[False-run_validation_on_specific_files]": 0.002443027000026632, + "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_initiate_file_validator[True-run_validation_using_git]": 0.0023719250000340253, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_add_default_fromversion[False]": 0.2221203140002217, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_add_default_fromversion[True]": 0.2080974990001323, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_infer_selected_feeds[False-False]": 0.21704747600028895, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_infer_selected_feeds[True-True]": 0.21478912899988245, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_update_id[False]": 0.2126207950002481, + "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_update_id[True]": 0.21619001199997, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_arguments_to_remove": 0.10967966199996226, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_remove_unnecessary_keys": 0.11783540800001902, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_fromVersion": 0.1110459279996121, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_keyTypeMap": 0.11231941899995945, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_transformer": 0.11328602599996884, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_all_mode_conflict[All-None]": 0.10884169199994176, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_all_mode_conflict[Specific-Specific]": 0.10916241199993237, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[-Specific-Specific]": 0.11435543599986886, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[All--All]": 0.2275477780001438, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[Specific--Specific]": 0.10667926599990096, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[specific-Specific-Specific]": 0.10914269499971851, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode_bad_user_input": 0.10805531100004373, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_specific_mode_conflict[All-All]": 0.11290073000009215, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_specific_mode_conflict[Specific-Specific]": 0.11115384599997924, + "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.23583602500002598, + "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.3155785830001605, + "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.23219307800013667, + "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.22645092899983865, + "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.23293925200005106, + "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.22919901499972184, + "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.2310039780002171, + "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.23783123000021078, + "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.23076919000004636, + "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.23052554700007022, + "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.22976559900007487, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[5.5.0]": 0.23234878599987496, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[6.2.0]": 0.2312914300000557, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[None]": 0.23058127500007686, + "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.2391620729997612, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_remove_copy_and_dev_suffixes_from_layout": 0.10891518100015674, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_remove_unnecessary_keys": 0.10939161599981162, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_description": 0.10978554400026042, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_output_path": 0.23494209700015745, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_toVersion": 0.10943892199998118, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_copy_and_dev_suffixes_from_layoutcontainer": 0.11130175700009204, + "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.10590528100010488, + "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.10551599200016426, + "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.1067342380001719, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_fields": 0.11206626299986056, + "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.10781326300002547, + "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.10906166700010544, + "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.1073261620001631, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_unnecessary_keys": 0.11164089599992622, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_description": 0.11253414099996917, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_fromVersion": 0.11428210999974908, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_group_field": 0.1126795550001134, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_output_path": 0.11354255800006285, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_update_id": 0.11177227500002118, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingList::test_remove_unnecessary_keys": 0.23028901700013193, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingList::test_set_description": 0.10954001499999322, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_remove_unnecessary_keys": 0.10635760700006358, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_set_fromVersion": 0.10693003599999429, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_update_id": 0.1155704739999237, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_remove_null_fields": 0.11964392899994891, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_remove_unnecessary_keys": 0.1115541410001697, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_set_toVersion": 0.1244048420001036, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[False-pack name-pack description-]": 0.2491761100000076, + "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.2450157300002047, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[True-pack name-pack description-]": 0.24687928499997724, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[True-pack name-pack description-pack v2]": 0.25223071000004893, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPreProcessRule::test_remove_unnecessary_keys": 0.6231186090001302, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPreProcessRule::test_set_description": 0.21574894800005495, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ClassifierJSONFormat]": 0.33951040800002374, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ConnectionJSONFormat]": 0.22480153999981667, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[DashboardJSONFormat]": 0.2201577210000778, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IncidentFieldJSONFormat]": 0.21947604900014994, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IncidentTypesJSONFormat]": 0.22049296299996968, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IndicatorFieldJSONFormat]": 0.21988183100006609, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IndicatorTypeJSONFormat]": 0.22043598599998404, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[LayoutBaseFormat]": 0.22256910999976753, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ListsFormat]": 0.2513454750001074, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[MapperJSONFormat]": 0.21772597399990445, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[OldClassifierJSONFormat]": 0.22549595199961914, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[PreProcessRulesFormat]": 0.2522858070001348, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ReportJSONFormat]": 0.22139188500000273, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[WidgetJSONFormat]": 0.21892790699985198, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_old_classifier": 0.35161971699994865, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_old_layout": 0.3510630489997766, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_none_tabs_do_not_throw_exception": 0.35761339900022904, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_description": 0.22946279499979028, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_fromversion_six_new_contributor_pack": 1.6044112739998582, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_fromversion_six_new_contributor_pack_no_fromversion": 0.34192103200007296, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_orientation": 0.11031939299982696, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_recipients": 0.1096337260000837, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_type": 0.11140911299980871, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_description": 0.10653042800004187, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data0]": 0.10675353400006315, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data1]": 0.10649728100020184, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data2]": 0.1063533950002693, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data3]": 0.10734257699982663, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_isPredefined": 0.10616858399998819, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_is_graph_related_files": 0.0076419510000960145, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_not_updating_id_in_old_json_file": 0.23404042100014522, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_not_updating_modified_id_in_old_json_file": 0.2376972880001631, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[ MyDashboard ]": 0.24202727200031404, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[MyDashboard ]": 0.24119311099980223, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[MyDashboard]": 0.23708536399976765, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_connection_removes_unnecessary_keys": 0.0821621289999257, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_connection_updates_from_version": 0.08436577299994497, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_dashboard_negative": 0.2304917880001085, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_dashboard_positive": 0.23702346200002467, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_incidenttype_negative": 0.22811167700001533, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_incidenttype_positive": 0.40036908699994456, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_indicatortype_negative": 0.228235677000157, + "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_indicatortype_positive": 0.24224625599981664, + "demisto_sdk/commands/format/tests/test_formatting_md_test.py::TestDescriptionFormat::test_format_beta_description": 0.19612658199980615, + "demisto_sdk/commands/format/tests/test_formatting_md_test.py::TestDescriptionFormat::test_remove_community_partner_details": 0.20323401099994953, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url0]": 0.4270666039997195, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url1]": 0.4210393700000168, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url2]": 0.4233061369998268, + "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url3]": 0.42188912200026607, + "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.10700451000002431, + "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.0023463480000032177, + "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.00141254499999377, + "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.0014719859999559048, + "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.0013555390000306033, + "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.001356739000016205, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc": 0.1906614440000567, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc_new_contribution": 0.04309365100004925, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc_passes_markdownlint": 0.12111254100000224, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_integration_doc_credentials_display_missing": 0.04397189299999127, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_examples_with_exclamation_mark": 0.0031768169999963902, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_examples_without_exclamation_mark": 0.002834738999979436, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_ignored_lines": 0.00278579700005821, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data0-credentials_conf0-expected0]": 0.0011107909999736876, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data1-credentials_conf1-expected1]": 0.0008766149999814843, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data2-credentials_conf2-expected2]": 0.0008573490000003403, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_disable_md_autolinks": 0.0007358020000083343, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_format_md": 0.0010467930000004344, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_command_section_with_empty_cotext_example": 0.000717135999934726, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_command_section_with_empty_cotext_list": 0.0004559000000199376, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_section": 0.0004830209999795443, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_section_human_readable": 0.00047456499999043444, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_with_permissions_section": 0.00044688299999506853, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_with_permissions_section_command_doesnt_exist": 0.00044734500005461086, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_image_link[playbook name--![playbook name](../doc_files/playbook_name.png)]": 0.0007519730000922209, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_image_link[playbook name-custom_path-![playbook name](custom_path)]": 0.0006827330000191978, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_section": 0.00046520799998006623, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_section_empty": 0.0004712089999543423, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_with_text_section": 0.0004571729999724994, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_numbered_section": 0.000461821999977019, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_playbook_doc_passes_markdownlint": 0.062182387999996536, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input0-expected_results0]": 0.0009060910000471267, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input1-expected_results1]": 0.0007805059999554942, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input2-expected_results2]": 0.0007642559999680998, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input3-expected_results3]": 0.0007628120000049421, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input4-expected_results4]": 0.0007356639999898107, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input5-expected_results5]": 0.0007577840000863034, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section": 0.0004964149999864276, + "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.0008289159999890217, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_empty[data1-Script Data---expected_result1]": 0.0008019160000003467, + "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.0008514990000207945, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_numbered_section": 0.0005517889999850922, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_with_newlines": 0.0005048320000469175, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_versions_differences_section": 0.0007036029999198945, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_complex[0-File.Name]": 0.003614984000023469, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_complex[2-No_Accessor]": 0.003597292000051766, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_simple": 0.003457840999999462, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_inputs": 0.0037479130000406258, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_outputs": 0.003563880000001518, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_playbook_dependencies": 0.003536327999995592, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_info": 0.0012092559999814512, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_inputs": 0.0012568749999672946, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_outputs": 0.0012113199999248536, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_incident_mirroring_section[yml_content0-mirroring_test_markdow]": 0.0007919979999542193, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_incident_mirroring_section[yml_content1-mirroring_test_markdow_missing]": 0.0006901169999764534, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content0-expected_result0]": 0.009614157999976669, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content1-expected_result1]": 0.013819715000011001, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content2-expected_result2]": 0.008699643000056767, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content3-expected_result3]": 0.010080326999968747, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_scripts_in_playbook": 0.09887223499998754, + "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_string_escape_md": 0.0008214129999259967, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_generate_integration_package": 0.15631595400031983, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_generate_unified_integration_yml": 0.16148539799996797, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_py_code_generated_from_config": 0.0963042419998601, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_query_response_root_object": 0.18525424399990698, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_yml_generated_from_config": 0.16801544099962484, + "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::test_json_body_to_code": 0.000560497999913423, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_array_create_wrap": 0.00042203799989692925, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_coalesce_wrap": 0.00043576299981396005, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[ggg-String]": 0.0005787100001271028, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[int-Number]": 0.0005920149999383284, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[string-String]": 0.0006019330000981427, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_to_xdm_type[6-Number-to_number(6)]": 0.0006471880001299724, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_to_xdm_type[test-String-to_string(test)]": 0.0006532780000725324, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_file": 0.0011657550001018535, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_file_coalesce": 0.0012039559999266203, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_header": 0.0004532149998794921, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_yml_file": 0.007647637999980361, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_data_from_all_xdm_schema": 0.0005752740000843914, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[arr-res3]": 0.0005715769998460019, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[hello-res0]": 0.0005826579999848036, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[r-res6]": 0.0005788100002064311, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[t-res5]": 0.0005871859998478612, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[test.bla-res1]": 0.000577187999851958, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[test.gg.hh-res2]": 0.0005823269998472824, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[y.j-res4]": 0.0005732900001476082, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data_empty_event": 0.00046461700003419537, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data_event_not_dict": 0.00045645199975297146, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_handle_raw_evnet_data": 0.0004620320003141387, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_init_mapping_field_list": 0.001180272000055993, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_json_extract_array_wrap": 0.0004398210000999825, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_json_extract_scalar_wrap": 0.00046111099959489366, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_read_mapping_file": 0.000574782000057894, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_read_mapping_file_invalid_header_names": 0.0005620579997867026, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_replace_last_char[-]": 0.000652526999829206, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_replace_last_char[hello,\\n-hello;\\n]": 0.0007785230002355092, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_snake_to_camel_case": 0.0004633429998648353, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_to_number_wrap": 0.00044322799999463314, + "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_to_string_wrap": 0.00042689699989750807, + "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_generate_context_from_outputs": 2.348577869000053, + "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_generate_integration_context": 0.07140496400000984, + "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_insert_outputs": 0.0014701629999080978, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_ai21_api_request": 0.007214219999980287, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_build_description_with_probabilities": 0.000532352999982777, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions": 0.022846039000057772, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions_interactive": 0.02064457999995284, + "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions_interactive_similar_path": 0.02337727899998754, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_generate_integration_context_flow[-e-requires an argument-2]": 0.0022602069999493324, + "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.0029216209999844978, + "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.002995137999960207, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args0-please include a `command` argument.]": 0.0045089029999871855, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args1-please include a `prefix` argument.]": 0.002944985999988603, + "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args2-None]": 0.002728871999920557, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[0-Number]": 0.0005957320000788968, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[1-Number]": 0.0005820460000336425, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[False-Boolean]": 0.0005741819999229847, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[True-Boolean]": 0.0006119530000319173, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[test string-String]": 0.008931334999999763, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__a_list_of_dict": 0.0015902569999752814, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__description_dictionary[None-dictionary0]": 0.0026420690000463765, + "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.0027449809999779973, + "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.0026610139999547755, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__description_file": 0.00263663999999153, + "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.0014286260000062612, + "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.001411163000000215, + "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.0014081870000381969, + "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.0013900339999963762, + "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.002902196999912121, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__empty_list_or_dict": 0.0015882429999578562, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[-'']": 0.0019189300000448384, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[None-'']": 0.0016877390000331616, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary0-'']": 0.0016912449999608725, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary1-'']": 0.001684252999950786, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary4-'']": 0.0017141499999979715, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_json": 0.0010392600000272978, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__json_from_file": 0.0017574800000375035, + "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs_return_object": 0.0005463089999011572, + "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.24331345099994905, + "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.24317876899999646, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__integration_not_under_packs": 0.05563388500013389, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__integration_under_packs": 0.2450995139997758, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_non_yml_output_file": 0.003570953000235022, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_output_file": 0.057368823999922824, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_output_folder": 0.0577484689999892, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::test_generate_test_playbook_with_command_examples[None-8]": 0.030237088000149015, + "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.024044862999971883, + "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.002996953000092617, + "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::test_get_command_examples[command_examples-excepted_result0]": 0.0031925769999361364, + "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args0-malwarebazaar_all.py]": 0.32709484900010466, + "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args1-malwarebazaar_specific_command.py]": 0.297334729999875, + "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args2-malwarebazaar_all.py]": 0.9279097720000209, + "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::test_get_client_init_args": 0.002760959999932311, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_command_with_file_output": 0.0063214339999717595, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_command_without_docstring": 0.006332005000047047, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_enum_inputs_from_input_list": 0.007482259999960661, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[deprecated=False]": 0.006362160999970001, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[deprecated=True]": 0.006588884000109374, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[execution=False]": 0.006400522999967961, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[execution=True]": 0.006312570000034157, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[name]": 0.006798606999950607, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_input_list_overrides_docstring": 0.006395032000000356, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[basic]": 0.007238947000018925, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[default]": 0.006619531000012557, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[default_value]": 0.006719226000029721, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[execution0]": 0.006654895999929522, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[execution1]": 0.006717324000021563, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[invalid type]": 0.006774531000019124, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[invalid]": 0.0077663919999508835, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[isArray=False]": 0.006563486999993984, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[isArray=True]": 0.006645540000022265, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[multiple flags]": 0.006661019000034685, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[options]": 0.006559388999960447, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[required]": 0.006700533000014275, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[secret]": 0.007678656999985378, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[type is enum]": 0.006633737999948153, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[default=False]": 0.006474511999954302, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[default=True]": 0.00644837199996573, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[defaultValue]": 0.0065122610000116765, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[description]": 0.0064360790000250745, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[execution=False]": 0.006557545999953618, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[execution=True]": 0.006426831999988281, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[is_array=False]": 0.007406709999997929, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[is_array=True]": 0.006501391000028889, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[name]": 0.00825815899997906, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[options]": 0.0064442639999811036, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[required=False]": 0.00651004799999555, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[required=True]": 0.0064098489999651065, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[secret=False]": 0.006519816000093215, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[secret=True]": 0.006456116000038037, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_long_description": 0.006106554000041342, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_multiple_output_prefixes_in_declaration": 0.006525677000013275, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_multiple_output_prefixes_in_list": 0.006748109999989538, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_output_list_overrides_docstring": 0.006450926999946205, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[invalid type]": 0.00655188400003226, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[long description]": 0.007529297000075985, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[missing type]": 0.006434826999907273, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type bool]": 0.006468830000017078, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type date]": 0.006456226000011611, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type dict]": 0.006564608999951815, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type float]": 0.006471805999979097, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type int]": 0.006456406000040715, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type str]": 0.006435198000019682, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_output_list": 0.00632032400000071, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[bool]": 0.006652062000000569, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[datetime]": 0.006655297000008886, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[dict]": 0.006713785999977517, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[float]": 0.0066501000000016575, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[int]": 0.006713126999954966, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[list]": 0.007671924999954172, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[str]": 0.006635240999969483, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_restored_args": 0.00667577700005495, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_restored_args_not_in_command_metadata": 0.006279096000014306, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=AUTH]": 0.006001768999965407, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=BOOLEAN]": 0.005997580999974161, + "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.006080756000017118, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=ENCRYPTED]": 0.006950867999989896, + "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.006128209999928913, + "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.006200189000026057, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=NUMBER]": 0.0060193610000283115, + "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.00601558400006752, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=STRING]": 0.005949720999979036, + "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.00613827299997638, + "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.005989715999987766, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_enum_inputs_in_conf_key": 0.0070730580000031296, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[additional_info]": 0.0059793959999865365, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[default_value]": 0.005978574999971897, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[display]": 0.005866536999917571, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[name]": 0.006917458000032184, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[options]": 0.005980910000005224, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[required=False]": 0.005900458999974489, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[required=True]": 0.005904337000004034, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[category]": 0.00675859099999343, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_classifier]": 0.005835079000007681, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled=False]": 0.006758190999960334, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled=True]": 0.006016596999984358, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled_x2=False]": 0.005852500000003147, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled_x2=True]": 0.005909626000004664, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_mapper_in]": 0.005769515000054071, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[deprecated=False]": 0.005818907000048057, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[deprecated=True]": 0.005816202000005433, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[description]": 0.005851579000022866, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[detailed_description]": 0.0057668700000022, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[display]": 0.005842170000050828, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[fromversion]": 0.0058259099999986574, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[image]": 0.005806005000010828, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[integration_name]": 0.0056762119999689276, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[integration_name_x2]": 0.005856999000002361, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[system=False]": 0.005740532000061194, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[system=True]": 0.005761249000045154, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[tests]": 0.005699974999970436, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[timeout]": 0.005833846000030007, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[docker_image]": 0.005829305000020213, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_feed=False]": 0.005893356000001404, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_feed=True]": 0.005789673000037965, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_fetch=False]": 0.005882135999968341, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_fetch=True]": 0.006798984999988988, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_runonce=False]": 0.005927480000025298, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_runonce=True]": 0.005780585000024985, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running=False]": 0.005855334999978368, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running=True]": 0.005853723000029731, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running_port]": 0.005907486000069184, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[subtype]": 0.006026434000034442, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[type]": 0.005892765000055533, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_generation_with_implicit_imports_in_declarations": 0.006267234999995708, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_generation_with_subscriptable_imports": 0.005563059999985853, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_problematic_imports_in_code_yml_generation": 0.010273178000034022, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_complete_integration_generation": 0.007073309000020345, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_file_importing_failure": 0.006763298999999279, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_no_metadata_collector_defined": 0.006705660000022817, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_undefined_spec_failure": 0.0060205430000905835, + "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_yml_file_making": 0.03168449999998302, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_no_conflict[TestPack]": 0.0029284240001743456, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_with_conflict[TestPack]": 0.003103961999840976, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_with_conflict_and_version_suffix[TestPack]": 0.003424831000074846, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_format_converted_pack[False-TestPack]": 0.004054635999864331, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_format_converted_pack[True-TestPack]": 0.004448984000191558, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_format_user_input": 0.005514853000022413, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[0-]": 0.0011368220002623275, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[1-]": 0.0010843430000022636, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[11-##### New: DemistoUploadFileToIncident\\n]": 0.001084774999981164, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[2-]": 0.001041103000034127, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[3-#### Integrations\\n]": 0.0010694659999899159, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[4-]": 0.0010800860002291301, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[5-##### Core REST API\\n]": 0.001060499000004711, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[6-]": 0.0010558299998137954, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[7-- %%UPDATE_RN%%\\n]": 0.001054899000109799, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[9-#### Scripts\\n]": 0.0010539170000356535, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_replace_RN_new_entity_in_existing_pack": 0.00481844099999762, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_replace_RN_template_with_value": 0.005600402000027316, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_dir_to_pack_contents": 0.005446063000135837, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip": 46.04346738000004, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_outputs_structure": 0.3587174189999587, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_updated_pack": 0.2674394719999782, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_with_args": 1.0306267879998359, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_create_contribution_items_version_note": 0.0037306530000478233, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_extract_pack_version[-0.0.0]": 0.0037007880002875027, + "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.003555154999730803, + "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.0032598339998912707, + "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.003340614999842728, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[-pack-yay-ok---Pack-Yay-Ok]": 0.0018947770001886965, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PACKYAYOK-PACKYAYOK]": 0.001979794999897422, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK0]": 0.0013619009996546083, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK1]": 0.0019022199999199074, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK2]": 0.0021891360001973226, + "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.0027054990000578982, + "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.0023427920002632163, + "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.0024720830001569993, + "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[pack yay ok!-PackYayOk]": 0.0015359469998657005, + "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.005454721000205609, + "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.005507488000148442, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_community": 0.0006785149998904672, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_non_filled_manually": 0.000594238000076075, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_non_filled_manually_with_data": 0.0005658949996814044, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_partner": 0.0006800689995998255, + "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_partner_wrong_url": 0.0006709420001698163, + "demisto_sdk/commands/init/tests/initiator_test.py::test_change_template_name_script_py": 0.003031997000107367, + "demisto_sdk/commands/init/tests/initiator_test.py::test_create_new_directory": 0.0021507020003355137, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_created_dir_name": 0.0008325510000304348, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_object_id": 0.0007118089999949007, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_object_id_custom_name": 0.0006424480002351629, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_remote_templates__invalid": 0.031699083000148676, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_remote_templates__valid": 0.0329574350000712, + "demisto_sdk/commands/init/tests/initiator_test.py::test_get_valid_user_input": 0.0006928629998128599, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init": 0.48118179400012195, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_with_ignore_secrets[FeedHelloWorld]": 0.17024480000009135, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_with_ignore_secrets[HelloWorld]": 0.6785587390002092, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_xsiam_files_content": 0.03790439200020046, + "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_xsiam_files_existence": 0.03573687800007974, + "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_or_parsing_rules_yml_reformatting_parsing_rules": 0.00587534099986442, + "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_rules_init_file_content_and_name": 0.007180695999977615, + "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_rules_init_xsiam_files_existence": 0.007369449000179884, + "demisto_sdk/commands/init/tests/initiator_test.py::test_pack_init_for_xsiam_folders_existence": 0.006456803999753902, + "demisto_sdk/commands/init/tests/initiator_test.py::test_pack_init_without_filling_metadata": 0.005075116999933016, + "demisto_sdk/commands/init/tests/initiator_test.py::test_parsing_rules_init_file_content_and_name": 0.007062574000201494, + "demisto_sdk/commands/init/tests/initiator_test.py::test_parsing_rules_init_xsiam_files_existence": 0.006724422999923263, + "demisto_sdk/commands/init/tests/initiator_test.py::test_script_init": 0.09091060799983097, + "demisto_sdk/commands/init/tests/initiator_test.py::test_script_init_with_ignore_secrets": 0.09232347399984064, + "demisto_sdk/commands/init/tests/initiator_test.py::test_template_integration_init[FeedHelloWorld]": 0.1709948309999163, + "demisto_sdk/commands/init/tests/initiator_test.py::test_template_integration_init[HelloWorld]": 1.082772832000046, + "demisto_sdk/commands/init/tests/initiator_test.py::test_yml_reformatting": 0.005405312999755552, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_differences": 0.02057572200010327, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_arguments": 0.023178286999609554, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_commands": 0.023170072000084474, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_outputs": 0.022745007999901645, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_params": 0.022484332999965773, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_invalid_integration_diff": 0.02392014199995174, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_items": 0.025032687999782866, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_items_in_docs_format": 0.023844619999636052, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_missing_items": 0.024235902000100396, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_without_items": 0.040291277999813246, + "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_valid_integration_diff": 0.025190772999621913, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_bandit_command[files0]": 0.0005224449999445824, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_bandit_command[files1]": 0.0005110240000476551, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_flak8_command[files0]": 0.0007274770000549324, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_flak8_command[files1]": 0.0005380050000667325, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_mypy_command[files0-2.7-None]": 0.0006642590000183191, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_mypy_command[files1-3.7-content_path1]": 0.0006672549999393595, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pwsh_analyze": 0.0011892490000491307, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pwsh_test": 0.00044517100002394727, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command[files0]": 0.0005443949999630604, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command[files1]": 0.0005325239999365294, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command_3_9_1_docker": 0.0005598039999767934, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command_3_9_docker": 0.0007608190000496506, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_1": 0.0004422940000381459, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_2": 0.0004416639999931249, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_3": 0.00046824499997910607, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_vulture_command[files0]": 0.0015999140000531042, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_vulture_command[files1]": 0.0016336789999513712, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_no_base_command[files0]": 0.0005477620000533534, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_no_base_command[files1]": 0.0005233169999883103, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py2_command[files0]": 0.000528144999975666, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py2_command[files1]": 0.0006339609999486129, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py3_command[files0]": 0.0006375909999292162, + "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py3_command[files1]": 0.0005274040000244895, + "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_html": 0.0025887999999554268, + "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_report": 0.006337995999956547, + "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_xml": 0.0024994439999659335, + "demisto_sdk/commands/lint/tests/helper_test.py::test_add_tmp_lint_files": 0.011748029999978371, + "demisto_sdk/commands/lint/tests/helper_test.py::test_add_tmp_lint_files__multi_level_api_modules": 0.0127156459999469, + "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.0011785399999553192, + "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.0011479320000375992, + "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.001457840000057331, + "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response0-2-False]": 0.0057746340000335294, + "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response1-1-False]": 0.005067666000002191, + "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response2-2-True]": 0.006634989999952268, + "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.0008463689999871349, + "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.0007735130000128265, + "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.0007938200000694451, + "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.0008088689999681264, + "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.0008486639999318868, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_failed_unit_tests_report_no_failed_tests": 0.0004906150000465459, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_failed_unit_tests_report_with_failed_tests": 0.0007229990000610087, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_bandit": 0.00399033500002588, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_flake8": 0.00398619800000688, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_mypy": 0.021828951000031793, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_vulture": 0.007163354999988769, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_xsoar_linter": 0.0038960490000476966, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[2 api module changes with 1 dependency each]": 0.004687515999989955, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[non api module change with dependency]": 0.004640027999982976, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with 2 dependencies]": 0.004351951000046483, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with dependency also changed]": 0.004323628000008739, + "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.004611023999984809, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with dependency]": 0.00435477499991066, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with no dependencies]": 0.00449114100007364, + "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.004333814999938568, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[all]": 0.0016220859999407367, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[from-yml]": 0.0016339180000386477, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:]": 0.0024431779999645187, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:dev]": 0.0016588459999979932, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:ga]": 0.001558890000012525, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:maintenance]": 0.0015937040000153502, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_failed_image_creation": 0.0025363130000073397, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_pass_lint_checks[0-0-pkgs_type0]": 0.0018199159999880976, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_summary_no_warnings": 0.001323799000033432, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_summary_with_warnings": 0.0014437740000516897, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_warning_lint_checks_all_packages_tests": 0.0017426719999775742, + "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_warning_lint_checks_not_packages_tests": 0.005425022999986595, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_no_errors": 0.009583842999973058, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[1-test-1-test]": 0.005363447000036103, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[16-test-0-]": 0.005322791999958554, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[2-test-1-test]": 0.005742374000021755, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[32-test-2-]": 0.005859494000048926, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[4-test-0-]": 0.00520105399999693, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[8-test-0-]": 0.005381189999980052, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[0-0]": 0.008043438000015612, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[1-1]": 0.008332648000077825, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[126-1]": 0.006194708999942122, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[137-1]": 0.006280829999980142, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[139-1]": 0.006675426000072093, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[143-1]": 0.006160555999997541, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[2-1]": 0.007772882999972808, + "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[5-0]": 0.0086122600000067, + "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.0020448939999937465, + "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.002120878999960496, + "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.002075132000072699, + "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.0020808119999742303, + "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.0021256260000086513, + "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.007693064999955368, + "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.00742152699996268, + "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.007278659999940373, + "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.009499023999978817, + "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.004724474999932227, + "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.005250426000031894, + "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.004848988000048848, + "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.004885844999989786, + "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.004723343000023306, + "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.005461230000037176, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_image_flag_version_not_exists_in_native_config_file": 0.01228982099996756, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[all-exp_images5-]": 0.013874308000026758, + "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.013123606000021937, + "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.013469703999987814, + "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.022049411000011787, + "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.013475864999975329, + "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.015584067999952822, + "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.013417366000055608, + "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.013003221999952075, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_exists": 0.028363560000002508, + "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.011840392999999949, + "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.011820997000086209, + "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.011796911999965687, + "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.011808233000067503, + "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.024038953999934165, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_not_exists": 0.029221332999952665, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_integration_not_supported_by_requested_native_image[all-native:dev]": 0.012782771999980014, + "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.011537498999985019, + "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.0115053869999997, + "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.011511496999958126, + "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.011440267000068616, + "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.02380095899997059, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_invalid_docker_image_as_docker_image_flag": 0.011534282000013718, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_invalid_docker_image_as_docker_image_target": 0.011279256000022997, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_wrong_native_docker_image_flag": 0.011292929999967782, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestLintFilesCollection::test_lint_files_exists": 0.02847922099999778, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestLintFilesCollection::test_lint_files_not_exists": 0.029051748999961546, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_not_python_pack": 0.010252712000010433, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_python_pack": 0.028401262999977916, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_python_pack_api_module_script": 0.014019278999967355, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestRequirementsCollection::test_test_requirements_exists": 0.03522291300004099, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestRequirementsCollection::test_test_requirements_not_exists": 0.029808450000018638, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_integration[False-False]": 0.027824165999959405, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_integration[True-True]": 0.006910163000043212, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_script[False-False]": 0.02959109399995441, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_script[True-True]": 0.028745404999995117, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_tests_exists": 0.029258984000023247, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_tests_not_exists": 0.03827154700002211, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_checks_common_server_python": 0.020615413999962584, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_not_valid_yaml": 0.0037252400000511443, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_valid_yaml_key_script_is_dict": 0.03069781800002147, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_valid_yaml_key_script_is_not_dict": 0.030737990000034188, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_linter_pack_abs_dir": 0.0012988239999458528, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_remove_gitignore_files": 0.0030052679999812426, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[-True]": 0.007743107000010241, + "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.009817798000028688, + "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.008914943999968727, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[[tests_require_network]\\ntest1\\ntest-False]": 0.007675190999975712, + "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[[tests_require_network]\\ntest1\\ntest2-True]": 0.00989781799995626, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_fail_lint": 0.002646868999988783, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_success": 0.003232921999995142, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_usage_stderr": 0.0025958040000091387, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_fail_lint": 0.0026668460000109917, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_success": 0.002723411000033593, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_usage_stderr": 0.0027017719999662404, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_fail_lint_on_normal_and_test_file": 0.003963474999977734, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_fail_lint_on_only_test_file": 0.0034088109999856897, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_no_lint_files": 0.0033913579999875765, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_all_lint_fail_all": 0.0033125810000456113, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[False-True-True]": 0.0034805050000272786, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[True-False-True]": 0.004247193000026073, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[True-True-False]": 0.0036373359999402055, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-False-False]": 0.0035820049999983894, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-False-True]": 0.0034756739999579622, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-True-False]": 0.004087014999981875, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-True-True]": 0.0037675399999557158, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-False-False]": 0.0037372240000195234, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-False-True]": 0.003624772999955894, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-True-False]": 0.0038499329999694964, + "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-True-True]": 0.004034327999988818, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandResultsIndicatorsChecker::test_indicators_doesnt_exist": 0.0009605620000456838, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandResultsIndicatorsChecker::test_indicators_exist": 0.0011160519999862117, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_command_dict_checker": 0.0008093600000051993, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_list_checker": 0.0009616950000008728, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_set_checker": 0.0008469310000123187, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_tuple_checker": 0.0009433209999656356, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_commands_dismiss_for_feeds_checker": 0.007704076000095483, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_infer_dict_checker": 0.0011761050000131945, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_infer_if_checker": 0.001312639000047966, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_list_checker": 0.0010060959999691477, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_set_checker": 0.0008949099999995269, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_tuple_checker": 0.0008965339999917887, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_command_dict_checker": 0.0008376829999861002, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_regular_if_else_checker": 0.0015601800000126786, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_test_module_checker": 0.0009169919999862941, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestDemistoLogChecker::test_demisto_log_exists": 0.0009854280000354265, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestDemistoLogChecker::test_no_demisto_log": 0.0008286469999347901, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestExitChecker::test_exit_exists": 0.0011550450000186174, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestExitChecker::test_no_exit": 0.0008292680000181463, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestImportCommonServerPythonChecker::test_invalid_common_server_python_import": 0.0007677030000081686, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestImportCommonServerPythonChecker::test_valid_common_server_python_import": 0.009360104999984742, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_no_print": 0.0008996380000212412, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_number_of_prints": 0.0013300919999892358, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_print": 0.0017429239999842139, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_print_in_docstr": 0.0008033199999886165, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestQuithecker::test_exit_exists": 0.0009043979999887597, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestQuithecker::test_no_quit": 0.0007948440000404844, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestSleepChecker::test_no_sleep": 0.0007884920000833517, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestSleepChecker::test_sleep_exists": 0.001358524999943711, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_demisto_results_comments": 0.0007750160000341566, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_demisto_results_exists": 0.007586484999933418, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_no_demisto_results": 0.0007984590000660319, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitArgsChecker::test_init_args_in_main": 0.0010421850000170707, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitArgsChecker::test_init_args_not_in_main": 0.0011838290000127927, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitParamsChecker::test_init_params_in_main": 0.0009329510000384289, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitParamsChecker::test_init_params_not_in_main": 0.0011590930000693334, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestMainChecker::test_main_exists": 0.0008217430000740933, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestMainChecker::test_no_main": 0.0009425290000422137, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_demisto_results_comments": 0.0007657580000568487, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_no_return_outputs": 0.0007620500000484753, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_return_output_exists": 0.0009905169999910868, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_no_sys_exit": 0.0007595859999582899, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_exists": 0.0009915900000123656, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_in_comments": 0.000796125999954711, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_non_zero_exists": 0.0009670450000385244, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorCountChecker::test_return_error_exists_more_than_once": 0.0012772530000120241, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorCountChecker::test_return_error_exists_once": 0.0011197989999800484, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_dosnt_exists_in_main": 0.0010799249999990934, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_exists": 0.001206340999999611, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_exists_not_in_main": 0.0011620569999877262, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_doesnt_exists": 0.001073083000051156, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_exists": 0.0012636179999958586, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_finally_exists": 0.0012444910000226628, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestDirectAccessDictChecker::test_direct_access_doesnt_exists": 0.0015945840000313183, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestDirectAccessDictChecker::test_direct_access_exists": 0.0016943519999585988, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_args_annotations_doesnt_exist": 0.002108424000027753, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_doesnt_exists": 0.001210517999993499, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_doesnt_exists_on_Script": 0.001161336999928153, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists": 0.0010809169999106416, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists_in_if_clause": 0.0011519689999772709, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists_inside_elif_clause": 0.0011978560000329708, + "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.0009778040000583132, + "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_type_annotations_exists": 0.0015109580000398637, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_change_name_duplications": 0.0036658700000771205, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_command_body_args": 0.003792146000023422, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_command_headers": 0.0048231910002414224, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_config_file": 0.0063931490001323255, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_file_not_overwritten": 0.004585244000054445, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_get_command_function": 0.005127256000150737, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_python_file": 1.7422559990000082, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_ref_props_non_dict_handling": 0.0005550660002882069, + "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_yaml_file": 0.12825946399993882, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_apikey_passed_as_header": 0.8888214339999649, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_args_lowercase": 1.039437334000013, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_command_arguments_names_duplication": 0.009603149000213307, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_command_prefix": 0.7210858230000667, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_config_generated_successfully": 1.6247194229999877, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_context_output_path": 0.7197243539999363, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_download_file": 0.000641245999986495, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body0-expected0]": 0.0007506510000894195, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body1-expected1]": 0.0007282199999281147, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body2-expected2]": 0.0007441279999511607, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_package_integration_generation": 0.9650191340001584, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_post_body_to_arguments": 1.0301366340002005, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_url_contains_args": 1.176533026000243, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_duplicate_names": 0.0005010459999539307, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_no_duplicate_names": 0.00047381400008816854, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_none_names": 0.0004966359999798442, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format": 0.0005354589998205483, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_different_arg_name_nested": 0.0005114140001296619, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_different_arg_name_one_nested": 0.0004646570000659267, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_list_of_dicts": 0.00046866499997122446, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_duplicate_requests_check_duplicates_dont_exist": 0.0004419150002377137, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_duplicate_requests_check_duplicates_exist": 0.0004815499999040185, + "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.0006421589998808486, + "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.0006490309999662713, + "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.0006099280001308216, + "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.0005953009999757342, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_find_shared_args_path_no_path": 0.0004525860001649562, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection0-outputs0]": 0.0006121519998032454, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection1-outputs1]": 0.000646255999981804, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection2-outputs2]": 0.0006377790000442474, + "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection3-outputs3]": 0.0006241549999685958, + "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.0007458999998561922, + "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.0007154949998948723, + "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.0007128590002594137, + "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.0007540990000052261, + "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.0007210460000806052, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test__set_properties": 0.0045167870000568655, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_docker_tag_to_runfiles": 0.0067374410000411444, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_get_property": 0.004403517000127977, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_moded_properties[None-expected_text1]": 0.005944231000057698, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_moded_properties[nightly-expected_text0]": 0.0061965410000084375, + "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_no_files": 0.005457571999841093, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_all_files": 0.002176029999873208, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_empty_input_files": 0.07697330999985752, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_files": 0.03406454800006031, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_yml_files": 0.04882335999991483, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_yml_files_not_exists": 0.03449600299950362, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_nonexistent_files": 0.03412315399987165, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_staged_only": 0.0029535509997913323, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_use_git": 0.003458533000184616, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_config_files[False]": 0.18223306299978503, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_config_files[True]": 0.2298992889998317, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_coverage_analyze_general_hook[None-expected_args0]": 0.0009365759999582224, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_coverage_analyze_general_hook[nightly-expected_args1]": 0.000700577000316116, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_exclude_python2_of_non_supported_hooks": 0.04311303899999075, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook0-expected_result0]": 0.0008863440000368428, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook1-expected_result1]": 0.0006733560001066508, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook2-expected_result2]": 0.0006578290001471032, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook3-expected_result3]": 0.0007187819999217027, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_mypy_hooks": 0.0007359220003309019, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_no_docker_flag_docker_hook": 0.00047630800008846563, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook[False]": 0.0006363780000810948, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook[True]": 0.0006713230000059411, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook_nightly_mode": 0.0004975380002179008, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_all_files": 0.00047928599997248966, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_nightly_mode": 0.0004548689998955524, + "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_nightly_mode_and_all_files": 0.00047109999991334917, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_find_dashboard_by_id_negative": 0.005625385000030292, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_find_dashboard_by_id_positive": 0.005674446999933025, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_merge_generic_module_with_its_dashboards_negative": 0.0066002550000234805, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_merge_generic_module_with_its_dashboards_positive": 0.009259848000056081, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module": 0.005150961000026655, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_file_is_already_exist": 0.005620184999941102, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_file_is_already_exist_force": 0.01102942899996151, + "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_without_saving_path": 0.0050259679999840046, + "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.0017765750000080516, + "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.0012669640000240179, + "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.0012713030000099934, + "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.0012959180000962078, + "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.0011374520000231314, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_more_than_one_description_file": 0.002409586999988278, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_more_than_one_description_file_one_empty": 0.0019894719999911104, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_pack_readme": 0.0022063660000526397, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_same_pack_images_in_desc_and_readme": 0.002158738000048288, + "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.0006532489999813151, + "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.0006102080000687238, + "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_replace_markdown_urls": 0.0014605449999862685, + "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsiam": 0.004981965000013133, + "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsiam_2": 0.002761703999965448, + "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsoar": 0.0035375900000644833, + "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.08402502899997444, + "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.0846053180000581, + "demisto_sdk/commands/prepare_content/tests/xdrc_template_unifier_test.py::test_unify_xdrc_template": 0.002719384999977592, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_default_output_integration": 0.07101333300005308, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration": 0.08897536799992167, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__detailed_description_with_special_char": 0.08953284799997618, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__detailed_description_with_yml_structure": 0.08754508800006988, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[marketplacev2]": 0.09416679100007741, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar]": 0.09404721199996402, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar_on_prem]": 0.09372088300005998, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar_saas]": 0.09325649799995972, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param_type9[marketplacev2]": 0.09367798999994648, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param_type9[xsoar]": 0.09726362699996116, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLScript::test_unify_default_output_script": 0.009270769000011114, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLScript::test_unify_script": 0.07411319599992794, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_add_contributors_support": 0.002228859000013017, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_add_custom_section": 0.0021667620000584975, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_check_api_module_imports": 0.0005478120000361741, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_clean_python_code": 0.0007093940000117982, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_empty_yml": 0.0021831629999269353, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_code_file": 0.0007159460000139006, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_code_file_case_insensative": 0.002518499000018437, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_data": 0.0006579390000638341, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_integration_doc_link_negative": 0.0029165320000288375, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_integration_doc_link_positive": 0.16799662999989096, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_script_or_integration_package_data": 0.002890884000009919, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml": 0.0014529320000065127, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_doc_link_exist": 0.01114683899999136, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_markdown_image[False-True]": 0.002358542000081343, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_markdown_image[True-False]": 0.0016789729999686642, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_no_detailed_desc": 0.002338893999933589, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_hierarchy_api_module": 0.0010948139999413797, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_image_to_yml": 0.21167788700000756, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_image_to_yml_without_image": 0.003257358999974258, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code[import_to_module0]": 0.0013713499999425949, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code[import_to_module1]": 0.00132715699999153, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code__verify_offsets": 0.001602659000013773, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_pack_version_and_script_to_yml": 0.00048363999997036444, + "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.06895394999997961, + "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.3018319860000247, + "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.07019870999994282, + "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.2768210630000567, + "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.27414847400001463, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_community_contributed": 0.02048969199995554, + "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.019202479000000494, + "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.014743619999990187, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_not_partner_contributed_pack": 0.01444027399998049, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack": 0.01698362999991332, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack_no_email": 0.01508864300001278, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack_no_url": 0.013682620000054158, + "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_update_hidden_parameters_value": 0.0004953339999929085, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[10]": 0.0016802359998564498, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[15]": 0.001627355999971769, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[3]": 0.008915354999999181, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[5]": 0.0015756489999603218, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_playground_not_exist": 0.001575189000050159, + "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.002536533000466079, + "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.0018054380002467951, + "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.0021456439997109555, + "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.0021690969999781373, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_return_raw_outputs_from_log_with_raw_response_flag": 0.0014804120000917464, + "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_single_playground_exist": 0.001948865000031219, + "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.0035278029999972205, + "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.004999939000015274, + "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.0032806919999757156, + "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.0031508980000012343, + "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.08113659399998596, + "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.0808922040000084, + "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.1444380519999413, + "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.17812130300006856, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_specific_test_playbook[failed-1]": 0.03618825000006609, + "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_specific_test_playbook[success-0]": 0.028667811000048005, + "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.003519868000068982, + "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.0035046400000737776, + "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.11319146499994304, + "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.03332971300000054, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_calculate_shannon_entropy": 0.0005082069999389205, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_find_secrets": 0.002506567000011728, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_all_diff_text_files": 0.011645920000034948, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_diff_text_files": 0.0009762010000144983, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_generic_white_list": 0.0005857530000525912, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_packs_white_list": 0.0005934470000283909, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_related_yml_contents": 0.0005707250000455133, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_white_listed_items_not_pack": 0.0005610959999557963, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_white_listed_items_pack": 0.0007392790000153582, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_ignore_base64": 0.0006067919999850346, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_ignore_entropy": 0.007398443999989013, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_is_secrets_disabled": 0.00048670799998262737, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_is_text_file": 0.0004795049999870571, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_reformat_secrets_output": 0.00047939499995663937, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_regex_for_secrets": 0.0005754239999760102, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_false_positives": 0.0004988610000395965, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_secrets_disabled_line": 0.0005261619999146205, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_white_list_regex": 0.0006058399999915309, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_whitelisted_items_from_file_escaped_whitelist": 0.0005869560000064666, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_whitelisted_items_from_file_substring": 0.0005653550000488394, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_search_potential_secrets__no_secrets_found": 0.06280758000002606, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_search_potential_secrets__secrets_found": 0.007938953000063975, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_temp_white_list": 0.00210607099995741, + "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_two_files_with_same_name": 0.005431544000032318, + "demisto_sdk/commands/setup_env/tests/setup_environment_test.py::test_setup_env_vscode[False]": 0.013062222000144175, + "demisto_sdk/commands/setup_env/tests/setup_environment_test.py::test_setup_env_vscode[True]": 0.013027345999717, + "demisto_sdk/commands/split/tests/jsonsplitter_test.py::test_split_json": 0.00472178900002973, + "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.06726190199992743, + "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.06726858400003266, + "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.06718094100006056, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code__with_apimodule[betaintegration]": 0.007144982999932381, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code__with_apimodule[integration]": 0.008152070000051026, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_modules_old_format": 0.006629260000011072, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_pwsh[betaintegration]": 0.0035385919999839643, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_pwsh[integration]": 0.0034980869999685638, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_image": 0.0066362720000370246, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_javascript_code[betaintegration]": 0.07126730599998155, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_javascript_code[integration]": 0.06700329900002089, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_long_description": 0.0074019119999775285, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_modeling_rules": 0.0022050840000247263, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_modeling_rules_schema": 0.002245589000040127, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_parsing_rules": 0.002227367000045888, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_parsing_rules_sampels": 0.0022288680000315253, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_powershell_code[betaintegration]": 0.061319745999981023, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_powershell_code[integration]": 0.06763727299994571, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_modeling_rule": 0.0060789039999917804, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_parsing_rule": 0.004858706000050006, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_pwsh[betaintegration]": 0.022907452000083595, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_pwsh[integration]": 0.020803466999950615, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extraction_with_period_in_filename": 0.016327676000003066, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path": 0.004550481000023865, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path_empty_output": 0.006454684000004818, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path_relative": 0.006696805000103723, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_input_file_data_parameter": 0.005771438999943257, + "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_update_api_module_contribution": 0.007502880000060941, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_datasets": 0.010756098999991082, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_input_all_valid": 0.012306332000207476, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_input_some_invalid": 0.023888062000423815, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_create": 0.010442342999795073, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_extended_modeling_rule": 0.013496732000021439, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_reduced_modeling_rule": 0.014055776000077458, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_unchanged_modeling_rule": 0.014971285000001444, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestDeleteExistingDataset::test_delete_data_set": 90.1333137270002, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandInteractive::test_no_testdata_file_exists": 0.017392300999972576, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandMultipleRules::test_fail_one_pass_second": 60.11434487100007, + "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.073356876999924, + "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.052516986, + "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.06357345300012, + "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.02593240800001695, + "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.09001876700006, + "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.024629707000030976, + "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.100216559000046, + "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.014501298999903156, + "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.10997966900004, + "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.09032966899997, + "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.014843241999983547, + "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.0019303509999417656, + "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.0019204940000463466, + "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.002081593999832876, + "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.02393033100008779, + "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.002297125000040978, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestVerifyResults::test_verify_results_single_event_matching_expected_outputs": 0.002195245999985218, + "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.0014009340000029624, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_call_rule_regex[call a-True]": 0.0006180129998938355, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_call_rule_regex[historically-False]": 0.0006343939999169379, + "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.15353185900005428, + "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.027554712999858566, + "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.028127221999966423, + "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.028314481000052183, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[1-st]": 0.0008838689999492999, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[10-th]": 0.0006153890000177853, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[11-th]": 0.0006332000000384141, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[12-th]": 0.0006428799999866897, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[2-nd]": 0.0006807109998590022, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[21-st]": 0.0006172219999598383, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[3-rd]": 0.0006248839999898337, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[31-st]": 0.0005929260000812064, + "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[4-th]": 0.0006267289999186687, + "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_listeners_with_multiple_threads": 0.002168895999830056, + "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_queue_listener_sanity": 0.002560628000082943, + "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_real_time_logger_sanity": 0.002269725000132894, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_build_creation": 0.005093434999707824, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_get_instances_ips": 0.004684790999590405, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_mockable_playbook_configuration": 0.004909791999807567, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_nightly_playbook_skipping": 0.007556659999636395, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_no_tests_are_executed_when_filtered_tests_is_empty": 0.006085795999979382, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_non_filtered_tests_are_skipped": 0.0050938859999405395, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_integration": 0.0048565810000127385, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_skipped_integrations_is_skipped": 0.005084987999907753, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_version_mismatch_is_skipped": 0.005604446999996071, + "demisto_sdk/commands/test_content/tests/build_context_test.py::test_unmockable_playbook_configuration": 0.005051164999940738, + "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.005051846000014848, + "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.005647797000165156, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[None-expected4]": 0.013714869999830626, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration0-expected0]": 0.014131727000176397, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration1-expected1]": 0.013042153999776929, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration2-expected2]": 0.01385183499996856, + "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration3-expected3]": 0.014070112000126755, + "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_clean_filename": 0.0005528819999653933, + "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_get_paths": 0.000501206000080856, + "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_push_mock_files_thread_safety": 10.013387038999781, + "demisto_sdk/commands/test_content/tests/server_context_test.py::test_execute_tests": 0.02953940599991256, + "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__empty": 0.009413844999698995, + "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__error": 0.009515074000091772, + "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__none": 0.009267160999797852, + "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__success": 0.00920766000012918, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_docker_thresholds_for_non_pwsh_integrations": 0.007891563999692153, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_docker_thresholds_for_pwsh_integrations": 0.007889900999998645, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_is_runnable_on_this_instance": 0.009701451000182715, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_first_playback_passes": 0.018145785999877262, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_fails_every_time": 0.027415893999886976, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_fails_most_of_the_time": 0.028279254999915793, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_passes_most_of_the_time_playback_fails": 0.0315517720000571, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_passes_most_of_the_time_playback_pass": 0.030248699999901874, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_second_playback_fails": 0.02568179800005055, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_second_playback_passes": 0.024527352999939467, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_pb_inputs[current0-new_configuration0-expected0]": 0.009834260000161521, + "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.008669946000054551, + "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.008803556999964712, + "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.00905533500031197, + "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.008342217000290475, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_placeholders": 0.02000393500043174, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_fails_every_time": 0.014688637000062954, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_fails_most_of_the_times": 0.016549298000199997, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_passes_most_of_the_time": 0.01532132600004843, + "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_passes_on_first_run": 0.01498054100011359, + "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_close_incident[False-client_res1]": 0.006379632999824025, + "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_close_incident[True-client_res0]": 0.0054768079999121255, + "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_set_prev_server_keys": 0.010039913000127854, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_form_keys[1610639147]": 0.0045760880000216275, + "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.004721619000065402, + "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.004711660000111806, + "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.004883813000105874, + "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.004728210999928706, + "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.007367234999946959, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_json_keys[1610639147]": 0.005854823999925429, + "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.005985627999962162, + "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.005980528999998569, + "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.00613998700009688, + "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.006962199999861696, + "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.005925076000039553, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_url_query[1610639147]": 0.004660384999624512, + "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.005852218999962133, + "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.004629668000006859, + "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.006260993000068993, + "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.004578563999984908, + "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.0045333179998579, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_form_keys[1610639147]": 0.014796619999970062, + "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.016708676999996896, + "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.01715372600028786, + "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.021201908999728403, + "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.015892092999820306, + "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.019870486000172605, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_json_keys[1610639147]": 0.016280516000051648, + "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.01828045899992503, + "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.017724060000091413, + "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.018834351999657883, + "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.01915399799986517, + "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.02133713200009879, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_url_query[1610639147]": 0.016405000000304426, + "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.01785277099997984, + "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.015480645000025106, + "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.01612585000020772, + "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.019551158999774998, + "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.018105421999962346, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_fixed_boundary": 0.0026963320001414104, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_json_body_parsing": 0.0073874830000022484, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_live_false_when_running_in_playback_state": 0.0018943540001146175, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_loader_defaults": 0.7850515689999611, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_running": 0.004981854999869029, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_url_query_is_sorted": 0.00449429599962059, + "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::test_demisto_sdk_imports": 0.0006469170000400482, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_check_existing_rn[added_files0-expected_output0]": 0.0007887819999723433, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_check_existing_rn[added_files1-expected_output1]": 0.000791166999761117, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_pack_release_notes_pack_fail": 0.001869297999974151, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_pack_release_notes_pack_success": 0.1697151490000124, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[None-None]": 0.0020116939999752503, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[None-git_changed_packs1]": 0.00824007400001392, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[Packs/test1-git_changed_packs0]": 0.001983390000077634, + "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.0010080209999614453, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_get_existing_rn[Test1-packs_existing_rn2-revision-None]": 0.0010365650000494497, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_get_existing_rn[Test2-packs_existing_rn0-None-]": 0.0014770359998692584, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_handle_api_module_change[None]": 0.0017054830000233778, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_handle_api_module_change[Packs/ApiModules/Scripts/Test1]": 0.002253042999882382, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_multiple_packs": 0.08097790199985866, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_update_fail": 0.0005644840002787532, + "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_update_success": 0.003586470999835001, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_desc_event_collector": 0.12732400300001245, + "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.011693136000076265, + "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.1262260329997389, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_desc_old_file": 0.010165987000164023, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_file__documentation": 0.010566575999973793, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_file_without_description": 0.010608460999947056, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_integration": 0.011727159000201937, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_integration_for_generic": 0.010441824000054112, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_markdown_valid": 0.03320319799991012, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_playbook_modified_file": 0.011385212000277534, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_playbook_new_file": 0.010442430999773933, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_when_only_pack_metadata_changed": 0.01632093799980794, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_with_fromversion": 0.010496974000261616, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_file_not_found": 0.04427729699978045, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_no_version": 0.01138028199989094, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_major": 0.011025090000202908, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_major_overflow": 0.011068470999816782, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_minor": 0.01102944700005537, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_minor_overflow": 0.01096453600030145, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_revision": 0.010979824999822085, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_revision_overflow": 0.011037242999691443, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_specific": 0.011112962999959564, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_integration_command": 0.022062433000201054, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path0-integration-True-]": 0.02289963499993064, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path1-integration-False-]": 0.022702547000108098, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path10-script-True-]": 0.001595236999946792, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path11-script-False-]": 0.002096871999810901, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path12-script-False-- Deprecated. Use %%% instead.\\n]": 0.0022058450001622987, + "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.002080362000015157, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path14-script-True-]": 0.0015815920000932238, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path2-integration-False-- Deprecated. Use %%% instead.\\n]": 0.02262632399992981, + "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.022658664999880784, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path4-integration-True-]": 0.022578105000093274, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path5-playbook-True-]": 0.001700041000276542, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path6-playbook-False-]": 0.009062538000080167, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path7-playbook-False-- Deprecated. Use %%% instead.\\n]": 0.00939281499995559, + "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.00902964900024017, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path9-playbook-True-]": 0.0014441639998494793, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml_no_commands_section": 0.12748709300012706, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_execute_with_bump_version_raises_error": 0.12731923700016523, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_filter_to_relevant_files_pack_not_found": 0.07282690500005629, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_find_corresponding_yml": 0.010682981000172731, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_get_release_notes_path": 0.010523853999984567, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_only_docs_changed": 0.09293422400014606, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_only_docs_changed_bump_not_required": 0.011386383999933969, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_dashboard": 0.13237010700004248, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_incident_field": 0.14001996199999667, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_mapper": 0.137772201999951, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_with_deprecated_and_text": 0.0403436200001579, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_add_and_modify_files_without_update_docker_image": 0.01777718699986508, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_build_rn_config_file[False-None-None]": 0.13752583900009085, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_build_rn_config_file[True-None-expected_conf_data1]": 0.13763253399997666, + "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.13670844099965507, + "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.13578625100012687, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_change_image_or_desc_file_path": 0.003973241999801758, + "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.004589603000113129, + "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.004234079000070778, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_check_rn_directory": 0.01379274600003555, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_create_markdown": 0.04791374799992809, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_does_pack_metadata_exist_no": 0.014476449000085267, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_execute_update_invalid": 0.015300054999897839, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_find_added_pack_files": 0.015554581000060352, + "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.015351732999988599, + "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.01526597099996252, + "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.015474842000230637, + "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.015425518999791166, + "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.01538389400025153, + "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.015582834000042567, + "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.016399959000182207, + "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.015362692000053357, + "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.015385815999934493, + "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.01552082800003518, + "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.016474636000111786, + "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.015372330999980477, + "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.0165583829998468, + "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.01694886200016299, + "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.015400203000126567, + "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.015396905999978117, + "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.015314111999941815, + "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.015247948999785876, + "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.015238120000049094, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.0-99.99.99-True]": 0.01591450299997632, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.1-1.0.2-True]": 0.015797534000057567, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.5-1.0.4-False]": 0.01572414800034494, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.5-1.0.5-True]": 0.015804385999672377, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_new_integration_docker_not_updated": 0.018215946000054828, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_renamed_files": 0.014713010999912512, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_api_modules_dependents_rn__happy_flow": 0.05080041899987009, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_docker_image_in_yml": 0.017601669999748992, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_docker_image_in_yml_when_RN_aleady_exists": 0.01989797400005955, + "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.004746294000369744, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_existing_rn": 0.016171662000033393, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_write_metadata_To_file": 0.04849806099991838, + "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.2431863560000238, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_deprecated_commands": 0.0006903990001774218, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_docker_image_is_added_for_every_integration": 0.30768630700003996, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_force_and_text_update_rn[-## PackName\\n\\n- %%UPDATE_RN%%\\n]": 0.16011862100003782, + "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.21995605799997975, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_get_deprecated_comment_from_desc": 0.0005332449998149968, + "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.0015346019999924465, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_get_from_version_at_update_rn": 0.024533002999760356, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_git_add_release_notes": 0.04595848000008118, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_handle_existing_rn_version_path": 0.14043643599984534, + "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.0011535819999153318, + "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.0008582299999488896, + "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_no_release_notes_for_first_version": 0.012333991999867067, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_all_marketplace_packs[False--expected_outputs1]": 0.001937505999876521, + "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.0027058100001795538, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_all_marketplace_packs_on_existing_list": 0.0021002900000439695, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_custom_pack": 0.0014799230000335228, + "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.002365272999895751, + "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.002384932000268236, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_marketplace_pack": 0.001548960000036459, + "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.002419393999844033, + "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.0023773949997121235, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_update_config_file_manager[False-False---0]": 0.0014876860000185843, + "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.0015289939997273905, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_update_config_file_manager[True-False---1]": 0.0017165840001780452, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_verify_flags[False-Pack1---True]": 0.0013155849999293423, + "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.0016075399998953799, + "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.002657178999925236, + "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_verify_flags[True-Pack1-Packs/Pack1--True]": 0.0014502970002467919, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_detach_item": 0.002541703000133566, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_detach_item_manager": 0.595156409999845, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_extract_items_from_dir": 0.6102926290002415, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_id_to_detach": 0.06283977199996116, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/IncidentTypes/Process_Survey_Response.json-json]": 0.0006244849998893187, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Layouts/Process_Survey_Response.json-json]": 0.0006150579999939509, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Playbooks/Process_Survey_Response.md-yml]": 0.0005874559999483608, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Playbooks/Process_Survey_Response.yml-yml]": 0.0006318780001492996, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Playbooks/Process_Survey_Response.md-False]": 0.0006282320002810593, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Playbooks/Process_Survey_Response.yml-True]": 0.0008144900000388589, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Scripts/Process_Survey_Response.md-False]": 0.0006053190002148767, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Scripts/Process_Survey_Response.yml-True]": 0.0005876859997897554, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_failed_uploaded": 0.004182463999995889, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_successfully_uploaded_files": 0.005554893000407901, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_version_mismatch": 0.018831363000117562, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_notify_user_about_overwrite_pack[n-0]": 0.005341495000038776, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_notify_user_about_overwrite_pack[y-1]": 0.00532664799993654, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_invalid_zip_path[None]": 0.0034884480000982876, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_invalid_zip_path[invalid_zip_path]": 0.0031143000001065957, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.10.0-path0]": 0.004207720999829689, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.10.0-path1]": 0.00427852199982226, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.6.0-path0]": 0.00540546499996708, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.6.0-path1]": 0.004349074000174369, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.10.0-path0]": 0.0045126190000246424, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.10.0-path1]": 0.004297727999983181, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.5.0-path0]": 0.004583952999837493, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.5.0-path1]": 0.0056192439997175825, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.6.0-path0]": 0.0043820969999615045, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.6.0-path1]": 0.004263414999741144, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.10.0-path0]": 0.004786641000009695, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.10.0-path1]": 0.005815862000190464, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.5.0-path0]": 0.004752296000106071, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.5.0-path1]": 0.005790905000367275, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.6.0-path0]": 0.0046582620002482145, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.6.0-path1]": 0.004672909000191794, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_xsiam_pack[marketplacev2-expected_files1]": 0.016334335999999894, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_xsiam_pack[xsoar-expected_files0]": 0.08116379299985965, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zip_does_not_exist": 0.003612189000023136, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zips[path0]": 0.003831678999858923, + "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zips[path1]": 0.0032092090000332973, + "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.0006446129998494143, + "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.0006023040000400215, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_parse_error_response__exception[Bad Request]": 0.000575554000079137, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_parse_error_response__exception[Forbidden]": 0.0005398569999215397, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/IncidentFields-3]": 0.009271758000068075, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/Scripts-1]": 0.10467387200014855, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/Scripts/DummyScript-1]": 0.007654000999991695, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[content_repo_example/Integrations-1]": 0.005738107000070158, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[content_repo_example/Integrations/Securonix/-1]": 0.02936784199982867, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_incident_field_correct_file_change": 0.004551490999801899, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_incident_type_correct_file_change": 0.005003506000093694, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_invalid_path": 0.0022642229998837138, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_pack": 0.009169938000013644, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_packs_from_configfile": 0.005659919999970953, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_not_supported": 0.003105686000026253, + "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.006398967999984961, + "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.005579819999866231, + "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.0057573120002416545, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[IndicatorField-demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorFields/dns.json]": 0.005580882000231213, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[IndicatorType-demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorTypes/SampleIndicatorType.json]": 0.006668932000138739, + "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.01960948499981896, + "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.021281216000261338, + "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.004898539000123492, + "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.006806179000022894, + "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.014618813999959457, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Script-demisto_sdk/tests/test_files/Packs/DummyPack/Scripts/DummyScriptUnified.yml]": 0.007082452999839006, + "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.005815499999926033, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_unsupported_file": 0.004152707999992344, + "demisto_sdk/commands/upload/tests/uploader_test.py::test_zip_multiple_packs": 0.05469749199983198, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_added_files_type_using_function": 0.09543302099996254, + "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.02152153400015777, + "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.028525026000124853, + "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.05686074699974597, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[integration id is not in conf.json]": 0.038441196000121636, + "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.034024857000076736, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[tests section missing from yml and conf.json]": 0.03602583399970172, + "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.03435869699978866, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[well configured]": 0.04777556899989577, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[yml tests mismatch conf.json tests]": 0.034985374000143565, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_testplaybook[testplaybook-testplaybook-False]": 0.0016903529997307487, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_create_ignored_errors_list": 0.07251135799970143, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_files_validator_missing_meta_file": 0.19020832100022744, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_files_validator_validate_pack_unique_files": 0.13258995600017442, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_get_error_ignore_list": 0.07382568999992145, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_get_packs": 0.0719255249998696, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[OtherDir/Integration/file.json]": 0.07663177399990673, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[TestData/file.json]": 0.07929586499994912, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[TestPlaybooks/file.yml]": 0.07653152900002169, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[docs/dbot/README.md]": 0.07827639799984354, + "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.06890826099993319, + "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.0705186440000034, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/.secrets-ignore]": 0.08672574600018379, + "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.07816996699966694, + "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.07235206299992569, + "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.0773667509997722, + "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.07677156999966428, + "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.07960219799997503, + "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.07492334299968206, + "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.02136838800015539, + "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.028333457000144335, + "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.05770360999986224, + "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.17189665299997614, + "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.023573594000026787, + "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.04099942600032591, + "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.02556890799996836, + "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.18913228000019444, + "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.19071966199999224, + "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.024607053000181622, + "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.06386525000016263, + "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.03369934000011199, + "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.035478431000001365, + "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.01190880399985872, + "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.00410192599997572, + "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.007492863000152283, + "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.003673544999855949, + "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.004377439000109007, + "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.39391575500008, + "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.4076256520002062, + "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.004126771000073859, + "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.0037176690000251256, + "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.004251886000020022, + "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.0037352999997892766, + "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.426357396999947, + "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.45834863699997186, + "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.004176323000137927, + "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.004099119999864342, + "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.03140730399991298, + "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.2555924299999788, + "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.2597852949998014, + "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.18935400299960747, + "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.006638028999987, + "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.008092383999837693, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_old_file_format_non_unified": 0.08081792999996651, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_old_file_format_unified": 0.0760844779999843, + "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.002419693999854644, + "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.002608768000072814, + "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.0026737200000752637, + "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.0030577970001104404, + "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.03129257999989932, + "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.03709674199967594, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_json[False-MyDashboard ]": 0.13443142699998134, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_json[True-MyDashboard]": 0.13605832499979442, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_yml[False-MyIntegration ]": 0.14630951600020126, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_yml[True-MyIntegration]": 0.12745885299978, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_name[False-MyDashboard ]": 0.12299165700005688, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_name[True-MyDashboard]": 0.13580214000012347, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[False-False-True]": 0.14729344599982142, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-False-False]": 0.14641369400010262, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-True-False]": 0.13837694700032444, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-True-True]": 0.1455271279999124, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[False-False-True]": 0.49766723899983845, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-False-False]": 0.6528763999999683, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-True-False]": 0.502038771000116, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-True-True]": 0.5286582720000297, + "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.03101232800008802, + "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.03195770000002085, + "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.0100744809999469, + "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.002290475000108927, + "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.002273392999995849, + "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.0019803170000614045, + "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.002667759000132719, + "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.0023567779996938043, + "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.001946250999935728, + "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.0022817379999651166, + "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.0020664889996169222, + "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.002326952000203164, + "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.002016755000113335, + "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.006749445999730597, + "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.008309477000011611, + "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.0023848110001836176, + "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.0019779210001615866, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_generic_field[False-False]": 0.14052704300002006, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_generic_field[True-True]": 0.17446326600020257, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_incident_field[False-False]": 0.13840442800005803, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_incident_field[True-True]": 0.13647197800037247, + "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.03082154100002299, + "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.03183475199989516, + "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.002292269000008673, + "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.002251520999834611, + "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.001989922999882765, + "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.0022312139999485225, + "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.0020036500000060187, + "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.0023469610000574903, + "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.002791900999682184, + "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.002280707000181792, + "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.0020431039999948553, + "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.006642867999971713, + "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.008014356999865413, + "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.0022516840001571836, + "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.0019583249998049723, + "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.0019594860000324843, + "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.0019545579998521134, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_non_integration_png_files_ignored": 0.06504248400005963, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_pack_validation": 0.2482803939999485, + "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.2869057929997325, + "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.4365645409998251, + "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.12848077700004978, + "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.5496971519999079, + "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.13584425199996986, + "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.5059925399998519, + "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]": 1.1018252730002587, + "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.14328439199994136, + "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.1310449970001173, + "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.5619588719998774, + "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.2542761439997321, + "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.24167263999993338, + "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.09382839199997761, + "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.5016092279997793, + "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.6222288870001194, + "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.6812352159997772, + "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.09912740899994787, + "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.12996626800031663, + "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.739051709000023, + "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.7228926990001128, + "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.22554650400024912, + "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.24149482400002853, + "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.254200376999961, + "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.5405282419999367, + "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.09559926400015684, + "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.5977598370002397, + "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.085864364000372, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_with_modified_id": 0.3391330800000105, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_validations_on_file_release_notes_config": 0.04497211000011703, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_script_valid_rn": 0.5688777090001622, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_setup_git_params_master_branch": 0.04526408199990328, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_setup_git_params_non_master_branch": 0.044700446999968335, + "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.07329916799972125, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[.secrets-ignore-.secrets-ignore]": 0.0743959240003278, + "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.06896641299999828, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[doc_image-image.png]": 0.09904206700025497, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[ini-ini_file.ini]": 0.07248883500005832, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[javascriptfile-java_script_file.js]": 0.07455196399996566, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[license-LICENSE]": 0.07599890699975731, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[metadata-.pack_metadata.json]": 0.1323570380000092, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[modelingruleschema-Packs/some/ModelingRules/Some/Some_schema.json]": 0.07088121299966588, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[pem-pem_file.pem]": 0.07255261500017696, + "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.09164191800005028, + "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.07454855600008159, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[powershellfile-powershell_file.ps1]": 0.07436806300006538, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[pylintrc-.pylintrc]": 0.0764702919998399, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[txt-txt_file.txt]": 0.0782185660000323, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[unified_yml-Packs/DummyPack/Scripts/DummyScript_unified.yml]": 0.13611307399992256, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[vulture_whitelist-Packs/TestPack/Integrations/TestIntegration/.vulture_whitelist.py]": 0.07285621999972136, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[xsiamreportimage-Packs/XSIAMPack/XSIAMReports/XSIAM_Some_Report.json]": 0.09610255200004758, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_unified_files_ignored": 0.08153055000025233, + "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.0025160150000829162, + "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.002526435000163474, + "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.0025214149998191715, + "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.0025236400003905146, + "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.003783270000212724, + "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.0025566500000877568, + "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.002349275999904421, + "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.0023261400001501897, + "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.0023095499998362357, + "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.002317603999927087, + "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.002490789000148652, + "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.0024458239995510667, + "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.002487111999926128, + "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.0025473840000813652, + "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.0025206540001363464, + "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.002495135999879494, + "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.0022726510001120914, + "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.003604956999879505, + "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.0024381799998991482, + "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.0024411970000528527, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__happy_rn_dependent_on_api_module": 0.10182151000003614, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_dependent_on_api_module": 0.16740786399986973, + "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.08238926700005322, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_in_modified_files": 0.08512532399981865, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_in_old_format_files": 0.08393243500017888, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__no_missing_rn": 0.08338692300003459, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__no_missing_rn_new_pack": 0.08071629599976404, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format__with_toversion": 0.07563838199985184, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format__without_toversion": 0.07802725900000951, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format_deprecated_content": 0.05565433300034783, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_pack_dependencies": 0.133287271999734, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_pack_dependencies__invalid": 0.09434222000027148, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_release_notes": 0.08632410399991386, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_release_notes__invalid_rn_for_new_pack": 0.07640751700000692, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validation_of_beta_playbooks": 0.03507761399964693, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_verify_no_dup_rn[added_files0-True]": 0.07322621499974957, + "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_verify_no_dup_rn[added_files1-False]": 0.10075889399990956, + "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.07023117599987927, + "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.07255321800039383, + "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.07182776700005888, + "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.09896283400007633, + "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.09891015200014408, + "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.10014518399998451, + "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.10115466500019465, + "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.10010478499998499, + "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.10040277200005221, + "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.0991397360000974, + "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.10328916000025856, + "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.0985391649999201, + "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.09836803400003191, + "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.10292914400019981, + "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.06966524599988588, + "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.067611179999858, + "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.09959781999987172, + "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.09692635400006111, + "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.09831766999991487, + "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.09965654799952972, + "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.07154247900029986, + "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.07412718899990978, + "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.07045226999980514, + "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.12029209299998911, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_non_pack_files[TestData/file.json]": 0.10302941299983104, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_non_pack_files[TestPlaybooks/file.yml]": 0.09586138000008759, + "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.06830180499991911, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_non_formatted_relevant_file": 0.1039441599998554, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_old_format_file": 0.10209283399990454, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_type_missing_file": 0.10219170499999564, + "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.06449175100010507, + "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.06278173399982734, + "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.06140248900010192, + "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.06572604799998771, + "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.06559481499994035, + "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.06070438599999761, + "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.061407644999917466, + "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.062301339000214284, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore_with_git_error": 0.06775475200015535, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_packs_that_should_have_version_raised": 0.190040455000144, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_image_error": 0.061193979000336185, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_is_mapping_fields_command_exist": 0.14364195100006327, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -False]": 0.136111357000118, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -True]": 0.1365468009998949, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -False]": 0.13696488400000817, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -True]": 0.1469991270000719, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[-False]": 0.13787698100009038, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[-True]": 0.13936243200009812, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\n-False]": 0.14146339099988836, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\n-True]": 0.14851180699974975, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\t-False]": 0.1379795360001026, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\t-True]": 0.13787630999991052, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_both_selected_and_all_feeds_in_job": 0.14030425200007812, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[-False]": 0.14109395299988137, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[-True]": 0.146506835000082, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[6.4.9-False]": 0.14067192299989983, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[6.4.9-True]": 0.14576116499983982, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_missing_name[False]": 0.13956935900000644, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_missing_name[True]": 0.14387348300010672, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_non_feed_with_selected_feeds": 0.14685278399997514, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_sanity[False]": 0.13885887300011746, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_sanity[True]": 0.14058980599997994, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[False-selected_feeds2]": 0.1505966619999981, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-None]": 0.1374712379997618, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-selected_feeds0]": 0.1372964070001217, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-selected_feeds3]": 0.14042394900002364, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_mapping_fields_command_dont_exist": 0.06508259099996394, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_quiet_bc_flag": 0.022293212000022322, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_on_metadata_with_invalid_tags[pack_metadata_info0]": 0.12740381500020703, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_on_only_metadata_changed[pack_metadata0]": 0.13066176200027257, + "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.07706886799996937, + "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.07450908999999228, + "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.07613138200008507, + "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.07480502399994293, + "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.0745277100002113, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_should_raise_pack_version[NonSupported-False]": 0.0706252620000214, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_should_raise_pack_version[PackName1-True]": 0.06985893999990367, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_skip_conf_json": 0.14742256499971518, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_contributors_file": 0.0375816670000404, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set0--[BA115]-False-added_files0]": 0.21797753600026226, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set1---True-added_files1]": 0.07333992999997463, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set2---True-added_files2]": 0.21484096699987276, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set3---True-added_files3]": 0.10932052899988776, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set4---True-added_files4]": 0.10206624000011288, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set5--[BA115]-False-added_files5]": 0.07633945000020503, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_no_disallowed_terms_in_customer_facing_docs_end_to_end": 0.09207374000015989, + "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.0008289480001621996, + "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.0012266679998447216, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_no_disallowed_terms_in_customer_facing_docs_success": 0.0006528979999984585, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_pack_name": 0.07421849499996824, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_using_git_on_changed_marketplaces": 0.5001817539998683, + "demisto_sdk/commands/validate/tests/old_validators_test.py::test_was_file_renamed_but_labeled_as_deleted": 0.0020454050002172153, + "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run0-sub_classes0-expected_results0]": 0.0024587299999438983, + "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run1-sub_classes1-expected_results1]": 0.0018807489998380333, + "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run2-sub_classes2-expected_results2]": 0.0019411329999456939, + "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run3-sub_classes3-expected_results3]": 0.0019326870001350471, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-False-config_file_content2-expected_results2-False]": 0.0013578130001405952, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content0-expected_results0-False]": 0.0013500089999070042, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content3-expected_results3-False]": 0.0014443360000768735, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content4-expected_results4-True]": 0.0013884909997159411, + "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[custom_category-True-config_file_content1-expected_results1-False]": 0.0014490860000933026, + "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.0024844580000262795, + "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.002253567000025214, + "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.0031544270002541452, + "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator0-True]": 0.0013466030000017781, + "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator1-False]": 0.0008826370001315809, + "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator2-False]": 0.0007363330000771384, + "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results0-fixing_results0-expected_results0]": 0.0010271580001699476, + "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results1-fixing_results1-expected_results1]": 0.0009356859998206346, + "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results2-fixing_results2-expected_results2]": 0.0009414980002020457, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_invalid_pack_name": 0.0033218370003851305, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_not_exist_destination": 0.23450405000016872, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_packs[False-uploadable_packs/TestPack.zip]": 0.23705104099985874, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_packs[True-uploadable_packs.zip]": 0.2366839759999948, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_with_upload": 0.23986325900000338, + "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zipped_packs": 0.23744601899988993, + "demisto_sdk/tests/conf_file_test.py::test_conf_file_custom": 1.8898940469999843, + "demisto_sdk/tests/update_additional_dependencies_test.py::test_in_external_repo": 0.0026320519999956105, + "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[init_pack]": 37.89614695099996, + "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[modify_entity]": 29.77803280699999, + "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[rename_incident_field]": 13.871995276000035, + "demisto_sdk/utils/circle-ci/circle_ci_slack_notifier_test.py::test_slack_notifier_on_failed_circle_ci_jobs": 0.01832396799977687 +} \ No newline at end of file From e9390976d428a87f599ad733a8cae5afb47a5605 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 25 Nov 2023 12:34:37 +0200 Subject: [PATCH 019/204] no need test-durations --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 54b0b0e30e..a78bc2e270 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -72,7 +72,7 @@ jobs: echo "test-files are: $TEST_FILES" - poetry run pytest $TEST_FILES --store-durations +# poetry run pytest $TEST_FILES --store-durations poetry run pytest $TEST_FILES -v --cov --splits 5 --group ${{ matrix.group }} kill $node_pid - name: Upload coverage From 27d0143814fbf52a9f88e0142dbed2c6239846a5 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 25 Nov 2023 12:42:19 +0200 Subject: [PATCH 020/204] comment out --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index a78bc2e270..15157b58c2 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -72,7 +72,7 @@ jobs: echo "test-files are: $TEST_FILES" -# poetry run pytest $TEST_FILES --store-durations + # poetry run pytest $TEST_FILES --store-durations poetry run pytest $TEST_FILES -v --cov --splits 5 --group ${{ matrix.group }} kill $node_pid - name: Upload coverage From 84f1717d7e65014658efcec486edabef8155150c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 25 Nov 2023 13:16:25 +0200 Subject: [PATCH 021/204] do not continue on error --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 15157b58c2..cb4efd7d02 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -51,7 +51,7 @@ jobs: run: npm install - name: Run pytest - continue-on-error: true + # continue-on-error: true run: | shopt -u globstar source "$(poetry env info --path)/bin/activate" From 3962ee5b089d80194722c770a71375c91566343e Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 11:32:58 +0200 Subject: [PATCH 022/204] more verbose pytest --- .github/workflows/run_unit_tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index cb4efd7d02..f20f2302e0 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -73,13 +73,18 @@ jobs: echo "test-files are: $TEST_FILES" # poetry run pytest $TEST_FILES --store-durations - poetry run pytest $TEST_FILES -v --cov --splits 5 --group ${{ matrix.group }} + mkdir test-results + poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} kill $node_pid - - name: Upload coverage + - name: Upload artifacts uses: actions/upload-artifact@v2 with: name: coverage-${{ matrix.os }}-${{ matrix.python_version }}${{ matrix.group }} - path: .coverage + path: | + .test_durations + test-results/junit.xml + node_versions_info.json + coverage_html_report - name: Upload durations uses: actions/upload-artifact@v2 with: From c0c0d681a0b717eab9e7521e0580c5a3d155890c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 11:35:28 +0200 Subject: [PATCH 023/204] pre-commit --- .github/workflows/run_unit_tests.yml | 12 ++++++------ .test_durations | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index f20f2302e0..494d0eacfe 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -55,21 +55,21 @@ jobs: run: | shopt -u globstar source "$(poetry env info --path)/bin/activate" - + TEST_FILES=$(find . -type f -name "*_test.py") # filter out files which are in .venv directory TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*\.venv\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/init\/templates\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/tests\/integration_tests\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/content_graph\/tests\S*\.py//g') - + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json - - # Due to race conditions in the tests bringing up and down the node server, have the server available - # For all the tests. + + # 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=$! - + echo "test-files are: $TEST_FILES" # poetry run pytest $TEST_FILES --store-durations diff --git a/.test_durations b/.test_durations index f0efd0994e..18f67c2acc 100644 --- a/.test_durations +++ b/.test_durations @@ -4404,4 +4404,4 @@ "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[modify_entity]": 29.77803280699999, "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[rename_incident_field]": 13.871995276000035, "demisto_sdk/utils/circle-ci/circle_ci_slack_notifier_test.py::test_slack_notifier_on_failed_circle_ci_jobs": 0.01832396799977687 -} \ No newline at end of file +} From 48c369de8612950edd4b6a0284c9ad074a23e226 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 12:08:44 +0200 Subject: [PATCH 024/204] upload artifacts even when failing --- .github/workflows/run_unit_tests.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 494d0eacfe..6008005fab 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -51,7 +51,7 @@ jobs: run: npm install - name: Run pytest - # continue-on-error: true + continue-on-error: true run: | shopt -u globstar source "$(poetry env info --path)/bin/activate" @@ -75,6 +75,8 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} + PYTEST_EXIT_CODE=$? + echo "PYTEST_EXIT_CODE=$PYTEST_EXIT_CODE" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts uses: actions/upload-artifact@v2 @@ -85,8 +87,5 @@ jobs: test-results/junit.xml node_versions_info.json coverage_html_report - - name: Upload durations - uses: actions/upload-artifact@v2 - with: - name: .test_durations - path: .test_durations + - name: Exit after pytest execution + run: exit ${{ env.PYTEST_EXIT_CODE }} \ No newline at end of file From b8b03fa668d193d992a925085fab004b627de1b2 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 12:18:07 +0200 Subject: [PATCH 025/204] echo exit code --- .github/workflows/run_unit_tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 6008005fab..a7a98d4200 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -88,4 +88,6 @@ jobs: node_versions_info.json coverage_html_report - name: Exit after pytest execution - run: exit ${{ env.PYTEST_EXIT_CODE }} \ No newline at end of file + run: | + echo ${{ env.PYTEST_EXIT_CODE }} + exit ${{ env.PYTEST_EXIT_CODE }} \ No newline at end of file From 5bc393987d81cc80d1774ab2323b8039f4c5c067 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 15:36:05 +0200 Subject: [PATCH 026/204] test failure() --- .github/workflows/run_unit_tests.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index a7a98d4200..fd4882c8af 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -75,8 +75,6 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} - PYTEST_EXIT_CODE=$? - echo "PYTEST_EXIT_CODE=$PYTEST_EXIT_CODE" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts uses: actions/upload-artifact@v2 @@ -87,7 +85,6 @@ jobs: test-results/junit.xml node_versions_info.json coverage_html_report - - name: Exit after pytest execution - run: | - echo ${{ env.PYTEST_EXIT_CODE }} - exit ${{ env.PYTEST_EXIT_CODE }} \ No newline at end of file + - name: Check exit code of Step 1 + run: exit 1 + if: ${{ failure() }} \ No newline at end of file From c99316a48df6372222d76383639ad85d185e90bd Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 21:18:04 +0200 Subject: [PATCH 027/204] coverage in case of failures --- .github/workflows/run_unit_tests.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index fd4882c8af..1616172159 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -75,6 +75,10 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} + + pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$exit_code" >> $GITHUB_ENV + kill $node_pid - name: Upload artifacts uses: actions/upload-artifact@v2 @@ -85,6 +89,11 @@ jobs: test-results/junit.xml node_versions_info.json coverage_html_report - - name: Check exit code of Step 1 - run: exit 1 - if: ${{ failure() }} \ No newline at end of file + - name: Validate if pytest has passed + run: | + if [ "$PYTEST_EXIT_CODE" -ne 0 ]; then + echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" + else + echo "All unit-tests have passed" + # Add actions or commands for success + fi \ No newline at end of file From 45fea3600d3f80261511a665605d2ae36556d2c3 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 22:27:40 +0200 Subject: [PATCH 028/204] fix bug --- .github/workflows/run_unit_tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 1616172159..3c0f0c3023 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -75,9 +75,9 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} - pytest_exit_code=$? - echo "PYTEST_EXIT_CODE=$exit_code" >> $GITHUB_ENV + + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts @@ -95,5 +95,4 @@ jobs: echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" else echo "All unit-tests have passed" - # Add actions or commands for success fi \ No newline at end of file From e1f2ff887a42b4c0b3b2ef5f4d04e226f86ea991 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 22:53:58 +0200 Subject: [PATCH 029/204] fix --- .github/workflows/run_unit_tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 3c0f0c3023..b3ad5f393a 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -74,9 +74,7 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results - poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} - pytest_exit_code=$? - + poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From bf043edd9817fd41620da3b145e1a368f9d3fd22 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 22:56:08 +0200 Subject: [PATCH 030/204] mark step as failed --- .github/workflows/run_unit_tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index b3ad5f393a..c591159ba8 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -78,6 +78,8 @@ jobs: echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid + # mark this step as a failed step in case of a failure + exit $pytest_exit_code - name: Upload artifacts uses: actions/upload-artifact@v2 with: From 3096a569b7be11a462334686e777670fc51a1489 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 23:04:05 +0200 Subject: [PATCH 031/204] exit and fail --- .github/workflows/run_unit_tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index c591159ba8..2a7de52eb9 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -95,4 +95,5 @@ jobs: echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" else echo "All unit-tests have passed" + exit $PYTEST_EXIT_CODE fi \ No newline at end of file From b06f23b508c8080591bf926e6e431d1446bd559c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 23:07:42 +0200 Subject: [PATCH 032/204] remove empty lines --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 2a7de52eb9..6d4528f76a 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -56,7 +56,7 @@ jobs: shopt -u globstar source "$(poetry env info --path)/bin/activate" - TEST_FILES=$(find . -type f -name "*_test.py") + TEST_FILES=$(find . -type f -name "*_test.py" | grep -v '^$') # filter out files which are in .venv directory TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*\.venv\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/init\/templates\S*\.py//g') From 74a26fafc67abdf73fc91eabd0c4e1b75d9b7bf1 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 23:38:33 +0200 Subject: [PATCH 033/204] try set +e --- .github/workflows/run_unit_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 6d4528f76a..46d10c10eb 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -74,12 +74,12 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results + + set +e poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - # mark this step as a failed step in case of a failure - exit $pytest_exit_code - name: Upload artifacts uses: actions/upload-artifact@v2 with: From b71aec14e1eabd51b895f0d45714266b34ef2151 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 27 Nov 2023 23:53:32 +0200 Subject: [PATCH 034/204] test --- .github/workflows/run_unit_tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 46d10c10eb..ff2e38e062 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -75,10 +75,11 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results - set +e poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + echo "test" + kill $node_pid - name: Upload artifacts uses: actions/upload-artifact@v2 From 34c0940fdeb17ee7df501c1b4e6a4f238da3ab56 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 28 Nov 2023 07:19:17 +0200 Subject: [PATCH 035/204] test --- .github/workflows/run_unit_tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index ff2e38e062..c6fc3b50af 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -55,6 +55,8 @@ jobs: run: | shopt -u globstar source "$(poetry env info --path)/bin/activate" + echo "test-1" + exit 1 TEST_FILES=$(find . -type f -name "*_test.py" | grep -v '^$') # filter out files which are in .venv directory @@ -78,7 +80,7 @@ jobs: poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - echo "test" + echo "test-2" kill $node_pid - name: Upload artifacts From 9e12f9a433cdf5215e69e95341de53560f14ab53 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 28 Nov 2023 17:43:04 +0200 Subject: [PATCH 036/204] test --- .github/workflows/run_unit_tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index c6fc3b50af..144844f394 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -55,8 +55,6 @@ jobs: run: | shopt -u globstar source "$(poetry env info --path)/bin/activate" - echo "test-1" - exit 1 TEST_FILES=$(find . -type f -name "*_test.py" | grep -v '^$') # filter out files which are in .venv directory From 6fcb8b2bba555a8be9bc8654403706c8185478a5 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 28 Nov 2023 17:53:03 +0200 Subject: [PATCH 037/204] exit 1 test --- .github/workflows/run_unit_tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 144844f394..6ab5256b2a 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -56,7 +56,7 @@ jobs: shopt -u globstar source "$(poetry env info --path)/bin/activate" - TEST_FILES=$(find . -type f -name "*_test.py" | grep -v '^$') + TEST_FILES=$(find . -type f -name "*_test.py") # filter out files which are in .venv directory TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*\.venv\S*\.py//g') TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/init\/templates\S*\.py//g') @@ -96,5 +96,6 @@ jobs: echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" else echo "All unit-tests have passed" + exit 1 exit $PYTEST_EXIT_CODE fi \ No newline at end of file From 8bd86532e3b5389839469ac8d70d20a9333d0395 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 30 Nov 2023 23:05:35 +0200 Subject: [PATCH 038/204] test --- .github/workflows/run_unit_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 6ab5256b2a..f70a86eceb 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -78,7 +78,7 @@ jobs: poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - echo "test-2" + echo "$PYTEST_EXIT_CODE=$PYTEST_EXIT_CODE" kill $node_pid - name: Upload artifacts @@ -92,7 +92,7 @@ jobs: coverage_html_report - name: Validate if pytest has passed run: | - if [ "$PYTEST_EXIT_CODE" -ne 0 ]; then + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" else echo "All unit-tests have passed" From 8a48e939f62c93b5ea2079bc553967574225de46 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 30 Nov 2023 23:20:41 +0200 Subject: [PATCH 039/204] test --- .github/workflows/run_unit_tests.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index f70a86eceb..49e8262842 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -75,10 +75,13 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results + unset DEMISTO_API_KEY + unset XSIAM_AUTH_ID + poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - echo "$PYTEST_EXIT_CODE=$PYTEST_EXIT_CODE" + echo "pytest_exit_code=$pytest_exit_code" kill $node_pid - name: Upload artifacts @@ -92,10 +95,11 @@ jobs: coverage_html_report - name: Validate if pytest has passed run: | + echo "pytest_exit_code=$PYTEST_EXIT_CODE" if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" + exit $PYTEST_EXIT_CODE else echo "All unit-tests have passed" - exit 1 exit $PYTEST_EXIT_CODE fi \ No newline at end of file From cf73428779eb5de2dcf39d4fbf3b5b168b76a8bc Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 1 Dec 2023 00:08:55 +0200 Subject: [PATCH 040/204] try with monkeypatch --- .github/workflows/run_unit_tests.yml | 12 ++---------- .../commands/common/clients/tests/configs_test.py | 10 +++++++--- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 49e8262842..8ad060dcea 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -74,15 +74,9 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results - - unset DEMISTO_API_KEY - unset XSIAM_AUTH_ID - poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - - echo "pytest_exit_code=$pytest_exit_code" - + kill $node_pid - name: Upload artifacts uses: actions/upload-artifact@v2 @@ -95,11 +89,9 @@ jobs: coverage_html_report - name: Validate if pytest has passed run: | - echo "pytest_exit_code=$PYTEST_EXIT_CODE" if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" - exit $PYTEST_EXIT_CODE else echo "All unit-tests have passed" + fi exit $PYTEST_EXIT_CODE - fi \ No newline at end of file diff --git a/demisto_sdk/commands/common/clients/tests/configs_test.py b/demisto_sdk/commands/common/clients/tests/configs_test.py index c2903749a1..58b9721b90 100644 --- a/demisto_sdk/commands/common/clients/tests/configs_test.py +++ b/demisto_sdk/commands/common/clients/tests/configs_test.py @@ -6,6 +6,7 @@ XsoarClientConfig, XsoarSaasClientConfig, ) +from demisto_sdk.commands.common.constants import DEMISTO_KEY def test_init_xsoar_client_config_with_api_key(): @@ -18,12 +19,14 @@ def test_init_xsoar_client_config_username_password(): ) -def test_init_xsoar_client_config_no_api_key_and_user_and_password(): +def test_init_xsoar_client_config_no_api_key_and_user_and_password(monkeypatch): + monkeypatch.delenv(DEMISTO_KEY, raising=False) with pytest.raises(ValueError): XsoarClientConfig(base_api_url="https://test1.com") -def test_init_xsoar_client_config_no_values(): +def test_init_xsoar_client_config_no_values(monkeypatch): + monkeypatch.delenv(DEMISTO_KEY, raising=False) with pytest.raises(ValidationError): XsoarClientConfig() @@ -44,7 +47,8 @@ def test_init_xsoar_saas_client_config_with_api_key_without_auth_id(): XsoarSaasClientConfig(base_api_url="https://test1.com", api_key="test") -def test_init_xsoar_saas_client_config_with_auth_id_without_api_key(): +def test_init_xsoar_saas_client_config_with_auth_id_without_api_key(monkeypatch): + monkeypatch.delenv(DEMISTO_KEY, raising=False) with pytest.raises(ValueError): XsoarSaasClientConfig(base_api_url="https://test1.com", auth_id="1") From 30b93f76b61cf377f5116e43448c4df5fc25a29d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 1 Dec 2023 13:51:46 +0200 Subject: [PATCH 041/204] print --- demisto_sdk/commands/common/clients/configs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/demisto_sdk/commands/common/clients/configs.py b/demisto_sdk/commands/common/clients/configs.py index 4efd8ffb11..4181da5b46 100644 --- a/demisto_sdk/commands/common/clients/configs.py +++ b/demisto_sdk/commands/common/clients/configs.py @@ -37,6 +37,7 @@ class XsoarClientConfig(BaseModel): @root_validator() def validate_auth_params(cls, values: Dict[str, Any]): + print(values) if not values.get("api_key") and not ( values.get("user") and values.get("password") ): From 98e22407d78e416e8faf0bbcc7991d09ae6ef148 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 1 Dec 2023 14:06:19 +0200 Subject: [PATCH 042/204] remove os after download test --- .github/workflows/run_unit_tests.yml | 2 +- demisto_sdk/commands/common/clients/configs.py | 1 - demisto_sdk/commands/download/tests/downloader_test.py | 10 ++++++++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 8ad060dcea..99c93f13ea 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -76,7 +76,7 @@ jobs: mkdir test-results poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - + kill $node_pid - name: Upload artifacts uses: actions/upload-artifact@v2 diff --git a/demisto_sdk/commands/common/clients/configs.py b/demisto_sdk/commands/common/clients/configs.py index 4181da5b46..4efd8ffb11 100644 --- a/demisto_sdk/commands/common/clients/configs.py +++ b/demisto_sdk/commands/common/clients/configs.py @@ -37,7 +37,6 @@ class XsoarClientConfig(BaseModel): @root_validator() def validate_auth_params(cls, values: Dict[str, Any]): - print(values) if not values.get("api_key") and not ( values.get("user") and values.get("password") ): diff --git a/demisto_sdk/commands/download/tests/downloader_test.py b/demisto_sdk/commands/download/tests/downloader_test.py index 300aaf1d90..f1f8494fbc 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, @@ -29,8 +31,8 @@ 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" +os.environ[DEMISTO_BASE_URL] = "https://fake-xsoar-server.com" +os.environ[DEMISTO_KEY] = "fake_api_key" def load_test_data(file_name: str, folder: str | None = None) -> dict: @@ -1399,3 +1401,7 @@ def test_invalid_regex_error(mocker): logger_error.call_args_list, "Error: Invalid regex pattern provided: '*invalid-regex*'.", ) + + +os.environ.pop(DEMISTO_BASE_URL, None) +os.environ.pop(DEMISTO_KEY, None) From 7041959d96e7bd38c32cb3cfbbd7bc9bf4d174d4 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 1 Dec 2023 14:25:41 +0200 Subject: [PATCH 043/204] try with container --- .github/workflows/run_unit_tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 99c93f13ea..2416884c8b 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -22,6 +22,8 @@ jobs: python-version: [ "3.8", "3.9", "3.10" ] group: [ 1, 2, 3, 4, 5 ] fail-fast: false + container: + image: python:${{ matrix.python-version }} defaults: run: shell: bash From cb20ad570591cb947ee9331900cf45b84d11affe Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 1 Dec 2023 17:41:11 +0200 Subject: [PATCH 044/204] use fixture to unset env vars --- .github/workflows/run_unit_tests.yml | 2 -- .../commands/download/tests/downloader_test.py | 16 +++++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 2416884c8b..99c93f13ea 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -22,8 +22,6 @@ jobs: python-version: [ "3.8", "3.9", "3.10" ] group: [ 1, 2, 3, 4, 5 ] fail-fast: false - container: - image: python:${{ matrix.python-version }} defaults: run: shell: bash diff --git a/demisto_sdk/commands/download/tests/downloader_test.py b/demisto_sdk/commands/download/tests/downloader_test.py index f1f8494fbc..d4b71d3c2a 100644 --- a/demisto_sdk/commands/download/tests/downloader_test.py +++ b/demisto_sdk/commands/download/tests/downloader_test.py @@ -30,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_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: @@ -1401,7 +1407,3 @@ def test_invalid_regex_error(mocker): logger_error.call_args_list, "Error: Invalid regex pattern provided: '*invalid-regex*'.", ) - - -os.environ.pop(DEMISTO_BASE_URL, None) -os.environ.pop(DEMISTO_KEY, None) From c1033b8b584f4511d390510548f407634c9bb3e5 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 1 Dec 2023 17:46:38 +0200 Subject: [PATCH 045/204] try set level of caplog --- demisto_sdk/commands/common/tests/base_validator_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demisto_sdk/commands/common/tests/base_validator_test.py b/demisto_sdk/commands/common/tests/base_validator_test.py index 0f967df26e..97ff5e741a 100644 --- a/demisto_sdk/commands/common/tests/base_validator_test.py +++ b/demisto_sdk/commands/common/tests/base_validator_test.py @@ -134,7 +134,7 @@ def test_handle_error_github_annotation( assert captured.out == expected_result -def test_handle_error(mocker, caplog): +def test_handle_error(caplog): """ Given - An ignore errors list associated with a file. @@ -149,6 +149,7 @@ def test_handle_error(mocker, caplog): - Ensure non ignored errors are in FOUND_FILES_AND_ERRORS list. - Ensure ignored error are not in FOUND_FILES_AND_ERRORS and in FOUND_FILES_AND_IGNORED_ERRORS """ + caplog.set_level(logging.NOTSET) base_validator = BaseValidator( ignored_errors={"file_name": ["BA101"]}, print_as_warnings=True ) From f30d98b0008cf82c3c249cbabdf9947e93918dbf Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 1 Dec 2023 17:59:35 +0200 Subject: [PATCH 046/204] test caplog --- demisto_sdk/commands/common/tests/base_validator_test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/demisto_sdk/commands/common/tests/base_validator_test.py b/demisto_sdk/commands/common/tests/base_validator_test.py index 97ff5e741a..81e1779623 100644 --- a/demisto_sdk/commands/common/tests/base_validator_test.py +++ b/demisto_sdk/commands/common/tests/base_validator_test.py @@ -149,7 +149,7 @@ def test_handle_error(caplog): - Ensure non ignored errors are in FOUND_FILES_AND_ERRORS list. - Ensure ignored error are not in FOUND_FILES_AND_ERRORS and in FOUND_FILES_AND_IGNORED_ERRORS """ - caplog.set_level(logging.NOTSET) + # caplog.set_level(logging.NOTSET) base_validator = BaseValidator( ignored_errors={"file_name": ["BA101"]}, print_as_warnings=True ) @@ -173,7 +173,9 @@ def test_handle_error(caplog): assert formatted_error is None assert "path/to/file_name - [BA101]" not in FOUND_FILES_AND_ERRORS assert "path/to/file_name - [BA101]" in FOUND_FILES_AND_IGNORED_ERRORS + logging.warning("blabla") assert "path/to/file_name: [BA101] - ignore-file-specific\n" in caplog.text + print(caplog.text) formatted_error = base_validator.handle_error( "Error-message", "ST109", "path/to/file_name" From c2c7b1f3ea8b3712afd0072ae288f5d99ff35312 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 1 Dec 2023 18:25:14 +0200 Subject: [PATCH 047/204] log level warning --- demisto_sdk/commands/common/tests/base_validator_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demisto_sdk/commands/common/tests/base_validator_test.py b/demisto_sdk/commands/common/tests/base_validator_test.py index 81e1779623..74315bc365 100644 --- a/demisto_sdk/commands/common/tests/base_validator_test.py +++ b/demisto_sdk/commands/common/tests/base_validator_test.py @@ -149,7 +149,7 @@ def test_handle_error(caplog): - Ensure non ignored errors are in FOUND_FILES_AND_ERRORS list. - Ensure ignored error are not in FOUND_FILES_AND_ERRORS and in FOUND_FILES_AND_IGNORED_ERRORS """ - # caplog.set_level(logging.NOTSET) + caplog.set_level(logging.WARNING) base_validator = BaseValidator( ignored_errors={"file_name": ["BA101"]}, print_as_warnings=True ) @@ -174,8 +174,8 @@ def test_handle_error(caplog): assert "path/to/file_name - [BA101]" not in FOUND_FILES_AND_ERRORS assert "path/to/file_name - [BA101]" in FOUND_FILES_AND_IGNORED_ERRORS logging.warning("blabla") + print(f'{caplog.text=}') assert "path/to/file_name: [BA101] - ignore-file-specific\n" in caplog.text - print(caplog.text) formatted_error = base_validator.handle_error( "Error-message", "ST109", "path/to/file_name" From 502658df336c3fbaf604e0baf1013527c0e9292a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 10:33:51 +0200 Subject: [PATCH 048/204] print --- demisto_sdk/commands/common/hook_validations/base_validator.py | 1 + demisto_sdk/commands/common/tests/base_validator_test.py | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/demisto_sdk/commands/common/hook_validations/base_validator.py b/demisto_sdk/commands/common/hook_validations/base_validator.py index b2de73bdf5..33d89d5616 100644 --- a/demisto_sdk/commands/common/hook_validations/base_validator.py +++ b/demisto_sdk/commands/common/hook_validations/base_validator.py @@ -235,6 +235,7 @@ def formatted_error_str(): or warning ): if self.print_as_warnings or warning: + print("printing warning") logger.warning(f"[yellow]{formatted_error_str()}[/yellow]") self.json_output(file_path, error_code, error_message, warning) self.add_to_report_error_list( diff --git a/demisto_sdk/commands/common/tests/base_validator_test.py b/demisto_sdk/commands/common/tests/base_validator_test.py index 74315bc365..618d912776 100644 --- a/demisto_sdk/commands/common/tests/base_validator_test.py +++ b/demisto_sdk/commands/common/tests/base_validator_test.py @@ -149,7 +149,6 @@ def test_handle_error(caplog): - Ensure non ignored errors are in FOUND_FILES_AND_ERRORS list. - Ensure ignored error are not in FOUND_FILES_AND_ERRORS and in FOUND_FILES_AND_IGNORED_ERRORS """ - caplog.set_level(logging.WARNING) base_validator = BaseValidator( ignored_errors={"file_name": ["BA101"]}, print_as_warnings=True ) @@ -173,8 +172,6 @@ def test_handle_error(caplog): assert formatted_error is None assert "path/to/file_name - [BA101]" not in FOUND_FILES_AND_ERRORS assert "path/to/file_name - [BA101]" in FOUND_FILES_AND_IGNORED_ERRORS - logging.warning("blabla") - print(f'{caplog.text=}') assert "path/to/file_name: [BA101] - ignore-file-specific\n" in caplog.text formatted_error = base_validator.handle_error( From ba91ed422396ead54e80107c92efdfd76748ea18 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 10:49:35 +0200 Subject: [PATCH 049/204] inside the warning --- .../commands/common/hook_validations/base_validator.py | 3 ++- .../commands/coverage_analyze/tests/coverage_report_test.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/demisto_sdk/commands/common/hook_validations/base_validator.py b/demisto_sdk/commands/common/hook_validations/base_validator.py index 33d89d5616..9c3b65ed9f 100644 --- a/demisto_sdk/commands/common/hook_validations/base_validator.py +++ b/demisto_sdk/commands/common/hook_validations/base_validator.py @@ -235,7 +235,8 @@ def formatted_error_str(): or warning ): if self.print_as_warnings or warning: - print("printing warning") + if "path/to/file_name: [BA101] - ignore-file-specific" in formatted_error_str(): + print("got inside the warning") logger.warning(f"[yellow]{formatted_error_str()}[/yellow]") self.json_output(file_path, error_code, error_message, warning) self.add_to_report_error_list( 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..920b7b4edf 100644 --- a/demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py +++ b/demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py @@ -209,7 +209,7 @@ def test_with_new_file(self, file_path, default_min_cover, tmpdir, monkeypatch): assert cov_report.file_min_coverage(file_path) == default_min_cover data_test_with_exist_file = [ - ("test", 70.0, 69.0), + # ("test", 70.0, 69.0), ( "/Users/username/dev/content/Packs/SomePack/Integrations/SomeIntegration/SomeIntegration.py", 80.0, @@ -230,7 +230,7 @@ def test_with_exist_file( assert cov_report.file_min_coverage(file_path) == expected_min_cover data_test_with_custom_epsilon_file = [ - ("test", 1.0, 79.0), + # ("test", 1.0, 79.0), ( "/Users/username/dev/content/Packs/SomePack/Integrations/SomeIntegration/SomeIntegration.py", 3.0, From cf99cfd056fcc3ae9ff2a89535d621a95f717c2f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 11:56:06 +0200 Subject: [PATCH 050/204] prints --- demisto_sdk/commands/common/clients/tests/configs_test.py | 3 --- .../commands/common/hook_validations/base_validator.py | 2 -- demisto_sdk/commands/common/tests/base_validator_test.py | 1 + .../commands/coverage_analyze/tests/coverage_report_test.py | 6 ++++-- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/demisto_sdk/commands/common/clients/tests/configs_test.py b/demisto_sdk/commands/common/clients/tests/configs_test.py index 58b9721b90..b8308be041 100644 --- a/demisto_sdk/commands/common/clients/tests/configs_test.py +++ b/demisto_sdk/commands/common/clients/tests/configs_test.py @@ -20,13 +20,11 @@ def test_init_xsoar_client_config_username_password(): def test_init_xsoar_client_config_no_api_key_and_user_and_password(monkeypatch): - monkeypatch.delenv(DEMISTO_KEY, raising=False) with pytest.raises(ValueError): XsoarClientConfig(base_api_url="https://test1.com") def test_init_xsoar_client_config_no_values(monkeypatch): - monkeypatch.delenv(DEMISTO_KEY, raising=False) with pytest.raises(ValidationError): XsoarClientConfig() @@ -48,7 +46,6 @@ def test_init_xsoar_saas_client_config_with_api_key_without_auth_id(): def test_init_xsoar_saas_client_config_with_auth_id_without_api_key(monkeypatch): - monkeypatch.delenv(DEMISTO_KEY, raising=False) with pytest.raises(ValueError): XsoarSaasClientConfig(base_api_url="https://test1.com", auth_id="1") diff --git a/demisto_sdk/commands/common/hook_validations/base_validator.py b/demisto_sdk/commands/common/hook_validations/base_validator.py index 9c3b65ed9f..b2de73bdf5 100644 --- a/demisto_sdk/commands/common/hook_validations/base_validator.py +++ b/demisto_sdk/commands/common/hook_validations/base_validator.py @@ -235,8 +235,6 @@ def formatted_error_str(): or warning ): if self.print_as_warnings or warning: - if "path/to/file_name: [BA101] - ignore-file-specific" in formatted_error_str(): - print("got inside the warning") logger.warning(f"[yellow]{formatted_error_str()}[/yellow]") self.json_output(file_path, error_code, error_message, warning) self.add_to_report_error_list( diff --git a/demisto_sdk/commands/common/tests/base_validator_test.py b/demisto_sdk/commands/common/tests/base_validator_test.py index 618d912776..0034fd01dd 100644 --- a/demisto_sdk/commands/common/tests/base_validator_test.py +++ b/demisto_sdk/commands/common/tests/base_validator_test.py @@ -149,6 +149,7 @@ def test_handle_error(caplog): - Ensure non ignored errors are in FOUND_FILES_AND_ERRORS list. - Ensure ignored error are not in FOUND_FILES_AND_ERRORS and in FOUND_FILES_AND_IGNORED_ERRORS """ + caplog.set_level(logging.INFO) base_validator = BaseValidator( ignored_errors={"file_name": ["BA101"]}, print_as_warnings=True ) 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 920b7b4edf..86031ef150 100644 --- a/demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py +++ b/demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py @@ -209,7 +209,7 @@ def test_with_new_file(self, file_path, default_min_cover, tmpdir, monkeypatch): assert cov_report.file_min_coverage(file_path) == default_min_cover data_test_with_exist_file = [ - # ("test", 70.0, 69.0), + ("test", 70.0, 69.0), ( "/Users/username/dev/content/Packs/SomePack/Integrations/SomeIntegration/SomeIntegration.py", 80.0, @@ -227,10 +227,12 @@ def test_with_exist_file( monkeypatch.chdir(tmpdir) cov_report = CoverageReport() cov_report._original_summary = {file_path: current_cover} + print(f'test_with_exist_file: original summary: {cov_report._original_summary}') + print(f'test_with_exist_file: os.path.relpath: {os.path.relpath(file_path)}') assert cov_report.file_min_coverage(file_path) == expected_min_cover data_test_with_custom_epsilon_file = [ - # ("test", 1.0, 79.0), + ("test", 1.0, 79.0), ( "/Users/username/dev/content/Packs/SomePack/Integrations/SomeIntegration/SomeIntegration.py", 3.0, From 220e7c5934cefa8597c3612e0590376aafcfbe62 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 12:15:31 +0200 Subject: [PATCH 051/204] fix tests of [4] --- .../commands/common/tests/base_validator_test.py | 1 - .../layout/tests/layout_up_to_5_9_9_test.py | 11 ++++++++--- .../coverage_analyze/tests/coverage_report_test.py | 8 ++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/demisto_sdk/commands/common/tests/base_validator_test.py b/demisto_sdk/commands/common/tests/base_validator_test.py index 0034fd01dd..618d912776 100644 --- a/demisto_sdk/commands/common/tests/base_validator_test.py +++ b/demisto_sdk/commands/common/tests/base_validator_test.py @@ -149,7 +149,6 @@ def test_handle_error(caplog): - Ensure non ignored errors are in FOUND_FILES_AND_ERRORS list. - Ensure ignored error are not in FOUND_FILES_AND_ERRORS and in FOUND_FILES_AND_IGNORED_ERRORS """ - caplog.set_level(logging.INFO) base_validator = BaseValidator( ignored_errors={"file_name": ["BA101"]}, print_as_warnings=True ) 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..cbfaf631e9 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,14 @@ 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 86031ef150..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,12 +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} - print(f'test_with_exist_file: original summary: {cov_report._original_summary}') - print(f'test_with_exist_file: os.path.relpath: {os.path.relpath(file_path)}') + 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 = [ @@ -246,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 From 7e88d8fcc21f0df29e8a9e76062cbbf7e5a58911 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 12:17:07 +0200 Subject: [PATCH 052/204] remove monkey patch --- demisto_sdk/commands/common/clients/tests/configs_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demisto_sdk/commands/common/clients/tests/configs_test.py b/demisto_sdk/commands/common/clients/tests/configs_test.py index b8308be041..a64fd55864 100644 --- a/demisto_sdk/commands/common/clients/tests/configs_test.py +++ b/demisto_sdk/commands/common/clients/tests/configs_test.py @@ -19,12 +19,12 @@ def test_init_xsoar_client_config_username_password(): ) -def test_init_xsoar_client_config_no_api_key_and_user_and_password(monkeypatch): +def test_init_xsoar_client_config_no_api_key_and_user_and_password(): with pytest.raises(ValueError): XsoarClientConfig(base_api_url="https://test1.com") -def test_init_xsoar_client_config_no_values(monkeypatch): +def test_init_xsoar_client_config_no_values(): with pytest.raises(ValidationError): XsoarClientConfig() @@ -45,7 +45,7 @@ def test_init_xsoar_saas_client_config_with_api_key_without_auth_id(): XsoarSaasClientConfig(base_api_url="https://test1.com", api_key="test") -def test_init_xsoar_saas_client_config_with_auth_id_without_api_key(monkeypatch): +def test_init_xsoar_saas_client_config_with_auth_id_without_api_key(): with pytest.raises(ValueError): XsoarSaasClientConfig(base_api_url="https://test1.com", auth_id="1") From 24019037abeb3e9e638f97c3d86b757faece27ae Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 12:21:45 +0200 Subject: [PATCH 053/204] if always --- .github/workflows/run_unit_tests.yml | 5 ++++- demisto_sdk/commands/common/clients/tests/configs_test.py | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 99c93f13ea..581c35d21c 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -78,7 +78,9 @@ jobs: echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid + exit $pytest_exit_code - name: Upload artifacts + if: always() uses: actions/upload-artifact@v2 with: name: coverage-${{ matrix.os }}-${{ matrix.python_version }}${{ matrix.group }} @@ -87,7 +89,8 @@ jobs: test-results/junit.xml node_versions_info.json coverage_html_report - - name: Validate if pytest has passed + - name: Print summary of the unit-tests + if: always() run: | if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" diff --git a/demisto_sdk/commands/common/clients/tests/configs_test.py b/demisto_sdk/commands/common/clients/tests/configs_test.py index a64fd55864..c2903749a1 100644 --- a/demisto_sdk/commands/common/clients/tests/configs_test.py +++ b/demisto_sdk/commands/common/clients/tests/configs_test.py @@ -6,7 +6,6 @@ XsoarClientConfig, XsoarSaasClientConfig, ) -from demisto_sdk.commands.common.constants import DEMISTO_KEY def test_init_xsoar_client_config_with_api_key(): From 89fb7ac432d75ed0ae583105811afdbdad06347e Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 13:26:58 +0200 Subject: [PATCH 054/204] remove caplog --- demisto_sdk/commands/common/tests/base_validator_test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/demisto_sdk/commands/common/tests/base_validator_test.py b/demisto_sdk/commands/common/tests/base_validator_test.py index 618d912776..20d3610748 100644 --- a/demisto_sdk/commands/common/tests/base_validator_test.py +++ b/demisto_sdk/commands/common/tests/base_validator_test.py @@ -134,7 +134,7 @@ def test_handle_error_github_annotation( assert captured.out == expected_result -def test_handle_error(caplog): +def test_handle_error(): """ Given - An ignore errors list associated with a file. @@ -172,7 +172,6 @@ def test_handle_error(caplog): assert formatted_error is None assert "path/to/file_name - [BA101]" not in FOUND_FILES_AND_ERRORS assert "path/to/file_name - [BA101]" in FOUND_FILES_AND_IGNORED_ERRORS - assert "path/to/file_name: [BA101] - ignore-file-specific\n" in caplog.text formatted_error = base_validator.handle_error( "Error-message", "ST109", "path/to/file_name" From e46d1916b7d73e7875cfec47b3604206bc7d66b3 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 20:23:13 +0200 Subject: [PATCH 055/204] try print pytest results --- .github/workflows/run_unit_tests.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 581c35d21c..23e2b60347 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -89,6 +89,28 @@ jobs: test-results/junit.xml node_versions_info.json coverage_html_report + - name: Surface failing tests + if: always() + uses: pmeier/pytest-results-action@main + with: + # A list of JUnit XML files, directories containing the former, and wildcard + # patterns to process. + # See @actions/glob for supported patterns. + path: test-results.xml + + # Add a summary of the results at the top of the report + # Default: true + summary: true + + # Select which results should be included in the report. + # Follows the same syntax as + # `pytest -r` + # Default: fEX + display-options: fEX + + # Fail the workflow if no JUnit XML was found. + # Default: true + fail-on-empty: true - name: Print summary of the unit-tests if: always() run: | From fcce1d8010bc886dfeb4d2bea904f578e6376106 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 20:24:21 +0200 Subject: [PATCH 056/204] right junit file --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 23e2b60347..117b15c6a0 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -96,7 +96,7 @@ jobs: # A list of JUnit XML files, directories containing the former, and wildcard # patterns to process. # See @actions/glob for supported patterns. - path: test-results.xml + path: test-results/junit.xml # Add a summary of the results at the top of the report # Default: true From b8b89c2fb940741a05226bd0d3b76b02392e0c69 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 21:02:10 +0200 Subject: [PATCH 057/204] refer to summary during run --- .github/workflows/run_unit_tests.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 117b15c6a0..18e53ca3ee 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -89,7 +89,7 @@ jobs: test-results/junit.xml node_versions_info.json coverage_html_report - - name: Surface failing tests + - name: Print Summary of pytest results if: always() uses: pmeier/pytest-results-action@main with: @@ -111,11 +111,9 @@ jobs: # Fail the workflow if no JUnit XML was found. # Default: true fail-on-empty: true - - name: Print summary of the unit-tests - if: always() - run: | + run: if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE" + echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_number }}?pr=${{ github.event.pull_request.number }}" else echo "All unit-tests have passed" fi From f2d02e54029b722129d4ba66f4d8968670fb0c35 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 21:06:22 +0200 Subject: [PATCH 058/204] check if pytest tests have passed --- .github/workflows/run_unit_tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 18e53ca3ee..711313a844 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -89,7 +89,7 @@ jobs: test-results/junit.xml node_versions_info.json coverage_html_report - - name: Print Summary of pytest results + - name: Print Summary of pytest results in workflow summary if: always() uses: pmeier/pytest-results-action@main with: @@ -111,6 +111,8 @@ jobs: # Fail the workflow if no JUnit XML was found. # Default: true fail-on-empty: true + - name: Check if tests have passed + if: always() run: if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_number }}?pr=${{ github.event.pull_request.number }}" From c35946ae9dfde2b6ca973fa79e25f80150bab289 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 21:11:26 +0200 Subject: [PATCH 059/204] remove continue_on_error --- .github/workflows/run_unit_tests.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 711313a844..132d4b5a1e 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -51,7 +51,6 @@ jobs: run: npm install - name: Run pytest - continue-on-error: true run: | shopt -u globstar source "$(poetry env info --path)/bin/activate" @@ -93,23 +92,9 @@ jobs: if: always() uses: pmeier/pytest-results-action@main with: - # A list of JUnit XML files, directories containing the former, and wildcard - # patterns to process. - # See @actions/glob for supported patterns. path: test-results/junit.xml - - # Add a summary of the results at the top of the report - # Default: true summary: true - - # Select which results should be included in the report. - # Follows the same syntax as - # `pytest -r` - # Default: fEX display-options: fEX - - # Fail the workflow if no JUnit XML was found. - # Default: true fail-on-empty: true - name: Check if tests have passed if: always() From 82f0b8f9def06436b588a52c56381a8178193f32 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 21:13:19 +0200 Subject: [PATCH 060/204] run id --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 132d4b5a1e..beaed70278 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -100,7 +100,7 @@ jobs: if: always() run: if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_number }}?pr=${{ github.event.pull_request.number }}" + echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" else echo "All unit-tests have passed" fi From e7a46bb21f71c810dbae1368313ec4a17e86d847 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 21:14:13 +0200 Subject: [PATCH 061/204] fix syntax issue --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index beaed70278..e5a9b9bbe2 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -98,7 +98,7 @@ jobs: fail-on-empty: true - name: Check if tests have passed if: always() - run: + run: | if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" else From 4927a9619ae6314ca50139b04504df883f45313d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 21:19:39 +0200 Subject: [PATCH 062/204] try to fix test_create_id_set_flow_xpanse --- .../commands/create_id_set/tests/create_id_set_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, From 6acb5089f60668477294516d6a24a17bb536e1ec Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 2 Dec 2023 21:33:29 +0200 Subject: [PATCH 063/204] try to print skipped --- .github/workflows/run_unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index e5a9b9bbe2..ca9fd6fe7f 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -94,7 +94,7 @@ jobs: with: path: test-results/junit.xml summary: true - display-options: fEX + display-options: fsEX fail-on-empty: true - name: Check if tests have passed if: always() From 2258fde371b15e30208bc832ef8fa50a1fe7ec86 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 4 Dec 2023 14:17:26 +0200 Subject: [PATCH 064/204] add pytest-annotations --- poetry.lock | 276 ++++--------------------------------------------- pyproject.toml | 1 + 2 files changed, 23 insertions(+), 254 deletions(-) diff --git a/poetry.lock b/poetry.lock index c334c888f6..568bfe787c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,10 +1,9 @@ -# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "aiohttp" version = "3.8.5" description = "Async http client/server framework (asyncio)" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -113,7 +112,6 @@ speedups = ["Brotli", "aiodns", "cchardet"] name = "aiosignal" version = "1.3.1" description = "aiosignal: a list of registered asynchronous callbacks" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -128,7 +126,6 @@ frozenlist = ">=1.1.0" name = "appnope" version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" -category = "dev" optional = false python-versions = "*" files = [ @@ -140,7 +137,6 @@ files = [ name = "argcomplete" version = "3.0.8" description = "Bash tab completion for argparse" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -155,7 +151,6 @@ test = ["coverage", "mypy", "pexpect", "ruff", "wheel"] name = "asgiref" version = "3.5.2" description = "ASGI specs, helper code, and adapters" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -170,7 +165,6 @@ tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] name = "astor" version = "0.8.1" description = "Read/rewrite/write Python ASTs" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -182,7 +176,6 @@ files = [ name = "astroid" version = "2.9.3" description = "An abstract syntax tree for Python with inference support." -category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -200,7 +193,6 @@ wrapt = ">=1.11,<1.14" name = "asttokens" version = "2.2.1" description = "Annotate AST trees with source code positions" -category = "dev" optional = false python-versions = "*" files = [ @@ -218,7 +210,6 @@ test = ["astroid", "pytest"] name = "async-timeout" version = "4.0.2" description = "Timeout context manager for asyncio programs" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -230,7 +221,6 @@ files = [ name = "attrs" version = "23.1.0" description = "Classes Without Boilerplate" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -249,7 +239,6 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte name = "autopep8" version = "1.7.0" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" -category = "main" optional = false python-versions = "*" files = [ @@ -265,7 +254,6 @@ toml = "*" name = "backcall" version = "0.2.0" description = "Specifications for callback functions passed in to an API" -category = "dev" optional = false python-versions = "*" files = [ @@ -277,7 +265,6 @@ files = [ name = "backports-zoneinfo" version = "0.2.1" description = "Backport of the standard library zoneinfo module" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -306,7 +293,6 @@ tzdata = ["tzdata"] name = "bandit" version = "1.7.5" description = "Security oriented static analyser for python code." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -330,7 +316,6 @@ yaml = ["PyYAML"] name = "bcrypt" version = "4.0.1" description = "Modern password hashing for your software and your servers" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -365,7 +350,6 @@ typecheck = ["mypy"] name = "beautifulsoup4" version = "4.12.2" description = "Screen-scraping library" -category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -384,7 +368,6 @@ lxml = ["lxml"] name = "black" version = "22.12.0" description = "The uncompromising code formatter." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -420,7 +403,6 @@ uvloop = ["uvloop (>=0.15.2)"] name = "blinker" version = "1.4" description = "Fast, simple object-to-object and broadcast signaling" -category = "dev" optional = false python-versions = "*" files = [ @@ -431,7 +413,6 @@ files = [ name = "boto" version = "2.49.0" description = "Amazon Web Services Library" -category = "main" optional = true python-versions = "*" files = [ @@ -443,7 +424,6 @@ files = [ name = "bracex" version = "2.3.post1" description = "Bash style brace expander." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -455,7 +435,6 @@ files = [ name = "brotli" version = "1.0.9" description = "Python bindings for the Brotli compression library" -category = "dev" optional = false python-versions = "*" files = [ @@ -547,7 +526,6 @@ files = [ name = "cachetools" version = "5.3.0" description = "Extensible memoizing collections and decorators" -category = "main" optional = false python-versions = "~=3.7" files = [ @@ -559,7 +537,6 @@ files = [ name = "certifi" version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -571,7 +548,6 @@ files = [ name = "cffi" version = "1.15.1" description = "Foreign Function Interface for Python calling C code." -category = "main" optional = false python-versions = "*" files = [ @@ -648,7 +624,6 @@ pycparser = "*" name = "cfgv" version = "3.3.1" description = "Validate configuration and produce human readable error messages." -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -660,7 +635,6 @@ files = [ name = "chardet" version = "5.1.0" description = "Universal encoding detector for Python 3" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -672,7 +646,6 @@ files = [ name = "charset-normalizer" version = "3.1.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = false python-versions = ">=3.7.0" files = [ @@ -757,7 +730,6 @@ files = [ name = "click" version = "8.1.3" description = "Composable command line interface toolkit" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -772,7 +744,6 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -784,7 +755,6 @@ files = [ name = "coloredlogs" version = "15.0.1" description = "Colored terminal output for Python's logging module" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -802,7 +772,6 @@ cron = ["capturer (>=2.4)"] name = "comm" version = "0.1.3" description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -822,7 +791,6 @@ typing = ["mypy (>=0.990)"] name = "commonmark" version = "0.9.1" description = "Python parser for the CommonMark Markdown spec" -category = "main" optional = false python-versions = "*" files = [ @@ -837,7 +805,6 @@ test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"] name = "configargparse" version = "1.5.3" description = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -853,7 +820,6 @@ yaml = ["PyYAML"] name = "configparser" version = "5.3.0" description = "Updated configparser from stdlib for earlier Pythons." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -869,7 +835,6 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec name = "coverage" version = "7.2.5" description = "Code coverage measurement for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -936,7 +901,6 @@ toml = ["tomli"] name = "crcmod" version = "1.7" description = "CRC Generator" -category = "main" optional = true python-versions = "*" files = [ @@ -947,7 +911,6 @@ files = [ name = "cryptography" version = "36.0.2" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -988,7 +951,6 @@ test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0 name = "dateparser" version = "1.1.8" description = "Date parsing library designed to parse dates from HTML pages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1011,7 +973,6 @@ langdetect = ["langdetect"] name = "debugpy" version = "1.6.7" description = "An implementation of the Debug Adapter Protocol for Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1039,7 +1000,6 @@ files = [ name = "decorator" version = "5.1.1" description = "Decorators for Humans" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1051,7 +1011,6 @@ files = [ name = "demisto-py" version = "3.2.10" description = "A Python library for the Demisto API" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -1064,14 +1023,13 @@ certifi = ">=2017.4.17" python-dateutil = ">=2.5.3" setuptools = ">=21.0.0" six = ">=1.10" -tzlocal = ">=4.0.0,<5.0.0" +tzlocal = "==4.*" urllib3 = ">=1.26.7" [[package]] name = "dictdiffer" version = "0.9.0" description = "Dictdiffer is a library that helps you to diff and patch dictionaries." -category = "main" optional = false python-versions = "*" files = [ @@ -1089,7 +1047,6 @@ tests = ["check-manifest (>=0.42)", "mock (>=1.3.0)", "pytest (==5.4.3)", "pytes name = "dictor" version = "0.1.11" description = "an elegant dictionary and JSON handler" -category = "main" optional = false python-versions = "*" files = [ @@ -1100,7 +1057,6 @@ files = [ name = "distlib" version = "0.3.6" description = "Distribution utilities" -category = "dev" optional = false python-versions = "*" files = [ @@ -1112,7 +1068,6 @@ files = [ name = "docker" version = "5.0.3" description = "A Python library for the Docker Engine API." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1133,7 +1088,6 @@ tls = ["cryptography (>=3.4.7)", "idna (>=2.0.0)", "pyOpenSSL (>=17.5.0)"] name = "docopt" version = "0.6.2" description = "Pythonic argument parser, that will make you smile" -category = "main" optional = false python-versions = "*" files = [ @@ -1144,7 +1098,6 @@ files = [ name = "exceptiongroup" version = "1.1.1" description = "Backport of PEP 654 (exception groups)" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1159,7 +1112,6 @@ test = ["pytest (>=6)"] name = "executing" version = "1.2.0" description = "Get the currently executing AST node of a frame, and other information" -category = "dev" optional = false python-versions = "*" files = [ @@ -1174,7 +1126,6 @@ tests = ["asttokens", "littleutils", "pytest", "rich"] name = "fasteners" version = "0.18" description = "A python package that provides useful locks" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -1186,7 +1137,6 @@ files = [ name = "filelock" version = "3.12.0" description = "A platform independent file lock." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1202,7 +1152,6 @@ testing = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "diff-cover (>=7.5)", "p name = "flask" version = "2.0.3" description = "A simple framework for building complex web applications." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1224,7 +1173,6 @@ dotenv = ["python-dotenv"] name = "flatten-dict" version = "0.4.2" description = "A flexible utility for flattening and unflattening dict-like objects in Python." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1239,7 +1187,6 @@ six = ">=1.12,<2.0" name = "freezegun" version = "1.2.2" description = "Let your Python tests travel through time" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1254,7 +1201,6 @@ python-dateutil = ">=2.7" name = "frozenlist" version = "1.3.3" description = "A list-like structure which implements collections.abc.MutableSequence" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -1338,7 +1284,6 @@ files = [ name = "future" version = "0.18.3" description = "Clean single-source support for Python 3 and 2" -category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -1349,7 +1294,6 @@ files = [ name = "gcs-oauth2-boto-plugin" version = "3.0" description = "Auth plugin allowing use the use of OAuth 2.0 credentials for Google Cloud Storage in the Boto library." -category = "main" optional = true python-versions = "*" files = [ @@ -1373,7 +1317,6 @@ dev = ["freezegun", "mock"] name = "gitdb" version = "4.0.10" description = "Git Object Database" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1388,7 +1331,6 @@ smmap = ">=3.0.1,<6" name = "gitpython" version = "3.1.37" description = "GitPython is a Python library used to interact with Git repositories" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1406,7 +1348,6 @@ test = ["black", "coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mypy", "pre-commit" name = "giturlparse" version = "0.10.0" description = "A Git URL parsing module (supports parsing and rewriting)" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1418,7 +1359,6 @@ files = [ name = "google-api-core" version = "2.11.0" description = "Google API client core library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1443,7 +1383,6 @@ grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0dev)"] name = "google-apitools" version = "0.5.32" description = "client libraries for humans" -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1465,7 +1404,6 @@ testing = ["mock (>=1.0.1)"] name = "google-auth" version = "2.23.4" description = "Google Authentication Library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1491,7 +1429,6 @@ requests = ["requests (>=2.20.0,<3.0.0.dev0)"] name = "google-cloud-core" version = "2.3.2" description = "Google Cloud API client core library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1500,7 +1437,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.6,<2.0.0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.6,<2.0.dev0 || >2.3.0,<3.0.0dev" google-auth = ">=1.25.0,<3.0dev" [package.extras] @@ -1510,7 +1447,6 @@ grpc = ["grpcio (>=1.38.0,<2.0dev)"] name = "google-cloud-secret-manager" version = "2.16.4" description = "Google Cloud Secret Manager API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1519,7 +1455,7 @@ files = [ ] [package.dependencies] -google-api-core = {version = ">=1.34.0,<2.0.0 || >=2.11.0,<3.0.0dev", extras = ["grpc"]} +google-api-core = {version = ">=1.34.0,<2.0.dev0 || >=2.11.dev0,<3.0.0dev", extras = ["grpc"]} grpc-google-iam-v1 = ">=0.12.4,<1.0.0dev" proto-plus = ">=1.22.0,<2.0.0dev" protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" @@ -1528,7 +1464,6 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4 name = "google-cloud-storage" version = "2.13.0" description = "Google Cloud Storage API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1537,7 +1472,7 @@ files = [ ] [package.dependencies] -google-api-core = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev" +google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0dev" google-auth = ">=2.23.3,<3.0dev" google-cloud-core = ">=2.3.0,<3.0dev" google-crc32c = ">=1.0,<2.0dev" @@ -1551,7 +1486,6 @@ protobuf = ["protobuf (<5.0.0dev)"] name = "google-crc32c" version = "1.5.0" description = "A python wrapper of the C library 'Google CRC32C'" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1632,7 +1566,6 @@ testing = ["pytest"] name = "google-reauth" version = "0.1.1" description = "Google Reauth Library" -category = "main" optional = true python-versions = "*" files = [ @@ -1650,7 +1583,6 @@ oauth2client = ["oauth2client (>=2.0.0)"] name = "google-resumable-media" version = "2.6.0" description = "Utilities for Google Media Downloads and Resumable Uploads" -category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -1669,7 +1601,6 @@ requests = ["requests (>=2.18.0,<3.0.0dev)"] name = "googleapis-common-protos" version = "1.59.0" description = "Common protobufs used in Google APIs" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1688,7 +1619,6 @@ grpc = ["grpcio (>=1.44.0,<2.0.0dev)"] name = "grpc-google-iam-v1" version = "0.12.7" description = "IAM API client library" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1705,7 +1635,6 @@ protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4 name = "grpcio" version = "1.59.2" description = "HTTP/2-based RPC framework" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1772,7 +1701,6 @@ protobuf = ["grpcio-tools (>=1.59.2)"] name = "grpcio-status" version = "1.48.2" description = "Status proto mapping for gRPC" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -1789,7 +1717,6 @@ protobuf = ">=3.12.0" name = "gsutil" version = "5.17" description = "A command line tool for interacting with cloud storage services." -category = "main" optional = true python-versions = "!=2.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" files = [ @@ -1814,7 +1741,6 @@ six = ">=1.12.0" name = "h11" version = "0.13.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1826,7 +1752,6 @@ files = [ name = "h2" version = "4.1.0" description = "HTTP/2 State-Machine based protocol implementation" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1842,7 +1767,6 @@ hyperframe = ">=6.0,<7" name = "hpack" version = "4.0.0" description = "Pure-Python HPACK header compression" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1854,7 +1778,6 @@ files = [ name = "httplib2" version = "0.20.4" description = "A comprehensive HTTP client library." -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1869,7 +1792,6 @@ pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0 name = "humanfriendly" version = "10.0" description = "Human friendly output for text interfaces using Python" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -1884,7 +1806,6 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve name = "hyperframe" version = "6.0.1" description = "HTTP/2 framing layer for Python" -category = "dev" optional = false python-versions = ">=3.6.1" files = [ @@ -1896,7 +1817,6 @@ files = [ name = "identify" version = "2.5.24" description = "File identification library for Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1911,7 +1831,6 @@ license = ["ukkonen"] name = "idna" version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1923,7 +1842,6 @@ files = [ name = "imagesize" version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1935,7 +1853,6 @@ files = [ name = "importlib-metadata" version = "6.6.0" description = "Read metadata from Python packages" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1955,7 +1872,6 @@ testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packag name = "importlib-resources" version = "5.12.0" description = "Read resources from Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1974,7 +1890,6 @@ testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-chec name = "inflection" version = "0.5.1" description = "A port of Ruby on Rails inflector to Python" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -1986,7 +1901,6 @@ files = [ name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1998,7 +1912,6 @@ files = [ name = "ipykernel" version = "6.22.0" description = "IPython Kernel for Jupyter" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2012,7 +1925,7 @@ comm = ">=0.1.1" debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" @@ -2032,7 +1945,6 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio" name = "ipython" version = "8.12.1" description = "IPython: Productive Interactive Computing" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2072,7 +1984,6 @@ test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pa name = "isort" version = "5.12.0" description = "A Python utility / library to sort Python imports." -category = "main" optional = false python-versions = ">=3.8.0" files = [ @@ -2090,7 +2001,6 @@ requirements-deprecated-finder = ["pip-api", "pipreqs"] name = "itsdangerous" version = "2.1.2" description = "Safely pass data to untrusted environments and back." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2102,7 +2012,6 @@ files = [ name = "jedi" version = "0.18.2" description = "An autocompletion tool for Python that can be used for text editors." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2122,7 +2031,6 @@ testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2140,7 +2048,6 @@ i18n = ["Babel (>=2.7)"] name = "joblib" version = "1.2.0" description = "Lightweight pipelining with Python functions" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2152,7 +2059,6 @@ files = [ name = "json5" version = "0.9.14" description = "A Python implementation of the JSON5 data format." -category = "main" optional = false python-versions = "*" files = [ @@ -2167,7 +2073,6 @@ dev = ["hypothesis"] name = "jsonschema" version = "4.17.3" description = "An implementation of JSON Schema validation for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2189,7 +2094,6 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- name = "junitparser" version = "3.1.0" description = "Manipulates JUnit/xUnit Result XML files" -category = "main" optional = false python-versions = "*" files = [ @@ -2204,7 +2108,6 @@ future = "*" name = "jupyter-client" version = "8.2.0" description = "Jupyter protocol implementation and client libraries" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2214,7 +2117,7 @@ files = [ [package.dependencies] importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} -jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" tornado = ">=6.2" @@ -2228,7 +2131,6 @@ test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pyt name = "jupyter-core" version = "5.2.0" description = "Jupyter core package. A base package on which Jupyter projects rely." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2249,7 +2151,6 @@ test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] name = "kaitaistruct" version = "0.9" description = "Kaitai Struct declarative parser generator for binary data: runtime library for Python" -category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" files = [ @@ -2260,7 +2161,6 @@ files = [ name = "klara" version = "0.6.3" description = "Automatic test case generation and static analysis library" -category = "main" optional = false python-versions = ">=3.6.2,<4.0" files = [ @@ -2278,7 +2178,6 @@ z3-solver = ">=4.8.12,<5.0.0" name = "lazy-object-proxy" version = "1.9.0" description = "A fast and thorough lazy object proxy." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2324,7 +2223,6 @@ files = [ name = "ldap3" version = "2.9.1" description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library" -category = "dev" optional = false python-versions = "*" files = [ @@ -2339,7 +2237,6 @@ pyasn1 = ">=0.4.6" name = "markupsafe" version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2399,7 +2296,6 @@ files = [ name = "matplotlib-inline" version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2414,7 +2310,6 @@ traitlets = "*" name = "mccabe" version = "0.6.1" description = "McCabe checker, plugin for flake8" -category = "main" optional = false python-versions = "*" files = [ @@ -2426,7 +2321,6 @@ files = [ name = "mergedeep" version = "1.3.4" description = "A deep merge function for 🐍." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -2438,7 +2332,6 @@ files = [ name = "mitmproxy" version = "8.0.0" description = "An interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -2480,7 +2373,6 @@ dev = ["click (>=7.0,<8.1)", "hypothesis (>=5.8,<7)", "parver (>=0.1,<2.0)", "pd name = "mock" version = "4.0.3" description = "Rolling backport of unittest.mock for all Pythons" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2497,7 +2389,6 @@ test = ["pytest (<5.4)", "pytest-cov"] name = "monotonic" version = "1.6" description = "An implementation of time.monotonic() for Python 2 & < 3.3" -category = "main" optional = true python-versions = "*" files = [ @@ -2509,7 +2400,6 @@ files = [ name = "more-itertools" version = "9.1.0" description = "More routines for operating on iterables, beyond itertools" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2521,7 +2411,6 @@ files = [ name = "msgpack" version = "1.0.5" description = "MessagePack serializer" -category = "dev" optional = false python-versions = "*" files = [ @@ -2594,7 +2483,6 @@ files = [ name = "multidict" version = "6.0.4" description = "multidict implementation" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2678,7 +2566,6 @@ files = [ name = "mypy" version = "0.982" description = "Optional static typing for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2722,7 +2609,6 @@ reports = ["lxml"] name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -2734,7 +2620,6 @@ files = [ name = "neo4j" version = "5.14.1" description = "Neo4j Bolt driver for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2753,7 +2638,6 @@ pyarrow = ["pyarrow (>=1.0.0)"] name = "nest-asyncio" version = "1.5.6" description = "Patch asyncio to allow nested event loops" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2765,7 +2649,6 @@ files = [ name = "networkx" version = "2.8.8" description = "Python package for creating and manipulating graphs and networks" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -2784,7 +2667,6 @@ test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] name = "nltk" version = "3.8.1" description = "Natural Language Toolkit" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2810,7 +2692,6 @@ twitter = ["twython"] name = "nodeenv" version = "1.7.0" description = "Node.js virtual environment builder" -category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" files = [ @@ -2825,7 +2706,6 @@ setuptools = "*" name = "oauth2client" version = "4.1.3" description = "OAuth 2.0 client library" -category = "main" optional = true python-versions = "*" files = [ @@ -2844,7 +2724,6 @@ six = ">=1.6.1" name = "ordered-set" version = "4.1.0" description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2859,7 +2738,6 @@ dev = ["black", "mypy", "pytest"] name = "orjson" version = "3.8.11" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -category = "main" optional = false python-versions = ">= 3.7" files = [ @@ -2920,7 +2798,6 @@ files = [ name = "packaging" version = "23.1" description = "Core utilities for Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2932,7 +2809,6 @@ files = [ name = "paramiko" version = "2.12.0" description = "SSH2 protocol library" -category = "main" optional = false python-versions = "*" files = [ @@ -2956,7 +2832,6 @@ invoke = ["invoke (>=1.3)"] name = "parso" version = "0.8.3" description = "A Python Parser" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2972,7 +2847,6 @@ testing = ["docopt", "pytest (<6.0.0)"] name = "passlib" version = "1.7.4" description = "comprehensive password hashing framework supporting over 30 schemes" -category = "dev" optional = false python-versions = "*" files = [ @@ -2990,7 +2864,6 @@ totp = ["cryptography"] name = "pathspec" version = "0.11.1" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3002,7 +2875,6 @@ files = [ name = "pbr" version = "5.11.1" description = "Python Build Reasonableness" -category = "main" optional = false python-versions = ">=2.6" files = [ @@ -3014,7 +2886,6 @@ files = [ name = "pebble" version = "5.0.3" description = "Threading and multiprocessing eye-candy." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3026,7 +2897,6 @@ files = [ name = "pexpect" version = "4.8.0" description = "Pexpect allows easy control of interactive console applications." -category = "dev" optional = false python-versions = "*" files = [ @@ -3041,7 +2911,6 @@ ptyprocess = ">=0.5" name = "pickleshare" version = "0.7.5" description = "Tiny 'shelve'-like database with concurrency support" -category = "dev" optional = false python-versions = "*" files = [ @@ -3053,7 +2922,6 @@ files = [ name = "pkgutil-resolve-name" version = "1.3.10" description = "Resolve a name to an object." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3065,7 +2933,6 @@ files = [ name = "platformdirs" version = "3.5.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3081,7 +2948,6 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest- name = "pluggy" version = "1.0.0" description = "plugin and hook calling mechanisms for python" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3097,7 +2963,6 @@ testing = ["pytest", "pytest-benchmark"] name = "pre-commit" version = "2.21.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3116,7 +2981,6 @@ virtualenv = ">=20.10.0" name = "prettytable" version = "3.7.0" description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3134,7 +2998,6 @@ tests = ["pytest", "pytest-cov", "pytest-lazy-fixture"] name = "prompt-toolkit" version = "3.0.38" description = "Library for building powerful interactive command lines in Python" -category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -3149,7 +3012,6 @@ wcwidth = "*" name = "proto-plus" version = "1.22.3" description = "Beautiful, Pythonic protocol buffers." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3167,7 +3029,6 @@ testing = ["google-api-core[grpc] (>=1.31.5)"] name = "protobuf" version = "3.19.6" description = "Protocol Buffers" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3202,7 +3063,6 @@ files = [ name = "psutil" version = "5.9.5" description = "Cross-platform lib for process and system monitoring in Python." -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3229,7 +3089,6 @@ test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" -category = "dev" optional = false python-versions = "*" files = [ @@ -3241,7 +3100,6 @@ files = [ name = "publicsuffix2" version = "2.20191221" description = "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package." -category = "dev" optional = false python-versions = "*" files = [ @@ -3253,7 +3111,6 @@ files = [ name = "pure-eval" version = "0.2.2" description = "Safely evaluate AST nodes without side effects" -category = "dev" optional = false python-versions = "*" files = [ @@ -3268,7 +3125,6 @@ tests = ["pytest"] name = "pyasn1" version = "0.5.0" description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3280,7 +3136,6 @@ files = [ name = "pyasn1-modules" version = "0.3.0" description = "A collection of ASN.1-based protocols modules" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3295,7 +3150,6 @@ pyasn1 = ">=0.4.6,<0.6.0" name = "pycodestyle" version = "2.10.0" description = "Python style guide checker" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3307,7 +3161,6 @@ files = [ name = "pycparser" version = "2.21" description = "C parser in Python" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -3319,7 +3172,6 @@ files = [ name = "pydantic" version = "1.10.7" description = "Data validation and settings management using python type hints" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3372,7 +3224,6 @@ email = ["email-validator (>=1.0.3)"] name = "pydivert" version = "2.1.0" description = "Python binding to windivert driver" -category = "dev" optional = false python-versions = "*" files = [ @@ -3388,7 +3239,6 @@ test = ["codecov (>=2.0.5)", "hypothesis (>=3.5.3)", "mock (>=1.0.1)", "pytest ( name = "pygments" version = "2.15.1" description = "Pygments is a syntax highlighting package written in Python." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3403,7 +3253,6 @@ plugins = ["importlib-metadata"] name = "pykwalify" version = "1.8.0" description = "Python lib/cli for JSON/YAML schema validation" -category = "main" optional = false python-versions = "*" files = [ @@ -3420,7 +3269,6 @@ python-dateutil = ">=2.8.0" name = "pylint" version = "2.12.2" description = "python code static checker" -category = "main" optional = false python-versions = ">=3.6.2" files = [ @@ -3441,7 +3289,6 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\"" name = "pynacl" version = "1.5.0" description = "Python binding to the Networking and Cryptography (NaCl) library" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3468,7 +3315,6 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] name = "pyopenssl" version = "22.0.0" description = "Python wrapper module around the OpenSSL library" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3487,7 +3333,6 @@ test = ["flaky", "pretend", "pytest (>=3.0.1)"] name = "pyparsing" version = "3.0.9" description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "main" optional = false python-versions = ">=3.6.8" files = [ @@ -3502,7 +3347,6 @@ diagrams = ["jinja2", "railroad-diagrams"] name = "pypdf2" version = "1.28.6" description = "A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files" -category = "main" optional = false python-versions = ">=2.7" files = [ @@ -3514,7 +3358,6 @@ files = [ name = "pyperclip" version = "1.8.2" description = "A cross-platform clipboard module for Python. (Only handles plain text for now.)" -category = "dev" optional = false python-versions = "*" files = [ @@ -3525,7 +3368,6 @@ files = [ name = "pyreadline3" version = "3.4.1" description = "A python implementation of GNU readline." -category = "main" optional = false python-versions = "*" files = [ @@ -3537,7 +3379,6 @@ files = [ name = "pyrsistent" version = "0.19.3" description = "Persistent/Functional/Immutable data structures" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3574,7 +3415,6 @@ files = [ name = "pyspellchecker" version = "0.6.3" description = "Pure python spell checker based on work by Peter Norvig" -category = "main" optional = false python-versions = "*" files = [ @@ -3586,7 +3426,6 @@ files = [ name = "pytest" version = "7.3.1" description = "pytest: simple powerful testing with Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -3609,7 +3448,6 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no name = "pytest-cov" version = "4.0.0" description = "Pytest plugin for measuring coverage." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3628,7 +3466,6 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-datadir-ng" version = "1.1.1" description = "Fixtures for pytest allowing test functions/methods to easily retrieve test resources from the local filesystem." -category = "dev" optional = false python-versions = "*" files = [ @@ -3643,7 +3480,6 @@ pytest = "*" name = "pytest-freezegun" version = "0.4.2" description = "Wrap tests with fixtures in freeze_time" -category = "main" optional = false python-versions = "*" files = [ @@ -3655,11 +3491,24 @@ 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" description = "Thin-wrapper around the mock package for easier use with pytest" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -3677,7 +3526,6 @@ dev = ["pre-commit", "pytest-asyncio", "tox"] 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." -category = "dev" optional = false python-versions = ">=3.7.1,<4.0" files = [ @@ -3692,7 +3540,6 @@ pytest = ">=5,<8" name = "pytest-subprocess" version = "1.5.0" description = "A plugin to fake subprocess for pytest" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3712,7 +3559,6 @@ test = ["Pygments (>=2.0)", "anyio", "coverage", "docutils (>=0.12)", "pytest (> name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ @@ -3727,7 +3573,6 @@ six = ">=1.5" name = "python-dotenv" version = "0.20.0" description = "Read key-value pairs from a .env file and set them as environment variables" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -3742,7 +3587,6 @@ cli = ["click (>=5.0)"] name = "pytz" version = "2023.3" description = "World timezone definitions, modern and historical" -category = "main" optional = false python-versions = "*" files = [ @@ -3754,7 +3598,6 @@ files = [ name = "pytz-deprecation-shim" version = "0.1.0.post0" description = "Shims to make deprecation of pytz easier" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ @@ -3770,7 +3613,6 @@ tzdata = {version = "*", markers = "python_version >= \"3.6\""} name = "pyu2f" version = "0.1.5" description = "U2F host library for interacting with a U2F device over USB." -category = "main" optional = true python-versions = "*" files = [ @@ -3784,7 +3626,6 @@ six = "*" name = "pywin32" version = "227" description = "Python for Window Extensions" -category = "main" optional = false python-versions = "*" files = [ @@ -3806,7 +3647,6 @@ files = [ name = "pyyaml" version = "6.0" description = "YAML parser and emitter for Python" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -3856,7 +3696,6 @@ files = [ name = "pyzmq" version = "25.0.2" description = "Python bindings for 0MQ" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3946,7 +3785,6 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""} name = "regex" version = "2023.5.5" description = "Alternative regular expression module, to replace re." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4044,7 +3882,6 @@ files = [ name = "requests" version = "2.29.0" description = "Python HTTP for Humans." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4066,7 +3903,6 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] name = "requests-mock" version = "1.10.0" description = "Mock out responses from the requests package" -category = "dev" optional = false python-versions = "*" files = [ @@ -4086,7 +3922,6 @@ test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "tes name = "retry-decorator" version = "1.1.1" description = "Retry Decorator" -category = "main" optional = true python-versions = "*" files = [ @@ -4097,7 +3932,6 @@ files = [ name = "rich" version = "12.6.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" -category = "main" optional = false python-versions = ">=3.6.3,<4.0.0" files = [ @@ -4117,7 +3951,6 @@ jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] name = "rsa" version = "4.7.2" description = "Pure-Python RSA implementation" -category = "main" optional = false python-versions = ">=3.5, <4" files = [ @@ -4132,7 +3965,6 @@ pyasn1 = ">=0.1.3" name = "ruamel-yaml" version = "0.17.22" description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" -category = "main" optional = false python-versions = ">=3" files = [ @@ -4151,7 +3983,6 @@ jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] name = "ruamel-yaml-clib" version = "0.2.7" description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -4198,7 +4029,6 @@ files = [ name = "ruff" version = "0.1.2" description = "An extremely fast Python linter, written in Rust." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4225,7 +4055,6 @@ files = [ name = "setuptools" version = "67.7.2" description = "Easily download, build, install, upgrade, and uninstall Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4242,7 +4071,6 @@ testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs ( name = "shellingham" version = "1.5.0.post1" description = "Tool to Detect Surrounding Shell" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4254,7 +4082,6 @@ files = [ name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4266,7 +4093,6 @@ files = [ name = "slack-sdk" version = "3.21.3" description = "The Slack API Platform SDK for Python" -category = "main" optional = false python-versions = ">=3.6.0" files = [ @@ -4282,7 +4108,6 @@ testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "We name = "smmap" version = "5.0.0" description = "A pure Python implementation of a sliding window memory map manager" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4294,7 +4119,6 @@ files = [ name = "sortedcontainers" version = "2.4.0" description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" -category = "dev" optional = false python-versions = "*" files = [ @@ -4306,7 +4130,6 @@ files = [ name = "soupsieve" version = "2.4.1" description = "A modern CSS selector implementation for Beautiful Soup." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4318,7 +4141,6 @@ files = [ name = "stack-data" version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" -category = "dev" optional = false python-versions = "*" files = [ @@ -4338,7 +4160,6 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] name = "stevedore" version = "5.0.0" description = "Manage dynamic plugins for Python applications" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -4353,7 +4174,6 @@ pbr = ">=2.0.0,<2.1.0 || >2.1.0" name = "tabulate" version = "0.9.0" description = "Pretty-print tabular data" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4368,7 +4188,6 @@ widechars = ["wcwidth"] name = "tenacity" version = "8.2.3" description = "Retry code until it succeeds" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4383,7 +4202,6 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"] name = "toml" version = "0.10.2" description = "Python Library for Tom's Obvious, Minimal Language" -category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -4395,7 +4213,6 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4407,7 +4224,6 @@ files = [ name = "tornado" version = "6.3.1" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "dev" optional = false python-versions = ">= 3.8" files = [ @@ -4428,7 +4244,6 @@ files = [ name = "tqdm" version = "4.65.0" description = "Fast, Extensible Progress Meter" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4449,7 +4264,6 @@ telegram = ["requests"] name = "traitlets" version = "5.9.0" description = "Traitlets Python configuration system" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4465,7 +4279,6 @@ test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] name = "typed-ast" version = "1.5.4" description = "a fork of Python 2 and 3 ast modules with type comment support" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4499,7 +4312,6 @@ files = [ name = "typer" version = "0.7.0" description = "Typer, build great CLIs. Easy to code. Based on Python type hints." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -4523,7 +4335,6 @@ test = ["black (>=22.3.0,<23.0.0)", "coverage (>=6.2,<7.0)", "isort (>=5.0.6,<6. name = "types-chardet" version = "5.0.4.5" description = "Typing stubs for chardet" -category = "main" optional = false python-versions = "*" files = [ @@ -4535,7 +4346,6 @@ files = [ name = "types-cryptography" version = "3.3.23.2" description = "Typing stubs for cryptography" -category = "main" optional = false python-versions = "*" files = [ @@ -4547,7 +4357,6 @@ files = [ name = "types-dateparser" version = "1.1.4.9" description = "Typing stubs for dateparser" -category = "main" optional = false python-versions = "*" files = [ @@ -4559,7 +4368,6 @@ files = [ name = "types-decorator" version = "5.1.8.3" description = "Typing stubs for decorator" -category = "main" optional = false python-versions = "*" files = [ @@ -4571,7 +4379,6 @@ files = [ name = "types-emoji" version = "2.1.0.3" description = "Typing stubs for emoji" -category = "main" optional = false python-versions = "*" files = [ @@ -4583,7 +4390,6 @@ files = [ name = "types-filelock" version = "3.2.7" description = "Typing stubs for filelock" -category = "main" optional = false python-versions = "*" files = [ @@ -4595,7 +4401,6 @@ files = [ name = "types-futures" version = "3.3.8" description = "Typing stubs for futures" -category = "main" optional = false python-versions = "*" files = [ @@ -4607,7 +4412,6 @@ files = [ name = "types-ipaddress" version = "1.0.8" description = "Typing stubs for ipaddress" -category = "main" optional = false python-versions = "*" files = [ @@ -4619,7 +4423,6 @@ files = [ name = "types-markdown" version = "3.4.2.8" description = "Typing stubs for Markdown" -category = "main" optional = false python-versions = "*" files = [ @@ -4631,7 +4434,6 @@ files = [ name = "types-mock" version = "4.0.15.2" description = "Typing stubs for mock" -category = "main" optional = false python-versions = "*" files = [ @@ -4643,7 +4445,6 @@ files = [ name = "types-paramiko" version = "2.12.0.1" description = "Typing stubs for paramiko" -category = "main" optional = false python-versions = "*" files = [ @@ -4658,7 +4459,6 @@ types-cryptography = "*" name = "types-pkg-resources" version = "0.1.3" description = "Typing stubs for pkg_resources" -category = "main" optional = false python-versions = "*" files = [ @@ -4670,7 +4470,6 @@ files = [ name = "types-protobuf" version = "4.24.0.4" description = "Typing stubs for protobuf" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4682,7 +4481,6 @@ files = [ name = "types-pymysql" version = "1.0.19.6" description = "Typing stubs for PyMySQL" -category = "main" optional = false python-versions = "*" files = [ @@ -4694,7 +4492,6 @@ files = [ name = "types-python-dateutil" version = "2.8.19.12" description = "Typing stubs for python-dateutil" -category = "main" optional = false python-versions = "*" files = [ @@ -4706,7 +4503,6 @@ files = [ name = "types-pytz" version = "2022.7.1.2" description = "Typing stubs for pytz" -category = "main" optional = false python-versions = "*" files = [ @@ -4718,7 +4514,6 @@ files = [ name = "types-pyvmomi" version = "8.0.0.1" description = "Typing stubs for pyvmomi" -category = "main" optional = false python-versions = "*" files = [ @@ -4730,7 +4525,6 @@ files = [ name = "types-pyyaml" version = "6.0.12.9" description = "Typing stubs for PyYAML" -category = "main" optional = false python-versions = "*" files = [ @@ -4742,7 +4536,6 @@ files = [ name = "types-requests" version = "2.28.11" description = "Typing stubs for requests" -category = "main" optional = false python-versions = "*" files = [ @@ -4757,7 +4550,6 @@ types-urllib3 = "<1.27" name = "types-setuptools" version = "67.7.0.1" description = "Typing stubs for setuptools" -category = "main" optional = false python-versions = "*" files = [ @@ -4769,7 +4561,6 @@ files = [ name = "types-six" version = "1.16.21.8" description = "Typing stubs for six" -category = "main" optional = false python-versions = "*" files = [ @@ -4781,7 +4572,6 @@ files = [ name = "types-tabulate" version = "0.9.0.2" description = "Typing stubs for tabulate" -category = "main" optional = false python-versions = "*" files = [ @@ -4793,7 +4583,6 @@ files = [ name = "types-toml" version = "0.10.8.7" description = "Typing stubs for toml" -category = "main" optional = false python-versions = "*" files = [ @@ -4805,7 +4594,6 @@ files = [ name = "types-ujson" version = "5.7.0.5" description = "Typing stubs for ujson" -category = "main" optional = false python-versions = "*" files = [ @@ -4817,7 +4605,6 @@ files = [ name = "types-urllib3" version = "1.26.25.12" description = "Typing stubs for urllib3" -category = "main" optional = false python-versions = "*" files = [ @@ -4829,7 +4616,6 @@ files = [ name = "typing-extensions" version = "4.5.0" description = "Backported and Experimental Type Hints for Python 3.7+" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4841,7 +4627,6 @@ files = [ name = "tzdata" version = "2023.3" description = "Provider of IANA time zone data" -category = "main" optional = false python-versions = ">=2" files = [ @@ -4853,7 +4638,6 @@ files = [ name = "tzlocal" version = "4.3" description = "tzinfo object for the local timezone" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4873,7 +4657,6 @@ devenv = ["black", "check-manifest", "flake8", "pyroma", "pytest (>=4.3)", "pyte name = "ujson" version = "5.7.0" description = "Ultra fast JSON encoder and decoder for Python" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -4948,7 +4731,6 @@ files = [ name = "urllib3" version = "1.26.15" description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ @@ -4965,7 +4747,6 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] name = "urwid" version = "2.1.2" description = "A full-featured console (xterm et al.) user interface library" -category = "dev" optional = false python-versions = "*" files = [ @@ -4976,7 +4757,6 @@ files = [ name = "virtualenv" version = "20.23.0" description = "Virtual Python Environment builder" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -4997,7 +4777,6 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.3)", "coverage-enable-subprocess name = "vulture" version = "2.7" description = "Find dead code" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -5012,7 +4791,6 @@ toml = "*" name = "wcmatch" version = "8.4.1" description = "Wildcard/glob file name matcher." -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -5027,7 +4805,6 @@ bracex = ">=2.1.1" name = "wcwidth" version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" -category = "main" optional = false python-versions = "*" files = [ @@ -5039,7 +4816,6 @@ files = [ name = "websocket-client" version = "1.5.1" description = "WebSocket client for Python with low level API options" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -5056,7 +4832,6 @@ test = ["websockets"] name = "werkzeug" version = "2.3.3" description = "The comprehensive WSGI web application library." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -5074,7 +4849,6 @@ watchdog = ["watchdog (>=2.3)"] name = "wrapt" version = "1.13.3" description = "Module for decorators, wrappers and monkey patching." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ @@ -5135,7 +4909,6 @@ files = [ name = "wsproto" version = "1.1.0" description = "WebSockets state-machine based protocol implementation" -category = "dev" optional = false python-versions = ">=3.7.0" files = [ @@ -5150,7 +4923,6 @@ h11 = ">=0.9.0,<1" name = "yamlordereddictloader" version = "0.4.0" description = "YAML loader and dump for PyYAML allowing to keep keys order." -category = "main" optional = false python-versions = "*" files = [ @@ -5164,7 +4936,6 @@ pyyaml = "*" name = "yarl" version = "1.9.2" description = "Yet another URL library" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -5252,7 +5023,6 @@ multidict = ">=4.0" name = "z3-solver" version = "4.12.1.0" description = "an efficient SMT solver library" -category = "main" optional = false python-versions = "*" files = [ @@ -5268,7 +5038,6 @@ files = [ name = "zipp" version = "3.15.0" description = "Backport of pathlib-compatible object wrapper for zip files" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -5284,7 +5053,6 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more name = "zstandard" version = "0.17.0" description = "Zstandard bindings for Python" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -5346,4 +5114,4 @@ build = ["gsutil"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "a4797c7b4a34361d1fa1968c4412b3ae4b5aebe941d1af790ecc716719d5eb08" +content-hash = "38d3b14225288b107e94c484eda67843089615ce5468376bb36efa0210bc3c1b" diff --git a/pyproject.toml b/pyproject.toml index ed19d9e7c6..93d187da9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -123,6 +123,7 @@ 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"] From f77213ffea8ae91f637761e0399dd32b41f3bef5 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 8 Dec 2023 10:08:23 +0200 Subject: [PATCH 065/204] try --- .../parsers/integration_script.py | 6 +- .../commands/upload/tests/uploader_test.py | 80 +++++++++---------- 2 files changed, 45 insertions(+), 41 deletions(-) diff --git a/demisto_sdk/commands/content_graph/parsers/integration_script.py b/demisto_sdk/commands/content_graph/parsers/integration_script.py index c1201cb13b..e8ca371921 100644 --- a/demisto_sdk/commands/content_graph/parsers/integration_script.py +++ b/demisto_sdk/commands/content_graph/parsers/integration_script.py @@ -1,3 +1,4 @@ +import logging from abc import abstractmethod from functools import cached_property from pathlib import Path @@ -60,7 +61,10 @@ 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") + from demisto_sdk.commands.common.tools import get_file + code = get_file(str(self.path).replace("yml", "py")) + if not code: + raise ValueError("Integration code is not available") api_modules = IntegrationScriptUnifier.check_api_module_imports(code).values() for api_module in api_modules: self.add_relationship( diff --git a/demisto_sdk/commands/upload/tests/uploader_test.py b/demisto_sdk/commands/upload/tests/uploader_test.py index ed549e9d06..caf8cf2829 100644 --- a/demisto_sdk/commands/upload/tests/uploader_test.py +++ b/demisto_sdk/commands/upload/tests/uploader_test.py @@ -160,46 +160,46 @@ def test_upload_folder( Integration, "demisto_sdk/tests/test_files/content_repo_example/Integrations/Securonix/Securonix.py", ), - ( - Script, - "demisto_sdk/tests/test_files/Packs/DummyPack/Scripts/DummyScriptUnified.yml", - ), - ( - Playbook, - "demisto_sdk/tests/test_files/Packs/CortexXDR/Playbooks/Cortex_XDR_Incident_Handling.yml", - ), - ( - Widget, - "demisto_sdk/tests/test_files/Packs/DummyPack/Widgets/widget-ActiveIncidentsByRole.json", - ), - ( - Dashboard, - "demisto_sdk/tests/test_files/Packs/DummyPack/Dashboards/upload_test_dashboard.json", - ), - ( - Layout, - "demisto_sdk/tests/test_files/Packs/DummyPack/Layouts/layoutscontainer-test.json", - ), - ( - IncidentType, - "demisto_sdk/tests/test_files/Packs/DummyPack/IncidentTypes/incidenttype-Hello_World_Alert.json", - ), - ( - Mapper, - "demisto_sdk/tests/test_files/Packs/DummyPack/Classifiers/classifier-aws_sns_test_classifier.json", - ), - ( - IncidentField, - "demisto_sdk/tests/test_files/Packs/CortexXDR/IncidentFields/XDR_Alert_Count.json", - ), - ( - IndicatorField, - "demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorFields/dns.json", - ), - ( - IndicatorType, - "demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorTypes/SampleIndicatorType.json", - ), + # ( + # Script, + # "demisto_sdk/tests/test_files/Packs/DummyPack/Scripts/DummyScriptUnified.yml", + # ), + # ( + # Playbook, + # "demisto_sdk/tests/test_files/Packs/CortexXDR/Playbooks/Cortex_XDR_Incident_Handling.yml", + # ), + # ( + # Widget, + # "demisto_sdk/tests/test_files/Packs/DummyPack/Widgets/widget-ActiveIncidentsByRole.json", + # ), + # ( + # Dashboard, + # "demisto_sdk/tests/test_files/Packs/DummyPack/Dashboards/upload_test_dashboard.json", + # ), + # ( + # Layout, + # "demisto_sdk/tests/test_files/Packs/DummyPack/Layouts/layoutscontainer-test.json", + # ), + # ( + # IncidentType, + # "demisto_sdk/tests/test_files/Packs/DummyPack/IncidentTypes/incidenttype-Hello_World_Alert.json", + # ), + # ( + # Mapper, + # "demisto_sdk/tests/test_files/Packs/DummyPack/Classifiers/classifier-aws_sns_test_classifier.json", + # ), + # ( + # IncidentField, + # "demisto_sdk/tests/test_files/Packs/CortexXDR/IncidentFields/XDR_Alert_Count.json", + # ), + # ( + # IndicatorField, + # "demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorFields/dns.json", + # ), + # ( + # IndicatorType, + # "demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorTypes/SampleIndicatorType.json", + # ), ], ) def test_upload_single_positive(mocker, path: str, content_class: ContentItem): From b74192fb6bf9c29feafab73144736c21205b7f1c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 8 Dec 2023 10:15:34 +0200 Subject: [PATCH 066/204] bla --- .../commands/content_graph/parsers/integration_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demisto_sdk/commands/content_graph/parsers/integration_script.py b/demisto_sdk/commands/content_graph/parsers/integration_script.py index e8ca371921..b394b202b1 100644 --- a/demisto_sdk/commands/content_graph/parsers/integration_script.py +++ b/demisto_sdk/commands/content_graph/parsers/integration_script.py @@ -62,7 +62,7 @@ def connect_to_api_modules(self) -> None: code = self.code if not code: from demisto_sdk.commands.common.tools import get_file - code = get_file(str(self.path).replace("yml", "py")) + code = get_file(str(self.path).replace("yml", "py"), return_content=True) if not code: raise ValueError("Integration code is not available") api_modules = IntegrationScriptUnifier.check_api_module_imports(code).values() From 96682d699429b38aff73afd4da0f252f60d72053 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 8 Dec 2023 14:18:45 +0200 Subject: [PATCH 067/204] try now --- .github/workflows/run_unit_tests.yml | 2 +- .../commands/content_graph/parsers/integration_script.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index ca9fd6fe7f..e62a53b01a 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -52,7 +52,7 @@ jobs: - name: Run pytest run: | - shopt -u globstar + # shopt -u globstar source "$(poetry env info --path)/bin/activate" TEST_FILES=$(find . -type f -name "*_test.py") diff --git a/demisto_sdk/commands/content_graph/parsers/integration_script.py b/demisto_sdk/commands/content_graph/parsers/integration_script.py index b394b202b1..5fd081e48e 100644 --- a/demisto_sdk/commands/content_graph/parsers/integration_script.py +++ b/demisto_sdk/commands/content_graph/parsers/integration_script.py @@ -61,10 +61,10 @@ def connect_to_api_modules(self) -> None: """Creates IMPORTS relationships with the API modules used in the integration.""" code = self.code if not code: - from demisto_sdk.commands.common.tools import get_file - code = get_file(str(self.path).replace("yml", "py"), return_content=True) - if not code: - raise ValueError("Integration code is not available") + # from demisto_sdk.commands.common.tools import get_file + # code = get_file(str(self.path).replace("yml", "py"), return_content=True) + # if not code: + raise ValueError("Integration code is not available") api_modules = IntegrationScriptUnifier.check_api_module_imports(code).values() for api_module in api_modules: self.add_relationship( From 8eb07fdd13be24ba5b73cef531e109f2ae0b6b1f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 8 Dec 2023 14:46:47 +0200 Subject: [PATCH 068/204] test --- .../tests/objects/pack_objects/pack_test.py | 2 +- .../parsers/integration_script.py | 7 +- .../commands/upload/tests/uploader_test.py | 80 +++++++++---------- 3 files changed, 44 insertions(+), 45 deletions(-) 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..8c6ece1afb 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 @@ -33,8 +33,8 @@ ) from demisto_sdk.commands.common.tools import src_root from TestSuite.test_tools import str_in_call_args_list +from demisto_sdk.commands.common.logger import logger -logger = logging.getLogger("demisto-sdk") TEST_DATA = src_root() / "tests" / "test_files" TEST_CONTENT_REPO = TEST_DATA / "content_slim" diff --git a/demisto_sdk/commands/content_graph/parsers/integration_script.py b/demisto_sdk/commands/content_graph/parsers/integration_script.py index 5fd081e48e..117a095447 100644 --- a/demisto_sdk/commands/content_graph/parsers/integration_script.py +++ b/demisto_sdk/commands/content_graph/parsers/integration_script.py @@ -61,10 +61,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: - # from demisto_sdk.commands.common.tools import get_file - # code = get_file(str(self.path).replace("yml", "py"), return_content=True) - # 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/upload/tests/uploader_test.py b/demisto_sdk/commands/upload/tests/uploader_test.py index caf8cf2829..ed549e9d06 100644 --- a/demisto_sdk/commands/upload/tests/uploader_test.py +++ b/demisto_sdk/commands/upload/tests/uploader_test.py @@ -160,46 +160,46 @@ def test_upload_folder( Integration, "demisto_sdk/tests/test_files/content_repo_example/Integrations/Securonix/Securonix.py", ), - # ( - # Script, - # "demisto_sdk/tests/test_files/Packs/DummyPack/Scripts/DummyScriptUnified.yml", - # ), - # ( - # Playbook, - # "demisto_sdk/tests/test_files/Packs/CortexXDR/Playbooks/Cortex_XDR_Incident_Handling.yml", - # ), - # ( - # Widget, - # "demisto_sdk/tests/test_files/Packs/DummyPack/Widgets/widget-ActiveIncidentsByRole.json", - # ), - # ( - # Dashboard, - # "demisto_sdk/tests/test_files/Packs/DummyPack/Dashboards/upload_test_dashboard.json", - # ), - # ( - # Layout, - # "demisto_sdk/tests/test_files/Packs/DummyPack/Layouts/layoutscontainer-test.json", - # ), - # ( - # IncidentType, - # "demisto_sdk/tests/test_files/Packs/DummyPack/IncidentTypes/incidenttype-Hello_World_Alert.json", - # ), - # ( - # Mapper, - # "demisto_sdk/tests/test_files/Packs/DummyPack/Classifiers/classifier-aws_sns_test_classifier.json", - # ), - # ( - # IncidentField, - # "demisto_sdk/tests/test_files/Packs/CortexXDR/IncidentFields/XDR_Alert_Count.json", - # ), - # ( - # IndicatorField, - # "demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorFields/dns.json", - # ), - # ( - # IndicatorType, - # "demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorTypes/SampleIndicatorType.json", - # ), + ( + Script, + "demisto_sdk/tests/test_files/Packs/DummyPack/Scripts/DummyScriptUnified.yml", + ), + ( + Playbook, + "demisto_sdk/tests/test_files/Packs/CortexXDR/Playbooks/Cortex_XDR_Incident_Handling.yml", + ), + ( + Widget, + "demisto_sdk/tests/test_files/Packs/DummyPack/Widgets/widget-ActiveIncidentsByRole.json", + ), + ( + Dashboard, + "demisto_sdk/tests/test_files/Packs/DummyPack/Dashboards/upload_test_dashboard.json", + ), + ( + Layout, + "demisto_sdk/tests/test_files/Packs/DummyPack/Layouts/layoutscontainer-test.json", + ), + ( + IncidentType, + "demisto_sdk/tests/test_files/Packs/DummyPack/IncidentTypes/incidenttype-Hello_World_Alert.json", + ), + ( + Mapper, + "demisto_sdk/tests/test_files/Packs/DummyPack/Classifiers/classifier-aws_sns_test_classifier.json", + ), + ( + IncidentField, + "demisto_sdk/tests/test_files/Packs/CortexXDR/IncidentFields/XDR_Alert_Count.json", + ), + ( + IndicatorField, + "demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorFields/dns.json", + ), + ( + IndicatorType, + "demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorTypes/SampleIndicatorType.json", + ), ], ) def test_upload_single_positive(mocker, path: str, content_class: ContentItem): From cca16410f36bab334570848369a7d617257ca01f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 8 Dec 2023 17:00:00 +0200 Subject: [PATCH 069/204] give it a shot --- .github/workflows/run_unit_tests.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index e62a53b01a..13940bc5af 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -52,16 +52,9 @@ jobs: - name: Run pytest run: | - # shopt -u globstar source "$(poetry env info --path)/bin/activate" - - TEST_FILES=$(find . -type f -name "*_test.py") - # filter out files which are in .venv directory - TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*\.venv\S*\.py//g') - TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/init\/templates\S*\.py//g') - TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/tests\/integration_tests\S*\.py//g') - TEST_FILES=$(echo "$TEST_FILES" | sed -E 's/\S*demisto_sdk\/commands\/content_graph\/tests\S*\.py//g') - + shopt -u globstar + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json # Due to race conditions in the tests bringing up and down the node server, have the server available @@ -73,7 +66,7 @@ jobs: # poetry run pytest $TEST_FILES --store-durations mkdir test-results - poetry run pytest $TEST_FILES -v --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph/tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From fa3ec6efc827c483237e099d0f5028096a6743d8 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 8 Dec 2023 17:20:44 +0200 Subject: [PATCH 070/204] try without shopt -u globstar --- .github/workflows/run_unit_tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 13940bc5af..6090e8c93c 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -53,7 +53,7 @@ jobs: - name: Run pytest run: | source "$(poetry env info --path)/bin/activate" - shopt -u globstar + # shopt -u globstar echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json @@ -62,9 +62,7 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - echo "test-files are: $TEST_FILES" - - # poetry run pytest $TEST_FILES --store-durations + # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph/tests} --store-durations mkdir test-results poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph/tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV From a1d46c0f97f9b8d2e8a1cec647760f567c352449 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 8 Dec 2023 17:51:39 +0200 Subject: [PATCH 071/204] add integration-tests --- .github/workflows/run_unit_tests.yml | 75 +++++++++++++++++++++++++++- 1 file changed, 74 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 6090e8c93c..c81b5919ea 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -14,7 +14,7 @@ concurrency: jobs: - tests: + unit-tests: name: Unit Tests / ${{ matrix.python-version }} (${{ matrix.group }}) runs-on: ubuntu-latest strategy: @@ -96,3 +96,76 @@ jobs: echo "All unit-tests have passed" fi exit $PYTEST_EXIT_CODE + + integration-tests: + name: Integration Tests / ${{ matrix.python-version }} (${{ matrix.group }}) + 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: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Setup Poetry + run: | + sudo curl -sSL https://install.python-poetry.org | python3 - + poetry --version + poetry check --lock + poetry install + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '14' + + - name: Install npm + run: npm install + + - name: Run pytest + 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. + + mkdir integration-test-results + poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html --junitxml=integration-test-results/junit.xml || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + exit $pytest_exit_code + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v2 + with: + name: coverage-${{ matrix.os }}-${{ matrix.python_version }} + path: | + .test_durations + integration-test-results/junit.xml + coverage_html_report + - name: Print Summary of pytest results in workflow summary + if: always() + uses: pmeier/pytest-results-action@main + with: + path: integration-test-results/junit.xml + summary: true + display-options: fsEX + fail-on-empty: true + - name: Check if tests have passed + if: always() + run: | + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then + echo "There are integration-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + else + echo "All unit-tests have passed" + fi + exit $PYTEST_EXIT_CODE \ No newline at end of file From cf9d933a00913b566479007434e96633c7a865ca Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 18:21:18 +0200 Subject: [PATCH 072/204] integration-tests-2 --- .github/workflows/run_unit_tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index c81b5919ea..d45899a2b9 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -93,7 +93,7 @@ jobs: if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" else - echo "All unit-tests have passed" + echo "All unit-tests have passed, congratulations!" fi exit $PYTEST_EXIT_CODE @@ -135,8 +135,7 @@ jobs: 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. + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json mkdir integration-test-results poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html --junitxml=integration-test-results/junit.xml || pytest_exit_code=$? @@ -151,6 +150,7 @@ jobs: path: | .test_durations integration-test-results/junit.xml + node_versions_info.json coverage_html_report - name: Print Summary of pytest results in workflow summary if: always() @@ -166,6 +166,6 @@ jobs: if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then echo "There are integration-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" else - echo "All unit-tests have passed" + echo "All integration-tests have passed, congratulations!" fi exit $PYTEST_EXIT_CODE \ No newline at end of file From c469ae948f03c0684f6dba19d6b975f64e93c194 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 18:24:54 +0200 Subject: [PATCH 073/204] CI --- .github/workflows/{run_unit_tests.yml => main.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{run_unit_tests.yml => main.yml} (99%) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/main.yml similarity index 99% rename from .github/workflows/run_unit_tests.yml rename to .github/workflows/main.yml index d45899a2b9..eeb6ab2d4e 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: General +name: CI on: push: From 82765153624e09fc5ca71cbacc5a9522ff676f36 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 18:28:58 +0200 Subject: [PATCH 074/204] try coverage report --- .github/workflows/main.yml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eeb6ab2d4e..fdd87f0c0d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -79,6 +79,7 @@ jobs: test-results/junit.xml node_versions_info.json coverage_html_report + .coverage - name: Print Summary of pytest results in workflow summary if: always() uses: pmeier/pytest-results-action@main @@ -152,6 +153,7 @@ jobs: integration-test-results/junit.xml node_versions_info.json coverage_html_report + .coverage - name: Print Summary of pytest results in workflow summary if: always() uses: pmeier/pytest-results-action@main @@ -168,4 +170,24 @@ jobs: else echo "All integration-tests have passed, congratulations!" fi - exit $PYTEST_EXIT_CODE \ No newline at end of file + exit $PYTEST_EXIT_CODE + + coverage: + needs: [unit-tests, integration-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 + # Downloads coverage1, coverage2, etc. + uses: actions/download-artifact@v2 + - name: Run coverage + run: | + coverage combine coverage-Ubuntu-3.10/.coverage* + coverage report + coverage xml + - name: Coveralls + uses: coverallsapp/github-action@v2 \ No newline at end of file From 872b19b580fa00add00eb13900fa38ffb0cbc45f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 18:53:58 +0200 Subject: [PATCH 075/204] update artifact names --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fdd87f0c0d..9eb454c0b7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -73,7 +73,7 @@ jobs: if: always() uses: actions/upload-artifact@v2 with: - name: coverage-${{ matrix.os }}-${{ matrix.python_version }}${{ matrix.group }} + name: unit-tests-artifacts-${{ matrix.python_version }}-${{ matrix.group }} path: | .test_durations test-results/junit.xml @@ -99,7 +99,7 @@ jobs: exit $PYTEST_EXIT_CODE integration-tests: - name: Integration Tests / ${{ matrix.python-version }} (${{ matrix.group }}) + name: Integration Tests / ${{ matrix.python-version }} runs-on: ubuntu-latest strategy: matrix: @@ -147,7 +147,7 @@ jobs: if: always() uses: actions/upload-artifact@v2 with: - name: coverage-${{ matrix.os }}-${{ matrix.python_version }} + name: integration-tests-artifacts-${{ matrix.python_version }} path: | .test_durations integration-test-results/junit.xml @@ -186,6 +186,7 @@ jobs: uses: actions/download-artifact@v2 - name: Run coverage run: | + pip install coverage coverage combine coverage-Ubuntu-3.10/.coverage* coverage report coverage xml From 98ac6ed535882d5bb06ae09a90d9f81c774a2c0f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 18:54:47 +0200 Subject: [PATCH 076/204] coverage combine --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9eb454c0b7..373163bfb2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -187,7 +187,7 @@ jobs: - name: Run coverage run: | pip install coverage - coverage combine coverage-Ubuntu-3.10/.coverage* + coverage combine coverage report coverage xml - name: Coveralls From 08365c3b4b65ba8bd985a01eea056f91290c3ca8 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 20:29:35 +0200 Subject: [PATCH 077/204] fix artifacts --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 373163bfb2..3b47c2f90d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -73,7 +73,7 @@ jobs: if: always() uses: actions/upload-artifact@v2 with: - name: unit-tests-artifacts-${{ matrix.python_version }}-${{ matrix.group }} + name: unit-tests-artifacts-${{ matrix.python-version }}-${{ matrix.group }} path: | .test_durations test-results/junit.xml @@ -147,7 +147,7 @@ jobs: if: always() uses: actions/upload-artifact@v2 with: - name: integration-tests-artifacts-${{ matrix.python_version }} + name: integration-tests-artifacts-${{ matrix.python-version }} path: | .test_durations integration-test-results/junit.xml From 31b4c8e8bec2c20215f43e8b7abc0dd54d336253 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 20:38:07 +0200 Subject: [PATCH 078/204] try without coverage --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3b47c2f90d..4af44a4e25 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -187,8 +187,8 @@ jobs: - name: Run coverage run: | pip install coverage - coverage combine - coverage report - coverage xml + # coverage combine coverage_html_report + # coverage report + # coverage xml - name: Coveralls uses: coverallsapp/github-action@v2 \ No newline at end of file From a115d0f3e5b0601eb34d07923fae9deb4eed226f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 21:32:04 +0200 Subject: [PATCH 079/204] artifacts name add group string --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4af44a4e25..75f280fd83 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -73,7 +73,7 @@ jobs: if: always() uses: actions/upload-artifact@v2 with: - name: unit-tests-artifacts-${{ matrix.python-version }}-${{ matrix.group }} + name: unit-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} path: | .test_durations test-results/junit.xml From 2e5482eb3c9f2a61479a5735d7840e43cd8e258a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 21:33:48 +0200 Subject: [PATCH 080/204] update node version --- .github/workflows/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 75f280fd83..0a5ed44d46 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,6 +13,10 @@ concurrency: cancel-in-progress: ${{ github.event_name == 'pull_request' }} +env: + NODE_VERSION: 20 + + jobs: unit-tests: name: Unit Tests / ${{ matrix.python-version }} (${{ matrix.group }}) @@ -45,7 +49,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: '14' + node-version: $NODE_VERSION - name: Install npm run: npm install @@ -127,7 +131,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: '14' + node-version: $NODE_VERSION - name: Install npm run: npm install From ca700480bd5511004534f5ce141c4016e25c29fc Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 21:38:27 +0200 Subject: [PATCH 081/204] coverage all .coverage files --- .github/workflows/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0a5ed44d46..6619de74f8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -186,13 +186,12 @@ jobs: with: python-version: "3.10" - name: Download all artifacts - # Downloads coverage1, coverage2, etc. uses: actions/download-artifact@v2 - name: Run coverage run: | pip install coverage - # coverage combine coverage_html_report - # coverage report - # coverage xml + coverage combine **/.coverage + coverage report + coverage xml - name: Coveralls uses: coverallsapp/github-action@v2 \ No newline at end of file From 78ece71e723f695b0f5ef04dab989642063f42f5 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 9 Dec 2023 21:53:01 +0200 Subject: [PATCH 082/204] node version 18 --- .github/workflows/main.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6619de74f8..f8f778ae2b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,10 +13,6 @@ concurrency: cancel-in-progress: ${{ github.event_name == 'pull_request' }} -env: - NODE_VERSION: 20 - - jobs: unit-tests: name: Unit Tests / ${{ matrix.python-version }} (${{ matrix.group }}) @@ -49,7 +45,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: $NODE_VERSION + node-version: '18' - name: Install npm run: npm install @@ -131,7 +127,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: $NODE_VERSION + node-version: '18' - name: Install npm run: npm install From 66856669cdbb8d0f02f3a152735749c333df6b33 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 10 Dec 2023 09:20:35 +0200 Subject: [PATCH 083/204] pre-commit working version --- .github/workflows/main.yml | 6 +++--- .../common/content/tests/objects/pack_objects/pack_test.py | 3 +-- .../commands/content_graph/parsers/integration_script.py | 1 - 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f8f778ae2b..1cbfd1c985 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -54,7 +54,7 @@ jobs: run: | source "$(poetry env info --path)/bin/activate" # shopt -u globstar - + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json # Due to race conditions in the tests bringing up and down the node server, have the server available @@ -135,7 +135,7 @@ jobs: - name: Run pytest run: | source "$(poetry env info --path)/bin/activate" - + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json mkdir integration-test-results @@ -190,4 +190,4 @@ jobs: coverage report coverage xml - name: Coveralls - uses: coverallsapp/github-action@v2 \ No newline at end of file + uses: coverallsapp/github-action@v2 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 8c6ece1afb..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,10 +31,9 @@ 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 -from demisto_sdk.commands.common.logger import logger - TEST_DATA = src_root() / "tests" / "test_files" TEST_CONTENT_REPO = TEST_DATA / "content_slim" diff --git a/demisto_sdk/commands/content_graph/parsers/integration_script.py b/demisto_sdk/commands/content_graph/parsers/integration_script.py index 117a095447..160c5c9db1 100644 --- a/demisto_sdk/commands/content_graph/parsers/integration_script.py +++ b/demisto_sdk/commands/content_graph/parsers/integration_script.py @@ -1,4 +1,3 @@ -import logging from abc import abstractmethod from functools import cached_property from pathlib import Path From f3e4bae459d4c11874b0b708887a3bb10ed030fc Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 10 Dec 2023 09:38:06 +0200 Subject: [PATCH 084/204] base_validator tests rollback --- demisto_sdk/commands/common/tests/base_validator_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demisto_sdk/commands/common/tests/base_validator_test.py b/demisto_sdk/commands/common/tests/base_validator_test.py index 20d3610748..0f967df26e 100644 --- a/demisto_sdk/commands/common/tests/base_validator_test.py +++ b/demisto_sdk/commands/common/tests/base_validator_test.py @@ -134,7 +134,7 @@ def test_handle_error_github_annotation( assert captured.out == expected_result -def test_handle_error(): +def test_handle_error(mocker, caplog): """ Given - An ignore errors list associated with a file. @@ -172,6 +172,7 @@ def test_handle_error(): assert formatted_error is None assert "path/to/file_name - [BA101]" not in FOUND_FILES_AND_ERRORS assert "path/to/file_name - [BA101]" in FOUND_FILES_AND_IGNORED_ERRORS + assert "path/to/file_name: [BA101] - ignore-file-specific\n" in caplog.text formatted_error = base_validator.handle_error( "Error-message", "ST109", "path/to/file_name" From 414534b5a68fee3b4651903cd18b1e693812163f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 10 Dec 2023 13:17:47 +0200 Subject: [PATCH 085/204] node 16 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1cbfd1c985..865e583c72 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,7 +45,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '16' - name: Install npm run: npm install @@ -127,7 +127,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '16' - name: Install npm run: npm install From 92d78254d67bf049544345783c787a8abf11b29c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 10 Dec 2023 13:30:25 +0200 Subject: [PATCH 086/204] use upload-artifacts v3 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 865e583c72..0ed13d4f62 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -71,7 +71,7 @@ jobs: exit $pytest_exit_code - name: Upload artifacts if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: unit-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} path: | From a064b169d0f0eea713e8e2cd673f40582e0a4521 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 10 Dec 2023 14:07:27 +0200 Subject: [PATCH 087/204] upload artifacts v3 integration tests --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0ed13d4f62..c8ab01ba14 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -145,7 +145,7 @@ jobs: exit $pytest_exit_code - name: Upload artifacts if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: integration-tests-artifacts-${{ matrix.python-version }} path: | From bbefaf8ed99eabc783d24cf14575b5cb6d1c3048 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 12 Dec 2023 20:08:31 +0200 Subject: [PATCH 088/204] test also content graph files --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c8ab01ba14..6d3bf13ab6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,7 +64,7 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph/tests} --store-durations mkdir test-results - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph/tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From fce9d3c67080dfdde8cd41ff90eace5cb0234264 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 12 Dec 2023 21:43:34 +0200 Subject: [PATCH 089/204] try now --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6d3bf13ab6..d948130bb2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,7 +64,7 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph/tests} --store-durations mkdir test-results - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From df833e0e976c8fc23d237469b1d3c8db7e745d37 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 12 Dec 2023 23:50:38 +0200 Subject: [PATCH 090/204] try to fix tests --- .../tests/create_content_graph_test.py | 2 + .../tests/parsers_and_models_test.py | 85 ++++++++++--------- 2 files changed, 45 insertions(+), 42 deletions(-) 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..342cae0f2a 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 @@ -1237,5 +1237,7 @@ def test_create_content_graph_with_python_version( marketplace=MarketplaceVersions.XSOAR, content_type=ContentType.INTEGRATION, ) + import logging + logging.info(f'{integrations[0].to_dict()=}') assert expected_python_version == integrations[0].to_dict()["python_version"] assert dockerhub_api_mocker.called == is_taken_from_dockerhub diff --git a/demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py b/demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py index 66c238cf21..d8271c1a25 100644 --- a/demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py +++ b/demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py @@ -1538,6 +1538,7 @@ def test_pack_parser(self, mocker, repo: Repo): - Verify the pack is modeled correctly. """ from demisto_sdk.commands.content_graph.objects.pack import Pack as PackModel + from TestSuite.test_tools import ChangeCWD pack = repo.create_pack("HelloWorld") pack.pack_metadata.write_json(load_json("pack_metadata.json")) @@ -1546,50 +1547,50 @@ def test_pack_parser(self, mocker, repo: Repo): pack.create_incident_type("sample", load_json("incident_type.json")) pack.create_indicator_field("sample", load_json("indicator_field.json")) pack.create_indicator_type("sample", load_json("indicator_type.json")) - mocker.patch.object(tools, "get_content_path", return_value=Path(repo.path)) with open(f"{pack.path}/.pack-ignore", "w") as f: f.write("[file:classifier-sample.json]\nignore=SC100") - pack_path = Path(pack.path) - parser = PackParser(pack_path) - expected_content_items = { - "Github_Classifier_v1": ContentType.CLASSIFIER, - "cve": ContentType.INCIDENT_FIELD, - "Traps": ContentType.INCIDENT_TYPE, - "email": ContentType.INDICATOR_FIELD, - "urlRep": ContentType.INDICATOR_TYPE, - } - PackRelationshipsVerifier.run( - parser.relationships, - expected_content_items=expected_content_items, - ) - model = PackModel.from_orm(parser) - PackModelVerifier.run( - model, - expected_id="HelloWorld", - expected_name="HelloWorld", - expected_path=pack_path, - expected_description="This is the Hello World integration for getting started.", - expected_created="2020-03-10T08:37:18Z", - expected_author_image="content/packs/HelloWorld/Author_image.png", - expected_legacy=True, - expected_eulaLink="https://github.com/demisto/content/blob/master/LICENSE", - expected_support="community", - expected_url="https://www.paloaltonetworks.com/cortex", - expected_author="Cortex XSOAR", - expected_certification="verified", - expected_hidden=False, - expected_current_version="1.2.12", - expected_tags=["TIM"], - expected_categories=["Utilities"], - expected_use_cases=["Identity And Access Management"], - expected_keywords=[], - expected_marketplaces=[ - MarketplaceVersions.MarketplaceV2, - MarketplaceVersions.XSOAR, - MarketplaceVersions.XSOAR_SAAS, - ], - expected_content_items=expected_content_items, - expected_deprecated=False, + with ChangeCWD(repo.path): + pack_path = Path(pack.path) + parser = PackParser(pack_path) + expected_content_items = { + "Github_Classifier_v1": ContentType.CLASSIFIER, + "cve": ContentType.INCIDENT_FIELD, + "Traps": ContentType.INCIDENT_TYPE, + "email": ContentType.INDICATOR_FIELD, + "urlRep": ContentType.INDICATOR_TYPE, + } + PackRelationshipsVerifier.run( + parser.relationships, + expected_content_items=expected_content_items, + ) + model = PackModel.from_orm(parser) + PackModelVerifier.run( + model, + expected_id="HelloWorld", + expected_name="HelloWorld", + expected_path=pack_path, + expected_description="This is the Hello World integration for getting started.", + expected_created="2020-03-10T08:37:18Z", + expected_author_image="content/packs/HelloWorld/Author_image.png", + expected_legacy=True, + expected_eulaLink="https://github.com/demisto/content/blob/master/LICENSE", + expected_support="community", + expected_url="https://www.paloaltonetworks.com/cortex", + expected_author="Cortex XSOAR", + expected_certification="verified", + expected_hidden=False, + expected_current_version="1.2.12", + expected_tags=["TIM"], + expected_categories=["Utilities"], + expected_use_cases=["Identity And Access Management"], + expected_keywords=[], + expected_marketplaces=[ + MarketplaceVersions.MarketplaceV2, + MarketplaceVersions.XSOAR, + MarketplaceVersions.XSOAR_SAAS, + ], + expected_content_items=expected_content_items, + expected_deprecated=False, ) def test_repo_parser(self, mocker, repo: Repo): From 4f4d84d97d2d4aedaa37ebe6458d33273508dc06 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 12 Dec 2023 23:52:03 +0200 Subject: [PATCH 091/204] get test durations --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d948130bb2..f998a03b7b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -62,9 +62,9 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph/tests} --store-durations + # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations || pytest_exit_code=$? mkdir test-results - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From 4f6f2dd1b1129e863d00640332b824a2b08ec32f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 12 Dec 2023 23:52:45 +0200 Subject: [PATCH 092/204] get store durations 2 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f998a03b7b..1c3ea32b2d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -62,7 +62,7 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations || pytest_exit_code=$? + poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations || pytest_exit_code=$? mkdir test-results # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV From 9354582a7b84570f502492be4adc5b9d70d7fb3a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 08:41:49 +0200 Subject: [PATCH 093/204] get test-durations-3 --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1c3ea32b2d..ccf6d71a64 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -62,13 +62,12 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations || pytest_exit_code=$? + poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations mkdir test-results # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? - echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + # echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - exit $pytest_exit_code - name: Upload artifacts if: always() uses: actions/upload-artifact@v3 From 936102748c3f7fca6c796012980a56a3cac6fed3 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 08:54:10 +0200 Subject: [PATCH 094/204] test-durations-5 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ccf6d71a64..e1b0add618 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -61,11 +61,11 @@ jobs: # For all the tests. node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - - poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations + mkdir test-results + poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$? # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? - # echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts From a219a96785e6b7c4c244e2392aab6d8db578b766 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 09:52:37 +0200 Subject: [PATCH 095/204] test-durations-6 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e1b0add618..2b7059d92c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -63,9 +63,9 @@ jobs: node_pid=$! mkdir test-results - poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$? + poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? - echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + # echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts From a6f79d78328149dd0fecaa2a458f0f1c5a023df7 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 11:13:43 +0200 Subject: [PATCH 096/204] cat .test_durations --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2b7059d92c..34b3ada11b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,6 +64,7 @@ jobs: mkdir test-results poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml + cat .test_durations # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? # echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV From 7b333e7dbb7fe9c7f81c22a6c89d23ad9d274c33 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 11:34:17 +0200 Subject: [PATCH 097/204] lock --- poetry.lock | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 1b4c8ef6dd..3b7d95b6bf 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 = "257fe8b92749c8d1499ebffc0d5b8a87b5c00728d60219e90c66202b3a0561f8" +content-hash = "38bed940beb0d10e7affb6e6de5d112963ba2c3eb80a81d15cbfb6faca55b9ab" From f4a7e7d3a5ac7f775714148c07ba50dc0c077288 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 11:42:43 +0200 Subject: [PATCH 098/204] update test file name --- .../tests/{generate_unit_tests_test.py => generate_unit_test.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename demisto_sdk/commands/generate_unit_tests/tests/{generate_unit_tests_test.py => generate_unit_test.py} (100%) diff --git a/demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py b/demisto_sdk/commands/generate_unit_tests/tests/generate_unit_test.py similarity index 100% rename from demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py rename to demisto_sdk/commands/generate_unit_tests/tests/generate_unit_test.py From 6551e44039c94d1d962b666506f5d2d1f635129c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 11:53:43 +0200 Subject: [PATCH 099/204] install also generat-unit-tests --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 34b3ada11b..666da90f31 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,7 +40,7 @@ jobs: sudo curl -sSL https://install.python-poetry.org | python3 - poetry --version poetry check --lock - poetry install + poetry install -E generate-unit-tests - name: Set up Node.js uses: actions/setup-node@v3 From 9b7986816fbc85000d1dc8b49daa45c3b5401bbf Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 12:53:30 +0200 Subject: [PATCH 100/204] cat test-durations-2 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 666da90f31..72dea328b1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -63,7 +63,7 @@ jobs: node_pid=$! mkdir test-results - poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml + poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ cat .test_durations # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? # echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV From 4a39cd5dda3e402e978d97fa466dae3062c8bb1a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 15:07:39 +0200 Subject: [PATCH 101/204] try now --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 72dea328b1..769539ee02 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,7 +64,7 @@ jobs: mkdir test-results poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ - cat .test_durations + mv .test_durations test-results/test_durations # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? # echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV @@ -75,7 +75,7 @@ jobs: with: name: unit-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} path: | - .test_durations + test-results/test_durations test-results/junit.xml node_versions_info.json coverage_html_report From 0a5888a96e5ad8f27f44854cc2252368592ea326 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 15:16:56 +0200 Subject: [PATCH 102/204] test --- .../tests/{generate_unit_test.py => generate_unit_tests_test.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename demisto_sdk/commands/generate_unit_tests/tests/{generate_unit_test.py => generate_unit_tests_test.py} (100%) diff --git a/demisto_sdk/commands/generate_unit_tests/tests/generate_unit_test.py b/demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py similarity index 100% rename from demisto_sdk/commands/generate_unit_tests/tests/generate_unit_test.py rename to demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py From 5856b6817d8e1903af5cb82582632926ea7130a6 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 17:40:45 +0200 Subject: [PATCH 103/204] test durations --- .test_durations | 8962 ++++++++++++++++++++++++----------------------- 1 file changed, 4575 insertions(+), 4387 deletions(-) diff --git a/.test_durations b/.test_durations index 18f67c2acc..75875d7345 100644 --- a/.test_durations +++ b/.test_durations @@ -18,4390 +18,4578 @@ "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.0005506969999942157, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsiam_client_config_with_api_key_and_auth_id_and_token": 0.0005249889999277002, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsiam_client_config_with_api_key_and_token_without_auth_id": 0.0005732089999810341, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_no_api_key_and_user_and_password": 0.0005958399999599351, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_no_values": 0.0005584219999263951, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_username_password": 0.0005307500000526488, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_with_api_key": 0.0007819489999860707, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_client_config_with_invalid_url_with_api_key": 0.0005887170000278275, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_api_key_auth_id": 0.0005537039999694571, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_api_key_without_auth_id": 0.0005242389999580155, - "demisto_sdk/commands/common/clients/tests/configs_test.py::test_init_xsoar_saas_client_config_with_auth_id_without_api_key": 0.0005523300000618292, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config0-XsoarClient]": 0.0031512289999682253, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config1-XsoarSaasClient]": 0.002759336999986317, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_config[config2-XsiamClient]": 0.007260106000046562, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test1.com-xsoar-XsoarClient]": 0.0025841820000209736, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test2.com-xsoar_on_prem-XsoarClient]": 0.0025970360000542314, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test3.com-xsoar_saas-XsoarSaasClient]": 0.002634194999927786, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_marketplace[https://test4.com-marketplacev2-XsiamClient]": 0.0027616809999813086, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_server_type_base_url_is_not_api_url": 0.0034310900001059963, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_client_from_server_type_unauthorized_exception": 0.003733005000015055, - "demisto_sdk/commands/common/clients/tests/get_client_test.py::test_get_xsiam_client_from_server_type": 0.0028760060000081467, - "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.005679365999981201, - "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.004977295999992748, - "demisto_sdk/commands/common/content/tests/content_test.py::test_detect_all_docs": 0.0007778110000344896, - "demisto_sdk/commands/common/content/tests/content_test.py::test_detection[content_descriptor-ContentDescriptor]": 0.0006673550000186879, - "demisto_sdk/commands/common/content/tests/content_test.py::test_generators_detection[documentations-content_type1-2]": 0.0012030940000613555, - "demisto_sdk/commands/common/content/tests/content_test.py::test_generators_detection[test_playbooks-content_type0-3]": 0.0028317730000253505, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestInvalidJSON::test_malformed_json_data_file_path": 0.0020426300000622177, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestInvalidJSON::test_malformed_json_path": 0.0005660159999933967, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_dump": 0.000876925999989453, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get[]": 0.0007693540000559551, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get[test_value]": 0.0007498489999306912, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_get_item": 0.0007199129999548859, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/json_object_test.py::TestValidJSON::test_valid_json_file_path": 0.0010176699999533412, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/text_object_test.py::test_malformed_text_path": 0.000574642999936259, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/text_object_test.py::test_valid_text_file_path": 0.0012570069999355837, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestInvalidYAML::test_malformed_yaml_data_file_path": 0.0028746840000053453, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestInvalidYAML::test_malformed_yaml_path": 0.0006945839999730197, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_dump": 0.0025239689999807524, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get[]": 0.002001404000054663, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get[test_value]": 0.001024309999934303, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_get_item": 0.001967541000055917, - "demisto_sdk/commands/common/content/tests/objects/abstract_objects/yaml_object_test.py::TestValidYAML::test_valid_yaml_file_path": 0.002681282999958512, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/json_content_object_test.py::TestFileWithStem::test_with_readme_change_log": 0.001262054999983775, - "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.000870885000040289, - "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.0007954050000194002, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/json_content_object_test.py::test_to_version_no_from_version": 0.0008693010000229151, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::TestFileWithStem::test_with_readme_change_log": 0.00162054400004763, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::TestFileWithStem::test_without_readme_changelog": 0.0013137100000335522, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::test_from_version_no_to_version": 0.0013223679999896376, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/abstract_pack_objects/yaml_content_object_test.py::test_to_version_no_from_version": 0.0011126760000479408, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/author_image/author_image_test.py::test_objects_factory": 0.0005508469999995214, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/author_image/author_image_test.py::test_prefix": 0.0005087699999535289, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/change_log/change_log_test.py::test_objects_factory": 0.0006103799999550574, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/change_log/change_log_test.py::test_prefix": 0.0005389959999888561, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierMapperType::test_objects_factory": 0.0009558940000715666, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierMapperType::test_prefix": 0.0007528650000381276, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierType::test_objects_factory": 0.0007931690000191338, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestClassifierType::test_prefix": 0.0005974450000394427, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestOldClassifierType::test_objects_factory": 0.000935457000025508, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/classifier/classifier_test.py::TestOldClassifierType::test_prefix": 0.0007579540000506313, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/connection/connection_test.py::test_changelog_prefix": 0.0009895060000530975, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/connection/connection_test.py::test_objects_factory": 0.0011563780000187762, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/correlation_rule/correlation_rule_test.py::test_objects_factory": 0.005471058000068751, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/correlation_rule/correlation_rule_test.py::test_prefix": 0.005989855999985139, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/dashboard/dashboard_test.py::test_objects_factory": 0.0007563529999856655, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/dashboard/dashboard_test.py::test_prefix": 0.0005681800000729709, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/doc_file/doc_file_test.py::test_objects_factory": 0.0006280310000192912, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/doc_file/doc_file_test.py::test_prefix": 0.0005390450000390956, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_field/incident_field_test.py::test_objects_factory": 0.0007805669999925158, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_field/incident_field_test.py::test_prefix": 0.0005918649999898662, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_type/incident_type_test.py::test_objects_factory": 0.0010351319999699626, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/incident_type/incident_type_test.py::test_prefix": 0.0006471670000109953, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_field/indicator_field_test.py::test_prefix": 0.0006681259999936628, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestIndicatorType::test_objects_factory": 0.0010217260000331407, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestIndicatorType::test_prefix": 0.0008285060000616795, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestOldIndicatorType::test_objects_factory[reputations.json]": 0.001197034000028907, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/indicator_type/indicator_type_test.py::TestOldIndicatorType::test_prefix[reputations.json]": 0.001065678999964348, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_files_detection": 0.002272530000027473, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_is_unify": 0.0009137250000321728, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_objects_factory": 0.0012534590000541357, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestNotUnifiedIntegration::test_prefix": 0.0008757040000091365, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_files_detection": 0.0016972669999404388, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_is_unify": 0.0012460340000757242, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_objects_factory": 0.0010744960000010906, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/integration/integration_test.py::TestUnifiedIntegration::test_prefix": 0.0007249729999898591, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/job/job_test.py::TestJob::test_objects_factory": 0.0009181120000789633, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/job/job_test.py::TestJob::test_prefix": 0.000785975999974653, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_objects_factory[layoutscontainer-Zimperium_event.json]": 0.0010468439999158363, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_prefix[layoutscontainer-Zimperium_event.json]": 0.0010614109999664834, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/layout/layout_test.py::TestLayoutsContainer::test_unify": 0.010280021000028228, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/lists/lists_test.py::test_objects_factory": 0.0006182230000035815, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/lists/lists_test.py::test_prefix": 0.0006177419999744416, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_files_detection": 0.006445495999969353, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_is_unify": 0.010293405000027178, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_objects_factory": 0.01012485100000049, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_prefix": 0.008452229999988958, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRule::test_unify_schema": 0.01509253000000399, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRuleParsing::test_parse_modeling_rule_new_format": 0.006544902000030106, - "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.006542927000054988, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/modeling_rule/modeling_rule_test.py::TestModelingRuleParsing::test_parse_modeling_rule_old_format": 0.009134362999986934, - "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.01778103099996997, - "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.014821455000003425, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_ignore/pack_ignore_test.py::test_objects_factory": 0.0005732990000524296, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_ignore/pack_ignore_test.py::test_prefix": 0.0005248699999924611, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_author_getter[someone-someone-someone-]": 0.0009196269999733886, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_author_getter[xsoar-Cortex XSOAR-Cortex XSOAR-]": 0.0009700799999450282, - "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.00216152199999442, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_created_setter_bad_string_data": 0.0006266780000032668, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_created_setter_datetime": 0.0005647429999839915, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_dump_with_price": 0.00651454400002649, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_legacy_setter": 0.0005451159999552146, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_advanced": 0.593640870999991, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_bad_pack_metadata_file": 0.591442112999971, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_basic": 0.6096667869999806, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_invalid_price": 0.5918415050000476, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_load_user_metadata_no_metadata_file": 0.5928104589999634, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_objects_factory": 0.0006610429999795997, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_prefix": 0.0006147869999608702, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[10-100]": 0.0007886399999961213, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[10-101]": 0.0007356819999699837, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_price_setter_bad_int[not int-0]": 0.0007050450000178898, - "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.000889188999963153, - "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.0008850730000062867, - "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.000945904000104747, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_updated_setter_bad_string_data": 0.004487111999935678, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_metadata/pack_metadata_test.py::test_updated_setter_datetime": 0.000544905999902312, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[contributors-Contributors]": 0.0007146529999886297, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[pack_ignore-PackIgnore]": 0.0007358130000056917, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[pack_metadata-PackMetaData]": 0.0007473350000282153, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[readme-Readme]": 0.0007264259999146816, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_detection[secrets_ignore-SecretIgnore]": 0.000755337999976291, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[classifiers-content_type2-1]": 0.0014173340001093493, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[connections-content_type6-3]": 0.0015079140000011648, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[dashboards-content_type10-3]": 0.001682418999962465, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[doc_files-content_type15-1]": 0.0012451329999976224, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[incident_fields-content_type4-3]": 0.0014794590000519747, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[incident_types-content_type5-3]": 0.0014304190000302697, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[indicator_fields-content_type7-1]": 0.001107365999985177, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[indicator_types-content_type8-3]": 0.0012326309999934892, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[integrations-content_type0-3]": 0.0024871499999790103, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[layouts-content_type11-3]": 0.0014768749999802822, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[playbooks-content_type3-3]": 0.0022098029999142454, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[release_notes-content_type13-1]": 0.0012720120000153656, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[reports-content_type9-3]": 0.001459903000011309, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[scripts-content_type1-3]": 0.0013944920000312777, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[test_playbooks-content_type16-2]": 0.0018352020000520497, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[tools-content_type14-1]": 0.0009470269999951597, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_generators_detection[widgets-content_type12-3]": 0.001477527000020018, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_error_from_subprocess": 0.005886782999994011, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_exception_thrown": 0.035906144999955814, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pack_test.py::test_sign_pack_success": 0.0058585019999668475, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_files_detection": 0.006338024999934078, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_is_unify": 0.010260163999987526, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_objects_factory": 0.008164182999962577, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/parsing_rule/parsing_rule_test.py::TestParsingRule::test_prefix": 0.007699596000065867, - "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.014997311999991325, - "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.016485397999986162, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/playbook/playbook_test.py::test_objects_factory": 0.00106016800003772, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/playbook/playbook_test.py::test_prefix": 0.0006059400000140158, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pre_process_rule/pre_process_rule_test.py::test_objects_factory": 0.0008682300000373289, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/pre_process_rule/pre_process_rule_test.py::test_prefix": 0.0007105160000264732, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_mention_contributors_in_readme": 0.005060422000042308, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_objects_factory[file0]": 0.0007114479999472678, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_objects_factory[file1]": 0.0007242809999183919, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/readme/readme_test.py::test_prefix": 0.00048332300002584816, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note/release_note_test.py::test_objects_factory": 0.00067464000005657, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note/release_note_test.py::test_prefix": 0.0005660859999920831, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note_config/release_note_config_test.py::TestReleaseNoteConfig::test_objects_factory": 0.0050485880000223915, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/release_note_config/release_note_config_test.py::TestReleaseNoteConfig::test_prefix": 0.004755793000015274, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/report/report_test.py::test_objects_factory": 0.0007570919999579928, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/report/report_test.py::test_prefix": 0.0006063609999955588, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_files_detection": 0.0029886269999792603, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_is_unify": 0.0009521460000314619, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_objects_factory": 0.0012998549999565512, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestNotUnifiedScript::test_prefix": 0.0007803260000400769, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_files_detection": 0.002090881999947669, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_is_unify": 0.0008758739999734644, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_objects_factory": 0.0011784199999169687, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/script/script_test.py::TestUnifiedScript::test_prefix": 0.0007395509999241767, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/secret_ignore/secret_ignore_test.py::test_objects_factory": 0.0006398940000167386, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/secret_ignore/secret_ignore_test.py::test_prefix": 0.00057196800003112, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/trigger/trigger_test.py::test_objects_factory": 0.005129289000024073, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/trigger/trigger_test.py::test_prefix": 0.004918776000010894, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/widget/widget_test.py::test_objects_factory": 0.0008498550000695104, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/widget/widget_test.py::test_prefix": 0.0005633700000089448, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/wizard/wizard_test.py::TestWizard::test_objects_factory": 0.0011116729999116615, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/wizard/wizard_test.py::TestWizard::test_prefix": 0.0008756729999959134, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_files_detection": 0.009233338000001368, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_objects_factory": 0.005418149999968591, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xdrctemplate/xdrc_template_test.py::TestXDRCTemplate::test_prefix": 0.006003981000048952, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard/xsiam_dashboard_test.py::test_objects_factory": 0.004763267000100768, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard/xsiam_dashboard_test.py::test_prefix": 0.01041914000001043, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_dashboard_image/xsiam_dashboard_image_test.py::test_prefix": 0.0005421129999945151, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report/xsiam_report_test.py::test_objects_factory": 0.01689859899994417, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report/xsiam_report_test.py::test_prefix": 0.005035947000067154, - "demisto_sdk/commands/common/content/tests/objects/pack_objects/xsiam_report_image/xsiam_report_image_test.py::test_prefix": 0.0006997959999353043, - "demisto_sdk/commands/common/content/tests/objects/root_objects/content_descriptor/content_descriptor_test.py::test_changelog_prefix": 0.0006836860000021261, - "demisto_sdk/commands/common/content/tests/objects/root_objects/documentation/documentation_test.py::test_prefix": 0.000844015000041054, - "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_git_path": 0.29467126799994503, - "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_github_api": 0.24178770999998278, - "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_gitlab_api": 0.2317855629999599, - "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_http_request": 0.16933321499999465, - "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_local_path": 0.17903849000003902, - "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_read_from_local_path_from_content_root": 0.17849409200005084, - "demisto_sdk/commands/common/files/tests/binary_file_test.py::TestBinaryFile::test_write_file": 0.12445597699996824, - "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_file_content_error": 0.0005105319999643143, - "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_http_request_error": 0.0005010940000147457, - "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_read_from_local_path_error": 0.0008911330000387352, - "demisto_sdk/commands/common/files/tests/file_test.py::TestFile::test_write_file_error": 0.0005091499999707594, - "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_git_path": 0.27226598400000057, - "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_github_api": 0.2430367659999888, - "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_gitlab_api": 0.22536244399998395, - "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_http_request": 0.16609846100004688, - "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_local_path": 0.16872756699996216, - "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_read_from_local_path_from_content_root": 0.16918405199999142, - "demisto_sdk/commands/common/files/tests/ini_file_test.py::TestIniFile::test_write_file": 0.12254224000008662, - "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_git_path": 0.5250108740000314, - "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_github_api": 0.3594472679999967, - "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_gitlab_api": 0.35435034300002144, - "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_http_request": 0.1875140880000572, - "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_local_path": 0.17419380599994838, - "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_read_from_local_path_from_content_root": 0.22232968199995184, - "demisto_sdk/commands/common/files/tests/json_file_test.py::TestJsonFile::test_write_file": 0.12412138499996672, - "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_git_path": 0.5192530680000118, - "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_github_api": 0.3562140860000227, - "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_gitlab_api": 0.38775624400000197, - "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_http_request": 0.16972751300005484, - "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path": 0.1778007409999418, - "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path_from_content_root": 0.18071293400004151, - "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_read_from_local_path_unicode_error": 0.1607559220000212, - "demisto_sdk/commands/common/files/tests/text_file_test.py::TestTextFile::test_write_file": 0.12735252300007005, - "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_git_path": 0.5188853679999283, - "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_github_api": 0.36505374699993354, - "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_gitlab_api": 0.3610971370000584, - "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_http_request": 0.22467339600001424, - "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_local_path": 0.2162348569999608, - "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_read_from_local_path_from_content_root": 0.21996442300002172, - "demisto_sdk/commands/common/files/tests/yml_file_test.py::TestYMLFile::test_write_file": 0.12689103999997542, - "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[0]": 0.00243982199998527, - "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[1]": 0.002358029000049555, - "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[2]": 0.0022814670000457227, - "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dump[3]": 0.0022868659999630836, - "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[0]": 0.0007442369999353105, - "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[1]": 0.0005516899999520319, - "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[2]": 0.0005369119999727445, - "demisto_sdk/commands/common/handlers/tests/json_test.py::TestJSONHandler::test_no_escape_chars_dumps[3]": 0.0005301289999692926, - "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.006221958000026007, - "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.00607793900002207, - "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.019087498999965646, - "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.006424495000032948, - "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.0062185510000745126, - "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.005550293999931455, - "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[path_does_not_exist-partner-10240-False]": 0.005947515999991992, - "demisto_sdk/commands/common/tests/author_image_validator_test.py::TestAuthorImageValidator::test_is_valid[path_does_not_exist-xsoar-10240-True]": 0.005778879999922992, - "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output": 0.021724737999988974, - "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output_with_json_file": 0.021579879000057645, - "demisto_sdk/commands/common/tests/base_validator_test.py::TestJsonOutput::test_json_output_with_unified_yml_image_error": 0.021498957000005703, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_non_deprecated_integration_no_ignored_errors": 0.007468863999918085, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_non_deprecated_integration_with_ignored_errors": 0.009677493999959097, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_playbook": 0.06837592800007997, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_where_ignored_list_does_not_exist": 0.01241150399999924, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_deprecated_where_ignored_list_exists": 0.007852508999917518, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_community_file": 0.00722681300004524, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_partner_file": 0.009461371000043073, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_check_support_status_xsoar_file": 0.007436573999996199, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_content_items_naming": 0.012850272999969548, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error": 0.0014332430000649765, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_file_with_path": 0.008045898999966994, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[False-None-False-]": 0.0011820649999663146, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[False-fix-False-]": 0.0013287200000036137, - "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.0012334920000398597, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_github_annotation[True-None-True-]": 0.0012034150000204136, - "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.0014860219999377478, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors0-SC109]": 0.00186826499992776, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors1-PA117]": 0.0015499309999995603, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors2-PB109]": 0.0015191640000580264, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors3-RM109]": 0.001581671000053575, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors4-RM105]": 0.0015552909999883013, - "demisto_sdk/commands/common/tests/base_validator_test.py::test_handle_error_on_unignorable_error_codes[ignored_errors5-SC102]": 0.001561121000008825, - "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file0-current_file0-True]": 0.0011032479999926181, - "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file1-current_file1-True]": 0.0010996809999710422, - "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_changed_removed_yml_fields[old_file2-current_file2-False]": 0.0007170580000206428, - "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_incident_field_exist[classifier_json0-id_set_json0-True-True]": 0.0033156980000512704, - "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_incident_field_exist[classifier_json1-id_set_json1-True-False]": 0.0032689389999518426, - "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_name_id_equal[mapper0-True]": 0.0027635259999101436, - "demisto_sdk/commands/common/tests/classifier_test.py::TestClassifierValidator::test_is_name_id_equal[mapper1-False]": 0.0031761870000082126, - "demisto_sdk/commands/common/tests/conf_test.py::test_conf_json_description": 0.003964968999980556, - "demisto_sdk/commands/common/tests/conf_test.py::test_conf_json_description_not_given": 0.0013814890000389823, - "demisto_sdk/commands/common/tests/conf_test.py::test_get_test_path": 0.02016140300003144, - "demisto_sdk/commands/common/tests/conf_test.py::test_has_unittests[False]": 0.02073752700005116, - "demisto_sdk/commands/common/tests/conf_test.py::test_has_unittests[True]": 0.025865006000003632, - "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict0-False]": 0.001686588000040956, - "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict1-True]": 0.0012169020000669661, - "demisto_sdk/commands/common/tests/conf_test.py::test_integration_has_unskipped_test_playbook[conf_dict2-True]": 0.0013771900000278947, - "demisto_sdk/commands/common/tests/conf_test.py::test_is_valid_conf_json_negative_sanity_check": 0.0015125630000056844, - "demisto_sdk/commands/common/tests/conf_test.py::test_is_valid_conf_json_sanity_check": 0.0013105559999644356, - "demisto_sdk/commands/common/tests/conf_test.py::test_non_testable_entity_is_vaild_in_conf": 0.0011262819999160456, - "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data0-yml_data0]": 0.0012489510000364135, - "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data1-yml_data1]": 0.0012725139999929524, - "demisto_sdk/commands/common/tests/conf_test.py::test_not_skipped_test_playbook_for_dynamic_section[conf_data2-yml_data2]": 0.0011827769999399607, - "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks0-conf_dict0-False]": 0.0015197760000091876, - "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks1-conf_dict1-True]": 0.0014132070000414387, - "demisto_sdk/commands/common/tests/conf_test.py::test_script_has_unskipped_test_playbook[test_playbooks2-conf_dict2-True]": 0.0012515539999640168, - "demisto_sdk/commands/common/tests/conf_test.py::test_the_existence_of_added_test_in_conf_json": 0.0010727120000524337, - "demisto_sdk/commands/common/tests/conf_test.py::test_the_missing_existence_of_added_test_in_conf_json": 0.0014520899999865833, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file0-test.json-True]": 0.0018268800000100782, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file1-test.json-True]": 0.001442311000062091, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file10-test.yml-True]": 0.0012571559999514648, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file2-test.json-True]": 0.001336844000036308, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file3-test.json-True]": 0.0013644449999787867, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file4-test.yml-False]": 0.00137030599995569, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file5-test.yml-True]": 0.0013630430000262095, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file6-test.yml-False]": 0.001357741999981954, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file7-test.yml-False]": 0.001405522999959885, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_are_fromversion_and_toversion_in_correct_format[current_file8-test.yml-False]": 0.0012838460000352825, - "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.0013316250000343643, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_entity_valid_name_invalid": 0.1259063810000498, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_entity_valid_name_valid": 0.13714381199991976, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config0-integration1-playbook1-integration-True]": 0.0008847409999361844, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config1-integration2-playbook1-integration-False]": 0.0008352600000307575, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config2-integration1-playbook1-integration-True]": 0.0008065750000127991, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config3-integration3-playbook1-integration-False]": 0.0008628109999904154, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_find_test_match[test_config4--playbook1-playbook-True]": 0.0008103220000066358, - "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.05454905400000598, - "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.20741689999999835, - "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.06838662300003762, - "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.028219396000054076, - "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.028063173000020925, - "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.05655407599999762, - "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.05680810900003053, - "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.05721207100003767, - "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.055959957000027316, - "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.21308984600000258, - "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.21112638300002118, - "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.14690828400000555, - "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.3709171789999459, - "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.20781747899997072, - "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.3692091419999315, - "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.10425627300008955, - "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.21127145000002656, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleModelingRules-modelingrule-rule_dict2--True]": 0.09488893399998233, - "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.09822475800001484, - "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.09688445000000456, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_is_valid_rule_suffix[MyRuleParsingRules-parsingrule-rule_dict5--True]": 0.10615232100002459, - "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.00259686600003306, - "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.0027031430000192813, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[pack&content had 1, added 2 to both]": 0.0025114449999819044, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[pack&content had 1, now content has empty]": 0.0025629330000356276, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_marketplaces_update_against_pack[sanity, both match and are unchanged]": 0.002639595999994526, - "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.05886746199996651, - "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.058291636999911134, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_readme_exists_not_checking_on_api_modules": 0.10272838899999215, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_readme_exists_not_checking_on_test_playbook": 0.11938098499996386, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[False-community-True]": 0.09503899500003854, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[False-xsoar-False]": 0.10710107500005961, - "demisto_sdk/commands/common/tests/content_entity_validator_test.py::test_validate_unit_test_exists[True-xsoar-True]": 0.09857286799996245, - "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.05776128799999469, - "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.05601798399999325, - "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_no_leading_hyphen": 0.011628989999962869, - "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[REAL_TIME-None-True]": 0.009989851000000272, - "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[SCHEDULED-None-False]": 0.012572128000044813, - "demisto_sdk/commands/common/tests/correlation_rules_test.py::test_validate_execution_mode_search_window[SCHEDULED-valid_window-True]": 0.009924748000003092, - "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[-1-1]": 0.000769815000012386, - "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[-3]": 0.0009605629999214216, - "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[0-1]": 0.0007766100000594633, - "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[10-4]": 0.0007692240000096717, - "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[2-2]": 0.0008264319999966574, - "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[None-3]": 0.0011955800000578165, - "demisto_sdk/commands/common/tests/cpu_count_test.py::test_cpu_count[not_a_number-3]": 0.0009357969999541638, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file0-False]": 0.001058826000019053, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file1-False]": 0.0009384020000311466, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file2-False]": 0.0009291530000155035, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file3-False]": 0.0009587600000031671, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file4-False]": 0.0009540619999484079, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file5-False]": 0.0009250660000361677, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_contains_forbidden_fields[current_file6-True]": 0.0006723339999439304, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[aa-aa-True]": 0.0014154110000390574, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[aa-ab-False]": 0.0016951119999930597, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_id_equal_name[my-home-dashboard-My Dashboard-False]": 0.0016599789999531822, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file0-True]": 0.0006482499999265201, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file1-False]": 0.0009162790000800669, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file2-True]": 0.0006275310000205536, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_including_fields[current_file3-False]": 0.0009330419999855621, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[-1-True]": 0.0018968889999086969, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[0-False]": 0.0017063639999719271, - "demisto_sdk/commands/common/tests/dashboard_test.py::test_is_valid_version[1-False]": 0.0015444830000319598, - "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[0]": 7.103493165999964, - "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[1]": 8.210413082999992, - "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[2]": 7.0792365439999685, - "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[3]": 7.115142995000042, - "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies[4]": 7.1287659770000005, - "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies_case_1": 0.21453384600005165, - "demisto_sdk/commands/common/tests/dependencies_test.py::test_dependencies_case_2": 0.12279471699997657, - "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.0020257490000403777, - "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.0017312510000238035, - "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.0015491900000483838, - "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.001445846999956757, - "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.0015342620000069473, - "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.0018144160000019838, - "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.0014587119999873721, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_integration_error_format[integration_yml0-expected_results0]": 0.0016610889999242318, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml0-True]": 0.0006729959999915991, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml1-False]": 0.0008876159999431366, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml2-True]": 0.0006394629999704193, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_playbook[playbook_yml3-True]": 0.0006351350000386446, - "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.012353601000029357, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml0-True]": 0.0006893770000147015, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml1-False]": 0.0008988370000224677, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml2-False]": 0.0008419199999707416, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml3-True]": 0.0006380499999636413, - "demisto_sdk/commands/common/tests/deprecation_test.py::TestDeprecationValidator::test_validate_script[script_yml4-True]": 0.0006411360000129207, - "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.0017001619999632567, - "demisto_sdk/commands/common/tests/description_test.py::test_demisto_in_description": 0.021722262999958275, - "demisto_sdk/commands/common/tests/description_test.py::test_demisto_not_in_description": 0.021325873999956002, - "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_given": 0.02145488399992246, - "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_unified_deprecated_integration[integration_obj0]": 0.004135593999990306, - "demisto_sdk/commands/common/tests/description_test.py::test_is_duplicate_description_unified_deprecated_integration[integration_obj1]": 0.022900231999926746, - "demisto_sdk/commands/common/tests/description_test.py::test_is_invalid_description_integration_name": 0.010826807999990251, - "demisto_sdk/commands/common/tests/description_test.py::test_is_invalid_description_name": 0.006791200999998637, - "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_description_name": 0.020236149999902864, - "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[### Community Contributed Integration\\n### OtherSection-False]": 0.021339158999978736, - "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[### partner Contributed Integration-False]": 0.020899930000041422, - "demisto_sdk/commands/common/tests/description_test.py::test_is_valid_file[\\n### Other section\\n-True]": 0.022800094999979592, - "demisto_sdk/commands/common/tests/docker_helper_test.py::test_cache_of_get_python_version_from_image": 0.0007089520000249649, - "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-3-2.7.1-2.7.1]": 0.006440546000021641, - "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-3.7.11-3.7.11]": 0.003902800000048501, - "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[alpine-310-3.10.11-3.10.11]": 0.003151989999992111, - "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.0030247430000258646, - "demisto_sdk/commands/common/tests/docker_helper_test.py::test_get_python_version_from_image[demisto/powershell:7.1.3.22028--None]": 0.0038906769999584867, - "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.002840959000025123, - "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.0029584289999888824, - "demisto_sdk/commands/common/tests/docker_helper_test.py::test_init_global_docker_client": 0.48289984600000935, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestDeprecatedDockerImage::test_command_is_docker_image_deprecated": 0.003041225000004033, - "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.0011657649999960995, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestDeprecatedDockerImage::test_deprecated_docker_image[demisto/python-demisto/python:1.0.2--True]": 0.0009380310000324243, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_latest_commit": 0.02144906700004867, - "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.02154538499996761, - "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.02153458599991609, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::TestIronBankDockerParse::test_get_manifest_from_commit": 0.021227032000069812, - "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.021521399999926416, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags0-output_tags0]": 0.0006142559999489094, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags1-output_tags1]": 0.0006128350000267346, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags2-output_tags2]": 0.0006172519999267934, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags3-output_tags3]": 0.0006045490000587961, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_clear_non_numbered_tags[input_tags4-output_tags4]": 0.0006114820000107102, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_dockerimage_in_yml_file[javascript]": 0.000567798999952629, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_dockerimage_in_yml_file[python]": 0.0005696829999806141, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_find_latest_tag_by_date": 0.000542563000010432, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_from_yml": 0.00587963100002753, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python-deb]": 0.7129529399999797, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python3-deb]": 0.6804212800000187, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python3]": 0.0008596040000270477, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_get_docker_image_latest_tag[python]": 0.7012753770000586, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_default_image": 0.0008825360000059845, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_latest_tag": 0.00048444499998367974, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_numeric_but_not_most_updated": 0.6875414680000063, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_with_tag_labeled_latest": 0.000864273000047433, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_docker_image_latest_tag_without_tag": 0.0008038910000891519, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_native_image_in_dockerimage_field[demisto/py3-native:8.2.0.58349]": 0.016139529000042785, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_is_native_image_in_dockerimage_field[devdemisto/py3-native:8.2.0.58349]": 0.02303750900000523, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_lexical_find_latest_tag": 0.0007800059999567566, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_no_dockerimage_in_yml_file[javascript-True]": 0.000650945000018055, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_no_dockerimage_in_yml_file[python-False]": 0.0009970809999799712, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_non_existing_docker": 0.026207704999990256, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[blabla/google-api-py3-1.0.0.5992-]": 0.001216341000031207, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[feedparser-latest-]": 0.0009063610000339395, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_none_demisto_docker[unknownvuser/v-alpine-at_v_commit-b17ade1257cfe086c1742c91deeb6c606037b893-]": 0.0009103579999987232, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_not_latest_docker_older_than_3_days[return_value0-False-False]": 0.0037270349999971586, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_not_latest_docker_older_than_3_days[return_value1-False-True]": 0.0025777609999977358, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_docker_image": 0.0007073599999785074, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_docker_image_error": 0.0015786449999950491, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_www_auth[AAArealm=\"2\",service=\"3\"AAA-expected0]": 0.0006253670001115097, - "demisto_sdk/commands/common/tests/docker_test.py::TestDockerImage::test_parse_www_auth[bbb-expected1]": 0.0006130250000637716, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_allowed_ignore_errors_format": 0.0009851679998860163, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_error_code_format": 0.0007172280000418141, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_file_name_includes_spaces": 0.0006416080000235524, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_file_type_not_supported": 0.00057764700000007, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_id_should_equal": 0.0005835179999280626, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_image_path_error": 0.0005211530000224229, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_integration_is_skipped": 0.0005435229999761759, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_integration_is_skipped__comment": 0.0004990410000118572, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_invalid_context_output": 0.0006209379999972953, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_pack_metadata_empty": 0.0005186870000102317, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_wrong_display_name": 0.0005177460000140854, - "demisto_sdk/commands/common/tests/errors_test.py::TestErrors::test_wrong_required_value": 0.0007269659999451505, - "demisto_sdk/commands/common/tests/errors_test.py::test_error_code_uniqueness": 0.0010736719999613342, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[incident_test_for_test-testfortest]": 0.0006615040000497174, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[incident_testfortest-testfortest]": 0.0006421280000381557, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_incident_test_for_test-incidenttestfortest]": 0.0006247060000532656, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_indicator_test_for_test-indicatortestfortest]": 0.0006312869999760551, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id[indicator_test_for_test-testfortest]": 0.0006269790000601461, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[incident_test_for_for_test-testfortest]": 0.0008239789999606728, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[incident_testforfortest-testfortest]": 0.0008565879999764547, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_does_cli_name_match_id_invalid[indicator_test_for_for_test-testfortest]": 0.0008194879999905424, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version0-old_from_version0-False]": 0.0014001939999843671, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version1-old_from_version1-True]": 0.001632776000008107, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version2-old_from_version2-False]": 0.001603261999946426, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version3-old_from_version3-False]": 0.001384352000002309, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_from_version[current_from_version4-old_from_version4-True]": 0.0016103540000358407, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[number-number-False]": 0.0013887709999949038, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-longText-True]": 0.0016690239999661571, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-number-True]": 0.001670977000003404, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[shortText-shortText-False]": 0.0013727809999863894, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[singleSelect-shortText-True]": 0.0016109360000200468, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[singleSelect-singleSelect-False]": 0.0013742940000156523, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-number-True]": 0.0016532850000317012, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-shortText-True]": 0.0016251030000375977, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_changed_type[timer-timer-False]": 0.0013940199999638025, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.EVIDENCE_FIELD]": 0.0008732390000432133, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.INCIDENT_FIELD]": 0.0008939969999914865, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cli_name_is_builtin_key_invalid[id-GroupFieldTypes.INDICATOR_FIELD]": 0.0008335350000265862, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.EVIDENCE_FIELD]": 0.0006644910000090931, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.INCIDENT_FIELD]": 0.0006704520000084813, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_cliname_is_builtin_key[validind-GroupFieldTypes.INDICATOR_FIELD]": 0.0006348630000161393, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_inner_alias_in_aliased_field[aliases0-False]": 0.09496864400000504, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_inner_alias_in_aliased_field[aliases1-True]": 0.11478824799991116, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.EVIDENCE_FIELD]": 0.0008572390000836094, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.INCIDENT_FIELD]": 0.0008341159999645242, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cli_name_invalid[id-GroupFieldTypes.INDICATOR_FIELD]": 0.0008114539999155568, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[incident_validind-validind-GroupFieldTypes.INCIDENT_FIELD]": 0.0007111179999697015, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[indicator_validind-validind-GroupFieldTypes.INDICATOR_FIELD]": 0.0006958280000048944, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_cliname[validind-validind-GroupFieldTypes.EVIDENCE_FIELD]": 0.0007813890000534229, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file0-True]": 0.0006826350000324055, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file1-False]": 0.0010216759999934766, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_content_flag_sanity[current_file2-False]": 0.0009264889999940351, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version0-5.5.0-True]": 0.09454267799992522, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version1-6.0.0-True]": 0.09040357599997151, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version2-6.0.0-True]": 0.10280705600001738, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version3-6.1.0-True]": 0.19057698899996467, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version4-6.0.0-False]": 0.09227127600007634, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version5-6.0.0-False]": 0.16957659799993507, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_from_version_field[min_version6-6.0.0-False]": 0.09063516900005197, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[None-True]": 0.18858326299999817, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces0-False]": 0.1802894480000532, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces1-False]": 0.0911625249999588, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_marketplaces_in_aliased_field[marketplaces2-True]": 0.09931822099997589, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file0-pack_metadata0-False]": 0.001678882000021531, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file1-pack_metadata1-True]": 0.001243280999972285, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file2-pack_metadata2-True]": 0.001336113000036221, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file3-pack_metadata3-False]": 0.0015443100000425147, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file4-pack_metadata4-False]": 0.0016722310000432117, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_prefix[current_file5-pack_metadata5-False]": 0.0015492200000153389, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file0-False]": 0.0016744750000157183, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file1-False]": 0.001325833999999304, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file2-True]": 0.0017926740000007158, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file3-True]": 0.0016251129999318437, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file4-True]": 0.0017917640000177926, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_name_sanity[current_file5-True]": 0.0142144129999906, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_required[False-True]": 0.0013115169999764476, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_required[True-False]": 0.0014403959999640392, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_system_flag_sanity[current_file0-True]": 0.0006497129999161189, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_system_flag_sanity[current_file1-False]": 0.0009204979999708485, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[-1-True]": 0.0014620779999745537, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[0-False]": 0.0015618950000089171, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_is_valid_version[1-False]": 0.0015301360000421482, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex[agoodid]": 0.0005813240000520636, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex[anot3erg00did]": 0.0005488640000521627, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[\\u05dc\\u05d0\\u05e1\\u05dc\\u05d9\\u05d8\\u05d5\\u05d1]": 0.0007569730000227537, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid cli]": 0.0007631250000486034, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid$$cli]": 0.0007825909999610303, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_matching_cliname_regex_invalid[invalid_cli]": 0.0007518219999838038, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content0-False]": 0.0925181379999458, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content1-False]": 0.09164999500001159, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content2-True]": 0.08985013700004174, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content3-True]": 0.18219195399996124, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content4-True]": 0.10552730099993823, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content5-False]": 0.09094087199997603, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content6-True]": 0.09276817300002449, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content7-False]": 0.09541839100006655, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content8-True]": 0.09303089900004125, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_incident[incident_content9-True]": 0.09072488699996484, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content0-False]": 0.09373557800006438, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content1-False]": 0.09061191600000029, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content2-True]": 0.08921487500003877, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content3-True]": 0.1858469199999604, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content4-True]": 0.2237272080000139, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content5-False]": 0.09418354100006354, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content6-True]": 0.09247736700007181, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content7-False]": 0.09497933400007241, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content8-True]": 0.09248454900000525, - "demisto_sdk/commands/common/tests/field_validator_test.py::TestFieldValidator::test_validate_no_empty_selected_values_value_indicator[indicator_content9-True]": 0.09068670599987172, - "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_no_genericModuleId": 0.03408580100000336, - "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_openended_removed": 0.03368059399997492, - "demisto_sdk/commands/common/tests/generic_field_test.py::TestGenericField::test_simple_generic_field_is_fine": 0.035139967999953114, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_custom_github_url": 0.006726592000006804, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_custom_github_url_invalid": 0.0056680160000723845, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_get_repo_name_empty_case": 0.002700979999985975, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_get_repo_name_gitlab_invalid": 0.24035707499996306, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_gitlab_id_not_found": 0.002907845000038378, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_provide_project_id": 0.025109193000048435, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_provide_repo_name": 0.06599905199999512, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_search_gitlab_id_invalid": 0.0053989349999596925, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_search_gitlab_id_valid": 0.003337308000027406, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[git@github.com:demisto/content-dist.git-demisto/content-dist]": 0.002444802000013624, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[https://github.com/demisto/content-dist-demisto/content-dist]": 0.0023682900000494556, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_githubs[https://github.com/demisto/content-dist.git-demisto/content-dist]": 0.0023788400000057663, - "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.004061549000027753, - "demisto_sdk/commands/common/tests/git_config_test.py::TestGitContentConfig::test_valid_gitlabs[https://code.pan.run/xsoar/content-dist-xsoar/content-dist]": 0.003826180000032764, - "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.0023013549999859606, - "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.0024114899999858608, - "demisto_sdk/commands/common/tests/git_util_test.py::test_find_primary_branch": 0.0005704539999555891, - "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_integration_commands": 0.062235062000013386, - "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_scripts_and_subplaybooks": 0.062102554000034615, - "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_are_playbook_entities_versions_valid_skip_unavailable": 0.17956130800007486, - "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_playbook_sub_playbook_exist": 0.004064673000073071, - "demisto_sdk/commands/common/tests/id_test.py::TestPlaybookEntitiesVersionsValid::test_playbook_sub_playbook_not_exist": 0.004363841000042612, - "demisto_sdk/commands/common/tests/id_test.py::test_invalid_is_pack_display_name_already_exist": 0.0004942209999967417, - "demisto_sdk/commands/common/tests/id_test.py::test_invalid_playbook_is_file_valid_in_id_set": 0.0058530780000296545, - "demisto_sdk/commands/common/tests/id_test.py::test_is_classifier_incident_types_found__exists": 0.0004786330000001726, - "demisto_sdk/commands/common/tests/id_test.py::test_is_classifier_incident_types_found__missing_classifier": 0.000682593000021825, - "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_negative": 0.0007630520000247998, - "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_no_scripts": 0.00046057000002974746, - "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_positive": 0.0004815879999569006, - "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_with_command_negative": 0.0007670619999657902, - "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_field_using_existing_script_with_command_positive": 0.0004718400000456313, - "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_type_using_real_playbook__happy_flow": 0.0005696640000110165, - "demisto_sdk/commands/common/tests/id_test.py::test_is_incident_type_using_real_playbook__no_matching_playbook_id": 0.0007628639999097686, - "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__classifier_not_exist": 0.0006725050000682131, - "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__exist": 0.0004568620000213741, - "demisto_sdk/commands/common/tests/id_test.py::test_is_integration_classifier_and_mapper_found__mapper_not_exist": 0.0006809409999846139, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_ignore_builtin_scripts": 0.0004540369999972427, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_negative": 0.0007481160000111231, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_no_scripts": 0.0005136380000294594, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_existing_script_positive": 0.0004586869999911869, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_script_validate_integration_commands_scripts": 0.00047136900002442417, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layout_using_script_validate_integration_commands_scripts_on_wrong_command": 0.0007394990000193502, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_negative": 0.0007675609999751032, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_no_scripts": 0.0004725819999862324, - "demisto_sdk/commands/common/tests/id_test.py::test_is_layouts_container_using_existing_script_positive": 0.000488780999944538, - "demisto_sdk/commands/common/tests/id_test.py::test_is_mapper_incident_types_found__exists": 0.00047671799995896436, - "demisto_sdk/commands/common/tests/id_test.py::test_is_mapper_incident_types_found__missing_classifier": 0.000671291999992718, - "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__bad_command_name": 0.000675340000043434, - "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__happy_flow": 0.00048208000004024143, - "demisto_sdk/commands/common/tests/id_test.py::test_is_non_real_command_found__no_depend_on_name": 0.00045836599991844196, - "demisto_sdk/commands/common/tests/id_test.py::test_is_unique_file_valid_in_set": 0.0041414980000240575, - "demisto_sdk/commands/common/tests/id_test.py::test_new_invalid_is_pack_display_name_already_exist": 0.0005149210000467974, - "demisto_sdk/commands/common/tests/id_test.py::test_new_valid_is_pack_display_name_already_exist": 0.002525531999992836, - "demisto_sdk/commands/common/tests/id_test.py::test_valid_is_pack_display_name_already_exist": 0.0004795139999487219, - "demisto_sdk/commands/common/tests/image_test.py::test_image_in_both_yml_and_directory": 0.006275288000040291, - "demisto_sdk/commands/common/tests/image_test.py::test_image_when_invalid_type": 0.006154252999976961, - "demisto_sdk/commands/common/tests/image_test.py::test_is_not_default_image": 0.012663938999992297, - "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_invalid_name[IntNameTest_image.png]": 0.026670744999989893, - "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_invalid_name[IntName_img.png]": 0.022015950000024986, - "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_name_with_valid_name": 0.024025779999988117, - "demisto_sdk/commands/common/tests/image_test.py::test_is_valid_image_positive": 0.012978266000004623, - "demisto_sdk/commands/common/tests/image_test.py::test_json_outputs_where_no_image_in_integration": 0.023509285999978147, - "demisto_sdk/commands/common/tests/image_test.py::test_no_image_integration": 0.022304947999998603, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_invalid_incident_field_type": 0.4913903659999619, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[attachments]": 0.4902770019999707, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[boolean]": 0.4742322360000344, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[date]": 0.4775031520000539, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[grid]": 0.47483616199997414, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[html]": 0.47817546400005995, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[internal]": 0.47258694099997456, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[longText]": 0.5743613409999853, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[markdown]": 0.46604146399994306, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[multiSelect]": 0.48603688099996134, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[number]": 0.48381190499998183, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[role]": 0.48222523499998715, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[shortText]": 0.5877717699999607, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[singleSelect]": 0.479164303999994, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[tagsSelect]": 0.4825530739999522, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[timer]": 0.556578247999937, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[url]": 0.47925350500003105, - "demisto_sdk/commands/common/tests/incident_field_test.py::TestIncidentFieldValidator::test_valid_incident_field_type[user]": 0.4829476520000071, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version0-old_from_version0-False]": 0.0014396550000128627, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version1-old_from_version1-True]": 0.001697656000033021, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version2-old_from_version2-False]": 0.0013789120000069488, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version3-old_from_version3-False]": 0.0013986099999669932, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_changed_from_version[current_from_version4-old_from_version4-True]": 0.0017211510000265662, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_id_equal_name[AWS EC2 Instance Misconfiguration-AWS EC2 Instance Misconfiguration-True]": 0.0014166430000273067, - "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.001649447999966469, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file0-True]": 0.0007127290000426001, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file1-False]": 0.0008579509999435686, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_including_fields[current_file2-False]": 0.0008666379999340279, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field0-True]": 0.0013679040000056375, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field1-True]": 0.0012977920000594168, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field2-True]": 0.0013182700000129444, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field3-True]": 0.001299384999981612, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field4-False]": 0.0015651610000304572, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field5-False]": 0.0014934860000153094, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field6-False]": 0.0014996279999763829, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field7-False]": 0.0014497050000272793, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_fields[extract_field8-False]": 0.0015253460000508312, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[-False]": 0.0014731090000168479, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[All-True]": 0.0013065269999970042, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[None-False]": 0.0014647230000264244, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[Specific-True]": 0.0013073810000037156, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_mode[all-False]": 0.001450175999991643, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_autoextract_no_extract_rules": 0.0011566389999870808, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[-True]": 0.0013689950000639328, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[12b3a41b-04ce-4417-89b3-4efd95d28012-False]": 0.0014796399999568166, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[abbababb-aaaa-bbbb-cccc-abcdabcdabcd-False]": 0.0014837969999916822, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_playbook_id[valid playbook-True]": 0.0015354550000097333, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[-1-True]": 0.007756593000010525, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[0-False]": 0.001586589999988064, - "demisto_sdk/commands/common/tests/incident_type_test.py::test_is_valid_version[1-False]": 0.0016130299999872477, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_invalid_grid_from_version": 0.4557823050000138, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_invalid_incident_field_type": 0.3735156619999884, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[grid-5.0.0-False]": 0.09877055700002302, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[grid-5.5.0-True]": 0.09206750500004546, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[html-6.0.0-False]": 0.192043128000023, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[html-6.1.0-True]": 0.09303946900001847, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_is_valid_indicator_type_from_version[number-5.0.0-True]": 0.08949587199992948, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[boolean]": 0.3776818069999308, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[date]": 0.3698792480000179, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[grid]": 0.36512413100001595, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[html]": 0.37485605400001987, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[longText]": 0.5200254030000906, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[markdown]": 0.3641262030000121, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[multiSelect]": 0.3727701030000503, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[number]": 0.46495232800003805, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[role]": 0.38283198599998514, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[shortText]": 0.36668408200000613, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[singleSelect]": 0.3810041009999736, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[tagsSelect]": 0.47665159199993923, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[url]": 0.4487383379999983, - "demisto_sdk/commands/common/tests/indicator_field_test.py::TestIndicatorFieldValidator::test_valid_indicator_field_type[user]": 0.3699441199999569, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args0-True-False]": 0.0012656420000212165, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args1-False-False]": 0.001694220000047153, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_default_params_default_info[args2-True-True]": 0.001529123000011623, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_display_name_contains_the_type": 0.04608742000004895, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_files_names_with_separators": 0.1414526419999902, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_files_names_without_separators": 0.18483220600001005, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_folder_name_with_separators": 0.03899498399988488, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_folder_name_without_separators": 0.11512080800002877, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_fromlicense_in_integration_parameters_fields[XSOAR-True]": 0.12011468599996533, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_fromlicense_in_integration_parameters_fields[community-False]": 0.12962760400006346, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_get_field_to_required_dict[input_json0-expected0]": 0.0006457740000769263, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current0-True]": 0.0006511549999572708, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current1-False]": 0.0009786269999949582, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_has_no_duplicate_args[current2-False]": 0.00083009000002221, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current0-True]": 0.0006292329999268986, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current1-True]": 0.000624583999922379, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_id_valid_subtype[current2-False]": 0.0008469499999819163, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_feed[True-5.0.0]": 0.009755253999969682, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_feed[True-None]": 0.00925654200000281, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[-False]": 0.000879881999992449, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[42-False]": 0.0008508160000815224, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[False-True0]": 0.0006686389999686071, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[False-True1]": 0.0006356459999210529, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[None-False]": 0.0008518589999653159, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[None-True]": 0.0006827029999953993, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[Tr\\xfce-False]": 0.0009207370000012816, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[True-True0]": 0.0006397949999268349, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[True-True1]": 0.0007413530000235369, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[\\U0001f972-False]": 0.0008947589999479533, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[false-True]": 0.000628983000012795, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value10-True]": 0.0006505640000113999, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value14-False]": 0.0008415210000407569, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value15-False]": 0.0008643730000130745, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value16-False]": 0.0008522499999799038, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value17-False]": 0.0008371430000124747, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value19-False]": 0.0009075840000036806, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value22-False]": 0.0008906429999342436, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value23-False]": 0.000877627000022585, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value24-False]": 0.0009095879999563294, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value25-False]": 0.0008623890000194478, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value26-False]": 0.0008821459999808212, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value27-False]": 0.00087012399995956, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value28-False]": 0.000864762999924551, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value3-True]": 0.0006750800000077106, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value4-True]": 0.0006669249999617932, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[hidden_value5-True]": 0.0007252839999409844, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[true-True]": 0.0006490110000072491, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_hidden_attributes_for_param[xsoar-False]": 0.0008814739999820631, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_integration_parameters_display_name": 0.05244148200000609, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_integration_path": 0.30882601199999726, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_py_file_names[IntNameTest.py]": 0.11425938600001473, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_invalid_py_file_names[IntNameTest_test.py]": 0.11561579199991456, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[community-4-False-True]": 0.1083195449999721, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[partner-4-False-True]": 0.190436429999977, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-4-False-False]": 0.03533481900001334, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-4-True-True]": 0.03552863499999148, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_api_token_in_credential_type[xsoar-9-False-True]": 0.043953316999989056, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_checkbox_param_configured_correctly[current0-True]": 0.0006640590000301927, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_checkbox_param_configured_correctly[current1-False]": 0.000829117000023416, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current0-True]": 0.0008549649999736175, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current1-False]": 0.001026203999970221, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current2-False]": 0.0010391300000378578, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_insecure_configured_correctly[current3-False]": 0.0010975479999615345, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current0-not bang-True]": 0.0007691859999567896, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current1-not bang-True]": 0.0008294689999956972, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current2-email-False]": 0.0014834190000669878, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current3-file-False]": 0.0015718439999545808, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current4-ip-True]": 0.0012234740000849342, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_outputs_for_reputations_commands_valid[current5-endpoint-True]": 0.0007968470000037087, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_partner_collector_has_xsoar_support_level_header[partner-False]": 0.011529282999958923, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_partner_collector_has_xsoar_support_level_header[xsoar-True]": 0.01236645600005204, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current0-True]": 0.0006873429999245673, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current1-False]": 0.0010345410000240918, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current2-False]": 0.0010799840000004224, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_proxy_configured_correctly[current3-False]": 0.0010243699999250566, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict0-False-False]": 0.028513995000025716, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict1-True-True]": 0.001939160000006268, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict2-False-True]": 0.0015626059999931385, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_unskipped_integration[conf_dict3-False-True]": 0.0013342189999434595, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current0-True-True]": 0.0008647239999959311, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current1-False-True]": 0.0008400570000617336, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current2-True-False]": 0.0010766689999854862, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current3-True-False]": 0.00118303900006822, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current4-True-False]": 0.0011169639999479841, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_beta_integration[current5-old5-False]": 0.0010531849999892984, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current0-True-valid_list_mock0]": 0.0033363640000061423, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current1-True-valid_list_mock1]": 0.0016928999999663574, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_category[current2-False-valid_list_mock2]": 0.0020492929999704756, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current0-True]": 0.0006591690000163908, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current1-True]": 0.0006287839999004063, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current2-False]": 0.0009361769999713943, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_argument[current3-False]": 0.001045178999959262, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current0-False]": 0.0009418980000077681, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current1-True]": 0.0006456449999632241, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current2-True]": 0.0006407960000274215, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current3-False]": 0.000913174999993771, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current4-False]": 0.0010545780000370542, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current5-False]": 0.000935105999985808, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current6-False]": 0.000901331999955346, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current7-False]": 0.0009246560000519821, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_default_array_argument_in_reputation_command[current8-True]": 0.0006829239999319725, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current0-True]": 0.0006655220000197914, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current1-True]": 0.0006184740000207967, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current2-True]": 0.000618573000053857, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current3-True]": 0.0006146169999965423, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current4-False]": 0.0008391039999651184, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current5-False]": 0.0008119239999473393, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_defaultvalue_for_checkbox[current6-False]": 0.0008017949999725715, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current0-True]": 0.0007023300000241761, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current1-True]": 0.0006336129999908735, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current2-True]": 0.0006379109998988497, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current3-False]": 0.0008329049999815652, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current4-False]": 0.000832973999990827, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current5-False]": 0.0008310719999826688, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_deprecated_integration[current6-False]": 0.0008132070000215208, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_description_positive": 0.005226562000018475, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting0-False]": 0.0006666339999696902, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting1-False]": 0.000654471000018475, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting2-True]": 0.0009596100000521801, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting3-True]": 0.0009729869999546281, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting4-False]": 0.0006570350000174585, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting5-True]": 0.0009554330000014488, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting6-False]": 0.0006382699999676333, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_configuration[configuration_setting7-False]": 0.0006258780001076047, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current0-True]": 0.0006780240000239246, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current1-False]": 0.0008431219999920359, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current2-False]": 0.0008521510000605304, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name[current3-False]": 0.0008302879999746438, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current0-True]": 0.000634193999985655, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current1-True]": 0.0006234739999513295, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current2-True]": 0.0006173709999757193, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current3-True]": 0.0006069229999638992, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_display_name_siem[current4-False]": 0.0008153509999715425, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current0-True]": 0.0007116780000160361, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current1-True]": 0.0007542660000581236, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current2-False]": 0.0010829900000430825, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_endpoint_command[current3-False]": 0.0010428449999722034, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current0-True]": 0.0006397839999863209, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current1-False]": 0.0008185679999996864, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_is_valid_xsiam_marketplace[current2-False]": 0.000804840000000695, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_name_contains_the_type": 0.040097045000038634, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_name_does_not_contains_the_type": 0.09870304500003613, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file0-old_file0-True]": 0.0010579340000163029, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file1-old_file1-False]": 0.0013724710000246887, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file2-old_file2-True]": 0.0007517829999983405, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_added_required_fields[current_file3-old_file3-True]": 0.0007343320000359199, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[added context path]": 0.0017248280000217164, - "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.001989722000018901, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[added new command]": 0.0013692360000163717, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[context changes in multiple commands]": 0.002104969000015444, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[context path change]": 0.0021041960000047766, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[deleted command outputs]": 0.002107972999908725, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[deleted outputs for two command]": 0.002053421000027811, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[no change with no outputs]": 0.0013696460000005573, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[no change]": 0.02413962299999639, - "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.0019578830000455127, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_change_to_context_path[removed context path]": 0.0019368229999940922, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current0-old0-True]": 0.0007537750000210508, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current1-old1-False]": 0.0010918069999661384, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current2-old2-False]": 0.0010475139999357452, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current3-old3-True]": 0.0007109360000185916, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current4-old4-False]": 0.0012356270000282166, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current5-old5-False]": 0.0010625630000049568, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current6-old6-False]": 0.001042776000019785, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_command_name_or_arg[current7-old7-True]": 0.000801324999940789, - "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.0015926909999848249, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file0-old_file0-True]": 0.0007657379999841396, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file1-old_file1-True]": 0.000723469999968529, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file2-old_file2-False]": 0.0010990009999432004, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_removed_yml_fields[current_file3-old_file3-False]": 0.0010687149999739631, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current0-old0-False]": 0.0010677419999751692, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current1-old1-False]": 0.0010094540000409324, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current2-old2-True]": 0.000809291999985362, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_changed_subtype[current3-old3-True]": 0.000705966999987595, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_duplicate_params[current0-True]": 0.0006638479999878655, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content0-True]": 0.0006675260000292838, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content1-False]": 0.0009617750000643355, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_incident_in_core_pack[content2-False]": 0.0009877539999934015, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file0-old_file0-True]": 0.0007560209999724066, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file1-old_file1-True]": 0.0007390080000391208, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file2-old_file2-False]": 0.001077581000004102, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_no_removed_integration_parameters[current_file3-old_file3-False]": 0.001069117000042752, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-4.5.0]": 0.0006761010000104761, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-5.5.0]": 0.0006971919999614329, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[False-None]": 0.0006693590000281802, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_feed[True-5.5.0]": 0.0008459190000280614, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_default_value[yml_data0-True]": 0.1222321969999598, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_default_value[yml_data1-False]": 0.12770168399993054, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_parameters_display_name": 0.12210907699994777, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_valid_integration_path": 0.2999838030000319, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands0-True-False-False]": 0.0011132679999832362, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands1-True-True-True]": 0.0008465500000056636, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands2-False-False-True]": 0.0009391729999492782, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands3-False-False-False]": 0.001008613000067271, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands4-False-True-True]": 0.0008333859999538618, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_verify_reputation_commands_has_reliability[commands5-False-True-True]": 0.000789283000017349, - "demisto_sdk/commands/common/tests/integration_test.py::TestIntegrationValidator::test_with_duplicate_params": 0.0007484059999569581, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_additional_info_contained": 0.0006909200000109195, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_empty_commands": 0.0006574559999421581, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_hidden_feed_reputation_field": 0.0007532250000394924, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param0]": 0.0007710490000363279, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param1]": 0.0007635549999918112, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param2]": 0.0007715699999835124, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable[param3]": 0.0007627539999930377, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_there_a_runnable_negative": 0.0009275499999148451, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current0-True]": 0.0008570389999817962, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current1-True]": 0.0008548839999775737, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current10-True]": 0.0008700129999965611, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current11-False]": 0.0011425229999986186, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current2-False]": 0.001044057999990855, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current3-False]": 0.0010245520000466968, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current4-True]": 0.0009575050000307783, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current5-True]": 0.0008110029999670587, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current6-True]": 0.0008223340000199642, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current7-True]": 0.0008448859999816705, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current8-True]": 0.0008166950000259021, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_is_valid_hidden_params[current9-False]": 0.001048454999988735, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_malformed_field": 0.014924068000027546, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_missing_field": 0.002562923000084538, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_sanity": 0.007684089999997923, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_section_field_feed": 0.0007346909999341733, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid": 0.0007541469999523542, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-4.5.0-False]": 0.0014118850000954808, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-5.5.0-True]": 0.0009502620000034767, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-5.5.1-True]": 0.000952046000008977, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-6.0.0-True]": 0.0009051590000126453, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[powershell-None-False]": 0.0012553820000107407, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[python--True]": 0.000896131999923, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_valid_pwsh[python-4.5.0-True]": 0.0008991390000687716, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[False-yml_data3--True]": 0.0217097170000784, - "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.02291214100000616, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[True-yml_data1--True]": 0.022071373000017047, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme[True-yml_data2--False]": 0.0225044610000964, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFeedParamsExist::test_verify_yml_commands_match_readme_no_readme_file": 0.022238424999954987, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces0-configs0-False]": 0.0030557530000123734, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces1-configs1-True]": 0.001283263999994233, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces2-configs2-True]": 0.0008967030000803788, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces3-configs3-False]": 0.0025172670000301878, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces4-configs4-False]": 0.0025800840000442804, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_fetch_field_per_marketplaces_value[marketpalces5-configs5-True]": 0.0008679099999540085, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_malformed_field": 0.02834634300000971, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_missing_field": 0.025763501999961136, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_missing_max_fetch_text": 0.026777541999990717, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_not_fetch": 0.02883480299999519, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_sanity": 0.024261761999980536, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsFetchParamsExist::test_valid": 0.0241459549999945, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_default_value_in_max_fetch": 0.0008287769999810735, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_fetch_time": 0.0016265350000139733, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_missing_max_fetch": 0.0013887719999843284, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_not_fetch": 0.0006225010000662223, - "demisto_sdk/commands/common/tests/integration_test.py::TestIsValidMaxFetchAndFirstFetch::test_valid": 0.0006571760000042559, - "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.0046424629999819444, - "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.0075295199999914075, - "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.014840790999983255, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content0-False-True]": 0.343949949999967, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content1-True-False]": 0.35656001799998194, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content10-True-True]": 0.10696476700002222, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content11-True-True]": 0.10389920500000471, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content12-True-True]": 0.12670739499992578, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content13-True-True]": 0.09931728400005113, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content2-True-False]": 0.24743695199998683, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content3-True-True]": 0.4163033059999748, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content4-True-True]": 0.3671503820000339, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content5-True-True]": 0.24690906799992263, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content6-True-False]": 0.11713506899997128, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content7-True-True]": 0.116684297000063, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content8-True-True]": 0.10310473400005549, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_line_ends_with_dot[yml_content9-True-True]": 0.11077872599997818, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_native_image_does_not_exist_in_yml_fail[integration_yml0-False]": 0.11423646999998027, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_native_image_does_not_exist_in_yml_fail[integration_yml1-True]": 0.10057011499998225, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs0-True]": 0.00102865000002339, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs1-False]": 0.0014279759999453745, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_is_valid_spelling_command_custom_outputs[outputs2-False]": 0.0009375390000059269, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-False-False-True]": 0.10529747099997167, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-False-True-True]": 0.1908693229999585, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-True-False-False]": 0.1707992080000622, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[False-True-True-True]": 0.1847934340000279, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-False-False-True]": 0.3067562340000336, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-False-True-True]": 0.22962350899990724, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-True-False-False]": 0.24508374499998808, - "demisto_sdk/commands/common/tests/integration_test.py::TestisContextChanged::test_validate_readme_exists[True-True-True-True]": 0.6511061930000324, - "demisto_sdk/commands/common/tests/layout_rule_test.py::test_is_valid_file": 0.10888225400009333, - "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_name_id_equal[layout_container0-True]": 0.003062324000040917, - "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_name_id_equal[layout_container1-False]": 0.004681837999953586, - "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_layout_container": 0.06443013000000519, - "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.04290701700006139, - "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.037667410000040036, - "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_mpv2_layout[layout_json0-False]": 0.0038673949999292745, - "demisto_sdk/commands/common/tests/layout_test.py::TestLayoutValidator::test_is_valid_mpv2_layout[layout_json1-True]": 0.003036315000031209, - "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.0034325349999448918, - "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.004172998000001371, - "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.0036869399999659436, - "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.004672458999948503, - "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_filter_changed_files": 0.011864466000020002, - "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_get_changed_files": 0.001053977000026407, - "demisto_sdk/commands/common/tests/legacy_git_tools_test.py::test_staged": 0.0027868399999420035, - "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path0-True]": 0.0014452550000214615, - "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path1-False]": 0.001563406999991912, - "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path2-False]": 0.0014532610000514978, - "demisto_sdk/commands/common/tests/lists_test.py::TestListValidator::test_is_valid_list[list_path3-False]": 0.0011883360000410903, - "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[ [red]foo[/red]- [red]]": 0.0006001909999895361, - "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[ foo-]": 0.0005998899999895002, - "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red foo-]": 0.0006047879999755423, - "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red][bold]foo[/bold][/red]-[red][bold]]": 0.0006059710000840823, - "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[[red]foo[/red]-[red]]": 0.0006121310000253288, - "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[foo [red]bar[/red]-]": 0.0005941479999478361, - "demisto_sdk/commands/common/tests/logger_test.py::test_get_start_escapes[foo-]": 0.0006317790000025525, - "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[ [red]foo[/red]-bar_- [red]bar_foo[/red]]": 0.0006707800000071984, - "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[ foo-bar_-bar_ foo]": 0.0006635689999825445, - "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[[red]foo[/red]-bar_-[red]bar_foo[/red]]": 0.0006720030000337829, - "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[foo [red]bar[/red]-baz_-baz_foo [red]bar[/red]]": 0.0006917519999660726, - "demisto_sdk/commands/common/tests/logger_test.py::test_insert_into_escapes[foo-bar_-bar_foo]": 0.0006865210000341904, - "demisto_sdk/commands/common/tests/logger_test.py::test_record_contains_escapes[[red]foo[/red]-True]": 0.0006729049999876224, - "demisto_sdk/commands/common/tests/logger_test.py::test_record_contains_escapes[foo-False]": 0.000628503000029923, - "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[ [red]foo[/red]-True]": 0.0006190639999772429, - "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[ foo-False]": 0.000611350000042421, - "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[[red]foo[/red]-True]": 0.0006167709999544968, - "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[foo [red]bar[/red]-False]": 0.0006023730000492833, - "demisto_sdk/commands/common/tests/logger_test.py::test_record_starts_with_escapes[foo-False]": 0.0006144260000269242, - "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[ [red]foo[/red]-True]": 0.0007788529999857019, - "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[ foo-False]": 0.0006261379999727978, - "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[[red]foo[/red]-True]": 0.0006176630000140904, - "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[foo [red]bar[/red]-False]": 0.0005989790000739958, - "demisto_sdk/commands/common/tests/logger_test.py::test_string_starts_with_escapes[foo-False]": 0.0005934970001248985, - "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json0-id_set_json0-True-True]": 0.0032531390000372085, - "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json1-id_set_json1-True-False]": 0.003419970999971156, - "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json2-id_set_json2-True-True]": 0.00283879600004866, - "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_incident_field_exist[mapper_json3-id_set_json3-True-False]": 0.003014154999902985, - "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_name_id_equal[mapper0-True]": 0.0025693149999597154, - "demisto_sdk/commands/common/tests/mapper_test.py::TestMapperValidator::test_is_name_id_equal[mapper1-False]": 0.0028597159999321775, - "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_disabled_rule": 0.004885266000030697, - "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_filename_returned_in_validations": 0.004599803999951746, - "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_fixes[## Header\\n next line-## Header\\n\\n next line]": 0.0072927639999420535, - "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.008901664000006804, - "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_fixes[##Hello-## Hello]": 0.007803077000005487, - "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[## Header\\n next line-blanks-around-headings]": 0.006520758000021942, - "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[##Hello-no-missing-space-atx]": 0.022558906000028855, - "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[

something

-no-inline-html]": 0.00721841399990808, - "demisto_sdk/commands/common/tests/markdown_lint_test.py::test_markdown_validations[\\n## Unreleased\\n\\n * Feature1\\n* feature2-list-indent]": 0.01605137699999659, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_dataset_name_matches_in_xif_and_schema": 0.09441308000003801, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_modeling_rule": 0.0949848449999422, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[schema]": 0.09805863299993689, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[testdata]": 0.10199651799996445, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[xif]": 0.09745721100000537, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_invalid_rule_file_name[yml]": 0.1112780930000099, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_missing_key_from_yml": 0.09896657699994194, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_not_empty_rules_key": 0.10697781099997883, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_not_empty_schema_key": 0.09993769699997301, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_schema_types_valid[schema0-False]": 0.0968674459999761, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_schema_types_valid[schema1-True]": 0.1862267010000096, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_valid_modeling_rule": 0.45919057600008273, - "demisto_sdk/commands/common/tests/modeling_rules_test.py::test_is_valid_rule_file_name": 0.09994831599999543, - "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.0038374490000023798, - "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.0038692679999599022, - "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.003333739999959562, - "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.0035051899998848057, - "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.003912640000066858, - "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.00407625600001893, - "demisto_sdk/commands/common/tests/native_image_test.py::test_docker_images_to_supported_native_images": 0.0030884629999832214, - "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.003200843000001896, - "demisto_sdk/commands/common/tests/native_image_test.py::test_get_native_image_reference[native:8.4-None]": 0.003169053000021904, - "demisto_sdk/commands/common/tests/native_image_test.py::test_load_native_image_config": 0.003585400000019945, - "demisto_sdk/commands/common/tests/old_release_notes_test.py::test_rn_master_diff[-False]": 0.0013106949999723838, - "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.0010029010000494054, - "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.0007555000000252221, - "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.0009565749999751461, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content0-True-valid_list_mock0]": 0.03252363299998251, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content1-False-valid_list_mock1]": 0.034621103000006315, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content2-False-valid_list_mock2]": 0.03353118299997959, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content3-False-valid_list_mock3]": 0.03300153599997202, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_categories_field_match_standard[metadata_content4-False-valid_list_mock4]": 0.03309390699996584, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_integration_pack": 0.01725333799998907, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[0.-False]": 0.03116294400001607, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1-2-1-False]": 0.031235492000007525, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1.1.1-True]": 0.03130281599993623, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[1.2-False]": 0.031154316999902676, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[12.1.5-True]": 0.033676494999951956, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[4.4.16-True]": 0.030734666000000743, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_is_version_format[blabla-False]": 0.03097782999998344, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_not_dict": 0.03269648700000971, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_empty_categories": 0.03702413000007709, - "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.03325132199995551, - "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.03333887600001617, - "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.0380305059999273, - "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.03433016499997166, - "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.035820564000005106, - "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.0334368879999829, - "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.03715316100010568, - "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.03788576699997748, - "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.03870226200001525, - "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.0384876709999844, - "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.037571595000031266, - "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.037289253999972516, - "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.0387895729999741, - "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.036964024999974754, - "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.03716443799993385, - "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.03791463800001793, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_metadata_validator_invalid_version_add_error": 0.03714287999997623, - "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.03878283000000238, - "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.03540559099997154, - "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.03928173400004198, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_name_does_not_contain_excluded_word": 0.03079755800001749, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack0]": 0.05593798499995728, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack10]": 0.09693112899998368, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack11]": 0.10569792400008282, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack12]": 0.0361097130000303, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack1]": 0.0542589860000362, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack2]": 0.06087582400004976, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack3]": 0.05125917600003049, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack4]": 0.09117800500001749, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack5]": 0.10518392500000573, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack6]": 0.09970152699992241, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack7]": 0.08192295999998578, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack8]": 0.6785895560000768, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_should_pack_be_deprecated[deprecated_pack9]": 0.10018562900000916, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content0-False]": 0.03176111099998025, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content1-False]": 0.031787563000023056, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content2-False]": 0.03161150200003249, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content3-False]": 0.031762443999980405, - "demisto_sdk/commands/common/tests/pack_metadata_validator_test.py::TestPackMetadataValidator::test_validate_pack_name[metadata_content4-True]": 0.03244290300006014, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_check_timestamp_format": 0.03239456099998961, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_file_not_found": 0.03962730699998929, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_getting_git_error": 0.041052778999983275, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_relative_path": 0.0387724629999866, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_get_master_private_repo_meta_file_running_on_master": 0.04078018700005259, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_invalid_is_pack_metadata_desc_too_long": 0.0019428049998850838, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tag_prefix[tags0-True]": 0.04009409100001449, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tag_prefix[tags1-False]": 0.05248182999991968, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags0-True-branch_tags0]": 0.04478781200009507, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags1-True-branch_tags1]": 0.03818165199999157, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags2-False-branch_tags2]": 0.038356281000005765, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags3-True-branch_tags3]": 0.037687718000029236, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags[tags4-False-branch_tags4]": 0.0406454829999916, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_tags_with_non_approved_prefix[tags0-False-branch_tags0]": 0.040791585000022224, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases0-True-branch_usecases0]": 0.03770805100003827, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases1-True-branch_usecases1]": 0.04027906499987921, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_approved_usecases[usecases2-False-branch_usecases2]": 0.04034211999993431, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_error_added_full_path": 0.0006911689999355985, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_error_added_name_only": 0.0010836629999744218, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_file_exist": 0.0008485339999992902, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[incident-tags3-True]": 0.03996594399995956, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[layout-tags4-True]": 0.03848762600000555, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[none-tags0-True]": 0.038987749999989774, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[none-tags1-False]": 0.039877851000028386, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[playbook-tags2-True]": 0.0699384270000678, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_usage_of_usecase_tag[playbook-tags5-True]": 0.06790411600007928, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata0-1.0.1-True-True]": 0.005020918000013808, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata1-1.0.1-True-False]": 0.005058216999941578, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata2-1.0.2-True-False]": 0.010497808000025088, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata3-1.0.2-False-False]": 0.004892209000047387, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_right_version[pack_metadata4-1.0.0-False-True]": 0.004639376999932665, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[community-True]": 0.03948438500009388, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[developer-True]": 0.038686246999986906, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[partner-True]": 0.039517683999974906, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[someName-False]": 0.055964247000019895, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[test-False]": 0.039987284999995154, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_is_valid_support_type[xsoar-True]": 0.03801327099995433, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_no_readme_alert_on_scripts_layouts": 0.04127095299992334, - "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.038683060000039404, - "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.04009217000003673, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_parse_file_into_list": 0.0007559710000464293, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_valid_is_pack_metadata_desc_too_long": 0.002956847000007201, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_author_image_exists_invalid": 0.004871469000022444, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_author_image_exists_valid": 0.004687487000012425, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_core_pack_dependencies": 0.03277331600003208, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_dependencies_invalid_id_set": 0.038912856000024476, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_dependencies_skip_id_set_creation": 0.3096265389999644, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_metadata": 0.05897711900007607, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_and_pack_description_no_readme_file": 0.04520643200004315, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_missing_file": 0.033875138999917453, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[ -False]": 0.038248331000033886, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[-False]": 0.03523953899997423, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_partner[Text-True]": 0.046410883000021386, - "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.03780271499999799, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[ -False]": 0.03541662800000722, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[-False]": 0.036719863999962854, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_file_is_not_empty_playbook[Text-True]": 0.034569464000014705, - "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.0350814669999977, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_invalid_images": 15.106691157000057, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_relative_url": 0.03626988700000311, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_readme_valid_images": 0.05976456700000199, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_pack_unique_files": 0.06413824000003387, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_contribute_pack_metadata_no_mail_and_url": 0.08102981800004727, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_contribute_pack_metadata_price_change": 0.07622522299999446, - "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.06952324600001702, - "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.07811400800000001, - "demisto_sdk/commands/common/tests/pack_unique_files_test.py::TestPackUniqueFilesValidator::test_validate_partner_pack_metadata_url[some_support_url-True]": 0.08096380099999578, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json0-True]": 0.0007496980000496478, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json1-True]": 0.0006606919999967431, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_added_required_fields[playbook_json2-False]": 0.0008668680000027962, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json0-True]": 0.0007006570000953616, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json1-True]": 0.0006306669999958103, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json10-False]": 0.001026144000036311, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json11-True]": 0.0006425380000791847, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json12-True]": 0.0006316680000395536, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json13-True]": 0.0006300349999719401, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json14-True]": 0.0006331719999934649, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json15-False]": 0.0008300380000036967, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json16-False]": 0.0011472900000057962, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json17-True]": 0.0011141189999648304, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json2-True]": 0.0006521960000327454, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json3-True]": 0.0006329800000344221, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json4-False]": 0.0008645730000580443, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json5-False]": 0.000835739999956786, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json6-False]": 0.0008221230000344804, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json7-True]": 0.0006433820000779633, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json8-True]": 0.0006307769999693846, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_condition_branches_handled[playbook_json9-True]": 0.0006216810000410078, - "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.048646109999936016, - "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.10798854700004767, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json0-False]": 0.0010130120000440002, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json1-True]": 0.0006689690000030168, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_delete_context_all_in_playbook[playbook_json2-True]": 0.0006463559999474455, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_id_uuid[playbook_json0-True]": 0.0006501730000536554, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_id_uuid[playbook_json1-False]": 0.0006550239999683072, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json0-True]": 0.00098566999997729, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json1-True]": 0.0010983689999193302, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json2-False]": 0.0010670599999684782, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json3-False]": 0.0008822759999702612, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json4-False]": 0.0008277640000073916, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json5-True]": 0.0006440809999617159, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_root_connected_to_all_tasks[playbook_json6-True]": 0.0006479900000044836, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_taskid_equals_id[playbook_json0-True]": 0.0006397540000193658, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_taskid_equals_id[playbook_json1-False]": 0.0006267900000125337, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_using_instance[playbook_json0-False]": 0.0008715170000073158, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_using_instance[playbook_json1-True]": 0.0006677169999989019, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current0-True]": 0.000712126999985685, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current1-True]": 0.0006676360000597015, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current2-True]": 0.0006571249999751672, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current3-False]": 0.0008851020000406606, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current4-False]": 0.0008436549999828458, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_deprecated_playbook[current5-False]": 0.0008370909999939613, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json0-True]": 0.0007131809999805228, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json1-False]": 0.0008579600000189203, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json2-False]": 0.0008898210000438667, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_is_valid_with_indicators_input[playbook_json3-False]": 0.0008642619999932322, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_name_contains_the_type": 0.0825919250000311, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_name_does_not_contains_the_type": 0.058895472999950016, - "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.010579446000065218, - "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.011541511000018545, - "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.030029631999923367, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json0-id_set_json0-True]": 0.06360736099992437, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json1-id_set_json1-False]": 0.0632307159999641, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json2-id_set_json2-True]": 0.06796259199995802, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_playbook_script_id[playbook_json3-id_set_json3-False]": 0.0641216760000134, - "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.09109564599998521, - "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.08281011700000818, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_valid_schema": 0.3386464799999658, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[False-False-True]": 0.12485048700006018, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[True-False-False]": 0.12990355200003023, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_validate_readme_exists[True-True-True]": 0.21444900199998074, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_verify_else_for_conditions_task[playbook_task_json0-False]": 0.0006962400000247726, - "demisto_sdk/commands/common/tests/playbook_test.py::TestPlaybookValidator::test_verify_else_for_conditions_task[playbook_task_json1-True]": 0.0006388529999981074, - "demisto_sdk/commands/common/tests/pre_process_rule_test.py::TestPreProcessRuleValidator::test_get_field_name": 0.0007230900000081419, - "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# BSD\\n def test():\\n pass]": 0.020104174999971747, - "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# Copyright\\n import pytest]": 0.02148577299999488, - "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# MIT\\n import test]": 0.019825385999979517, - "demisto_sdk/commands/common/tests/python_file_test.py::test_copyright_sections[# proprietary\\n\\ninput]": 0.021681457999932263, - "demisto_sdk/commands/common/tests/readme_test.py::test_air_gapped_env": 0.0032892969999807065, - "demisto_sdk/commands/common/tests/readme_test.py::test_are_modules_installed_for_verify_false_res": 0.39087387899996884, - "demisto_sdk/commands/common/tests/readme_test.py::test_check_readme_relative_image_paths": 0.0018924119999610411, - "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.021277213000018946, - "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found0-False]": 0.020266739000021516, - "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found1-False]": 0.006310335000023315, - "demisto_sdk/commands/common/tests/readme_test.py::test_context_difference_created_is_valid[difference_found2-True]": 0.005975870999975541, - "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found0-errors_ignore0-False]": 0.021229554999990796, - "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found1-errors_ignore1-False]": 0.021327878000022338, - "demisto_sdk/commands/common/tests/readme_test.py::test_context_only_runs_once_when_error_exist[errors_found2-errors_ignore2-True]": 0.025842370000020765, - "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## BSD\\n\\n---\\ninput]": 0.022612284999979693, - "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## Copyright\\ninput]": 0.020547390999979598, - "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## MIT\\n\\n----------\\ninput]": 0.020376601999942068, - "demisto_sdk/commands/common/tests/readme_test.py::test_copyright_sections[## proprietary\\n\\ninput]": 0.02256724099999019, - "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_in_integration_readme": 0.008018962999983614, - "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_in_repo_readme": 0.003420822999999018, - "demisto_sdk/commands/common/tests/readme_test.py::test_demisto_not_in_readme": 0.00692452499998808, - "demisto_sdk/commands/common/tests/readme_test.py::test_invalid_short_file": 0.0014533419999906982, - "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.012453900000082285, - "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.06260579799999277, - "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.029710220999959347, - "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.013967013000012685, - "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.2742459849999932, - "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.01291950700004918, - "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.20699005000006, - "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.0358945979999703, - "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.015543995000030009, - "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.20925200200002791, - "demisto_sdk/commands/common/tests/readme_test.py::test_is_image_path_valid": 0.0021273699999824203, - "demisto_sdk/commands/common/tests/readme_test.py::test_readme_ignore[/HelloWorld/README.md-getting started and learn how to build an integration]": 0.020570954999982405, - "demisto_sdk/commands/common/tests/readme_test.py::test_relative_url_not_valid": 0.0024495510000406284, - "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Additional Information\\n\\n## OtherSection-Additional Information]": 0.031190622000053736, - "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Known Limitations\\n\\n----------\\n-Known Limitations]": 0.021792334999929608, - "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting-Troubleshooting]": 0.021612849999996797, - "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting\\n## OtherSection-Troubleshooting]": 0.023119398999995155, - "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Troubleshooting\\n\\n---\\n## OtherSection-Troubleshooting]": 0.02150002000001905, - "demisto_sdk/commands/common/tests/readme_test.py::test_unvalid_verify_no_empty_sections[## Use Cases\\n\\n----------\\n## OtherSection-Use Cases]": 0.021673705000011978, - "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Additional Information\\n\\n### OtherSection]": 0.019964352000044983, - "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Additional Information\\n\\ninput]": 0.02226695999996764, - "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Known Limitations\\n\\n----------\\ninput]": 0.021983662000025106, - "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Troubleshooting\\n\\n---\\ninput]": 0.02014115400004357, - "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Troubleshooting\\ninput]": 0.020004418999974405, - "demisto_sdk/commands/common/tests/readme_test.py::test_valid_sections[## Use Cases\\n\\n----------\\ninput]": 0.020064209999986815, - "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.002135496000050807, - "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.002008757000055539, - "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.021276790999991135, - "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.02124096499994721, - "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.04362910899999406, - "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.021464502000014818, - "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.02157799399998339, - "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.021586270000057084, - "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.02133865700000115, - "demisto_sdk/commands/common/tests/readme_test.py::test_verify_readme_image_paths": 10.044326151999996, - "demisto_sdk/commands/common/tests/readme_test.py::test_verify_template_not_in_readme": 0.0093530719999535, - "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_has_corresponding_rn_file[None-False]": 0.005890972000031525, - "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_has_corresponding_rn_file[Some RN text-True]": 0.0053636369999594535, - "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_is_valid_file[None-False]": 0.005323222000015448, - "demisto_sdk/commands/common/tests/release_notes_config_test.py::TestReleaseNotesConfigValidator::test_is_valid_file[Some RN text-True]": 0.008411804999923334, - "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.14620187100001658, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete[-False]": 0.14546753699994497, - "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.1470075629999883, - "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.1434696820000454, - "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.16613543100004335, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_added[-False]": 0.16464910000001964, - "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.16521257899989905, - "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.1655973739999581, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_file_pack_contained_in_file_name_different_pack": 0.022807535000026746, - "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.14809707600005595, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_invalid_file_type[-False]": 0.15005654199995888, - "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.14701277299997173, - "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.14674541700003374, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_renamed_file": 0.027714892999938456, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_complete_rn_config": 0.004476913999951648, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_are_release_notes_with_author_image": 0.023015423999993345, - "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.004135215000019343, - "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.004111921999992774, - "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.0041463170000497485, - "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.0017424000000119122, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[-False]": 0.0021846169999548692, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[ #### Integrations\\n##### Some Integration-True]": 0.00639552399997001, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_has_release_notes_been_filled_out[-False]": 0.0018892960000584935, - "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.0017437939999922492, - "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.0019211750000067696, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_init": 0.0005459489999566358, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Content item dose not exist]": 0.005776931000013974, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Content type dose not exist]": 0.02988182699994013, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid content type format]": 0.005505542999969748, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid special forms missing star]": 0.005624464999982592, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_invalid_headers[Invalid special forms]": 0.005653576999975485, - "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.012808950000021468, - "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.010646745999963514, - "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.010780535999970198, - "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.012715124999999716, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[%%UPDATE_RN%%-False]": 0.0016305340000144497, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[-False]": 0.002053440999986833, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_rn_master_diff[This are sample release notes-False]": 0.0015784859999712353, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[## script_name\\n- Some description.-True]": 0.00078895100000409, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[#### Scripts\\n##### script_name\\n- Some description.-True]": 0.0007994010000516028, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[#### Scripts\\n- Some description.-True]": 0.0007478349999701095, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[##### script_name\\n- Some description.-False]": 0.0010408320000010463, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_first_level_header_exists[- Some description.-False]": 0.00629769100004296, - "demisto_sdk/commands/common/tests/release_notes_test.py::test_validate_headers": 0.057035440999982256, - "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.027331117000017002, - "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.008879928999988351, - "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.005828737000001638, - "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.009761964999938755, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[-CIDR-False]": 0.0014929060000099525, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[CIDR--False]": 0.001531296999985443, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_and_details_empty[CIDR-CIDR-True]": 0.0013757069999655869, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_equals_details[CIDR-CIDR-True]": 0.0014251289999833716, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_id_equals_details[CIDR-CIDR2-False]": 0.0015203570000608124, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[-1-False]": 0.0018950770000287775, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[0-True]": 0.0013795339999660428, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[500-True]": 0.001803875999939919, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_expiration[not_valid-False]": 0.0017988369999670795, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[CIDR-True]": 0.0016639760000316528, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[host_test-True]": 0.0014001519999737866, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4 ipv6-True]": 0.0013050149999571659, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4&ipv6-True]": 0.0013372649999041641, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4*ipv6-False]": 0.0014333259999830261, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_id_field[ipv4-ipv6-False]": 0.0014839090000009492, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[-1-True]": 0.0013725320000048669, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[0-False]": 0.0014685220000387744, - "demisto_sdk/commands/common/tests/reputation_test.py::test_is_valid_version[1-False]": 0.0014853009999455935, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_configuration_extraction[script0-expected0]": 0.0006723149999174893, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file0-old_file0-True]": 0.0013034829999583053, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file1-old_file1-False]": 0.0007634439999151255, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file2-old_file2-True]": 0.0010931900000059613, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file3-old_file3-False]": 0.0007447809999803212, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file4-old_file4-False]": 0.000767551999956595, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file5-old_file5-False]": 0.0007139029999621016, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file6-old_file6-True]": 0.0010526949999416502, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file7-old_file7-False]": 0.0007166859999188091, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_deleted_context_path[current_file8-old_file8-False]": 0.0007583240000030855, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_files_names_with_separators": 0.040830276000008325, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_files_names_without_separators": 0.11116646000004948, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_folder_name_with_separators": 0.0437597119999964, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_folder_name_without_separators": 0.1269742610000435, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_invalid_script_file_path": 0.0019034020000390228, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file0-old_file0-False]": 0.0007394290000206638, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file1-old_file1-True]": 0.001152479999973366, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file2-old_file2-False]": 0.0007392290000325374, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_added_required_args[current_file3-old_file3-False]": 0.0007435969999960435, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file0-old_file0-False]": 0.0007191710000142848, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file1-old_file1-False]": 0.0007021700000109377, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file2-old_file2-False]": 0.0007249330000718146, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file3-old_file3-False]": 0.0007383579999782341, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_arg_changed[current_file4-old_file4-True]": 0.0010558500000001914, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file0-old_file0-True]": 0.0010671419999539467, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file1-old_file1-True]": 0.001035411000032127, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file2-old_file2-False]": 0.000927359999991495, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_changed_subtype_python[current_file3-old_file3-False]": 0.0007299030000353923, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/ApiModules-False-True]": 0.0007104960000106075, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/ApiModules-True-True]": 0.0006950369999572104, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_docker_image_valid[Packs/Pack1-True-True]": 0.0007314150000183872, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content0-False-True]": 0.11368030799997086, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content1-True-False]": 0.18376087799998686, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content10-True-True]": 0.1962641860000076, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content11-True-True]": 0.10342682800001057, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content12-True-True]": 0.09894202699996413, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content13-True-True]": 0.11594353200001706, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content2-True-False]": 0.126087843999926, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content3-True-True]": 0.10398143300000129, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content4-True-True]": 0.100920149999979, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content5-True-True]": 0.10170798399997238, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content6-True-False]": 0.18212847300003432, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content7-True-True]": 0.1053828499999554, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content8-True-True]": 0.10055446199993412, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_line_ends_with_dot[yml_content9-True-True]": 0.11252456400001165, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_native_image_does_not_exist_in_yml_fail[script_yml0-False]": 0.10349450300003582, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_native_image_does_not_exist_in_yml_fail[script_yml1-True]": 0.10024800600007211, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_there_duplicates_args[current_file0-True]": 0.0008488639999768566, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_there_duplicates_args[current_file1-False]": 0.004360606999966876, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current0-True]": 0.0008151900000825663, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current1-True]": 0.0006713330000707174, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current2-True]": 0.0006677850000187391, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current3-False]": 0.0008564279999632163, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current4-False]": 0.0008297890000221742, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_deprecated_script[current5-False]": 0.0008780990000900601, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_name[current0-True]": 0.000657276999959322, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_name[current1-False]": 0.0008585220000441041, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file0-False]": 0.0009019930000135901, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file1-True]": 0.0007016500000531778, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_is_valid_subtype[current_file2-True]": 0.0006395729999439936, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_name_contains_the_type": 0.03359511700000439, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_name_does_not_contains_the_type": 0.10344368800002712, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_no_incident_in_core_pack[content0-True]": 0.0006786550000015268, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_no_incident_in_core_pack[content1-False]": 0.000989446000062344, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_runas_is_dbtrole": 0.04025748700007625, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_runas_is_not_dbtrole": 0.03392721700004131, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-4.5.0-False]": 0.0010673419999989164, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-5.5.0-True]": 0.0008869949999734672, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-5.5.1-True]": 0.0007624440000313371, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-6.0.0-True]": 0.0007527349999918442, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[powershell-None-False]": 0.0010792520000109107, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[python--True]": 0.0007184509999547117, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_pwsh[python-4.5.0-True]": 0.000714182000024266, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_valid_script_file_path": 0.0005371130000071389, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-False-False-True]": 0.10839697299991258, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-False-True-True]": 0.20306624500000225, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-True-False-False]": 0.10526498700005504, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[False-True-True-True]": 0.10836872800001629, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-False-False-True]": 0.10771801499998901, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-False-True-True]": 0.10586673100004873, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-True-False-False]": 0.12573999299996785, - "demisto_sdk/commands/common/tests/script_test.py::TestScriptValidator::test_validate_readme_exists[True-True-True-True]": 0.2759545229999958, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_get_matching_regex[Packs/XDR/NoMatch/XDR.yml-regexes1-False]": 0.0007404019999626144, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_get_matching_regex[Packs/XDR/Playbooks/XDR.yml-regexes0-(?:./)?Packs\\\\/([^\\\\\\\\\\\\/]+)\\\\/Playbooks\\\\/.*\\\\.yml]": 0.0009647009999298461, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable0-non_acceptable0-regex0]": 0.0011238370000228315, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable1-non_acceptable1-regex1]": 0.0009411849999878541, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable10-non_acceptable10-regex10]": 0.0006961679999903936, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable11-non_acceptable11-regex11]": 0.0007038029999648643, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable12-non_acceptable12-regex12]": 0.0006906200000003082, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable13-non_acceptable13-regex13]": 0.0007088619999535695, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable14-non_acceptable14-regex14]": 0.0006943449999425866, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable15-non_acceptable15-regex15]": 0.0007052560000033736, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable16-non_acceptable16-regex16]": 0.0007015780000187988, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable17-non_acceptable17-regex17]": 0.0006937240000297606, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable18-non_acceptable18-regex18]": 0.0007216569999854983, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable19-non_acceptable19-regex19]": 0.0006965599999375627, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable2-non_acceptable2-regex2]": 0.0007547490000661128, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable20-non_acceptable20-regex20]": 0.0006993750000106047, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable21-non_acceptable21-regex21]": 0.0007269750000205022, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable22-non_acceptable22-regex22]": 0.000722408000001451, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable23-non_acceptable23-regex23]": 0.0006900180000002365, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable24-non_acceptable24-regex24]": 0.0006913390000136133, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable25-non_acceptable25-regex25]": 0.0006920609999951921, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable26-non_acceptable26-regex26]": 0.0007188900000301146, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable27-non_acceptable27-regex27]": 0.0009174510000207192, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable28-non_acceptable28-regex28]": 0.0007129300000201511, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable29-non_acceptable29-regex29]": 0.0006885940000529445, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable3-non_acceptable3-regex3]": 0.0009066520000260425, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable30-non_acceptable30-regex30]": 0.000868190000062441, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable31-non_acceptable31-regex31]": 0.0007530249999945227, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable32-non_acceptable32-regex32]": 0.0012103780000529696, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable33-non_acceptable33-regex33]": 0.000694055000053595, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable4-non_acceptable4-regex4]": 0.0007250939999607908, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable5-non_acceptable5-regex5]": 0.0009318479999933516, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable6-non_acceptable6-regex6]": 0.0008802219999779481, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable7-non_acceptable7-regex7]": 0.0006924709999793777, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable8-non_acceptable8-regex8]": 0.0007111369999961425, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_packs_regex[acceptable9-non_acceptable9-regex9]": 0.0007769199999643206, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config0-True]": 0.014069481999911204, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config1-True]": 0.013399722999906771, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config2-True]": 0.013298473000020294, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config3-True]": 0.01327507999997124, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config4-True]": 0.013231508000046688, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config5-False]": 0.014415048999921964, - "demisto_sdk/commands/common/tests/structure_test.py::TestGetMatchingRegex::test_release_notes_config_scheme[release_notes_config6-False]": 0.014215265000018462, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_check_for_spaces_in_file_name": 0.21284088299995574, - "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.2590774280000119, - "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.26042005300001847, - "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.1959244010000134, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_field_with_open_ended": 0.35858028700005207, - "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.4238861740000175, - "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.6956357650000768, - "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.08999638900007767, - "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.26611294100001714, - "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.5741001909999568, - "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.03259141099994167, - "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.2739371809999511, - "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.2522471500000165, - "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.3726575510000316, - "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.2649310130000231, - "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.06097236699997666, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_indicator_with_open_ended": 0.28478977899999336, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_extension": 0.0031859069999882195, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Notinregex/report-sade.json-False]": 0.0030058589999271135, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Packs/Test/Integrations/Cymon/Cymon.yml-True]": 0.2984267990000262, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_is_valid_file_path[Packs/Test/Reports/report-sade.json-True]": 0.3703359250000062, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[fromVersion-False]": 0.38089725099996485, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[fromVersion-True]": 0.37940323700001954, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[id-False]": 0.38011345199998914, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[id-True]": 0.3788670009999464, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isAllFeeds-False]": 0.3788480219999997, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isAllFeeds-True]": 0.37611947999999984, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isFeed-False]": 0.3870096109999963, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[isFeed-True]": 0.37745139200001177, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[name-False]": 0.38654532499998595, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[name-True]": 0.37698235099992417, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[playbookId-False]": 0.3830405670000232, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[playbookId-True]": 0.38497260899998764, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[selectedFeeds-False]": 0.3810497490000557, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_job_missing_field[selectedFeeds-True]": 0.3808375550000278, - "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.11976254100000006, - "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.12084482200003777, - "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.12015484600004811, - "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.12506042199999, - "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.12223813300005304, - "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.12139454999993404, - "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.04052502500007904, - "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.0403057370000397, - "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.04160760600007052, - "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.041595574999973906, - "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.2344255279999743, - "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.17381453500001953, - "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.17336924400001408, - "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.024541744000032395, - "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.023854140999958418, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_alias_to": 0.27953823599995076, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_aliases__invalid_type": 0.36878490399999464, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_aliases__valid": 0.2894578449999585, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_validate_field_with_pretty_name": 0.29017419100006236, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[dependency_packs]": 0.1458950189999655, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[fromVersion]": 0.14375295900003948, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[id]": 0.14722584300000108, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[name]": 0.1447156380000365, - "demisto_sdk/commands/common/tests/structure_test.py::TestStructureValidator::test_wizard_missing_field[wizard]": 0.1446283750000248, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_check_for_spaces_in_file_name": 0.0017716460000087864, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_modeling_rule_is_valid[yml_data_update0]": 0.07466588099998717, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_modeling_rule_is_valid[yml_data_update1]": 0.07891326399999343, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_parsing_rule_is_valid[yml_data_update0]": 0.07893307400007643, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_deprecated_parsing_rule_is_valid[yml_data_update1]": 0.09900179399994613, - "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.2610679510000864, - "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.2623810819999335, - "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.19369204400004492, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_layout_rule_missing_layout_id_field": 0.17795756800006757, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_modeling_rule_schema_bad_type": 0.14575988600000755, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_modeling_rule_yml_missing_fromversion": 0.15626253099998166, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_parsing_rule_yml_missing_fromversion": 0.27957463200004895, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_trigger_missing_search_field": 0.17612852100006648, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xdrc_template_missing_ostype": 0.15610624300006748, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xsiam_dashboard_has_creator_mail": 0.23687945000000354, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_invalid_xsiam_report_missing_global_id": 0.3547980460000417, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_field_with_open_ended": 0.16944938400001774, - "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.42453004300006114, - "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.584101894000014, - "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.08895749999993541, - "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.08728758499995593, - "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.47162790500004803, - "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.13067177700003185, - "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.1323813589999645, - "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.24873700900002405, - "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.2492520010000021, - "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.06114225199996781, - "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.060248906000026636, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_indicator_with_open_ended": 0.28203211399994643, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_extension": 0.0022696650000284535, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Notinregex/report-sade.json-False]": 0.003332589000081043, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Packs/Test/Integrations/Cymon/Cymon.yml-True]": 0.0012856179999971573, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_is_valid_file_path[Packs/Test/Reports/report-sade.json-True]": 0.0018261269999584329, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[fromVersion-False]": 0.38127996700001177, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[fromVersion-True]": 0.3784856909999803, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[id-False]": 0.38327947699997367, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[id-True]": 0.3786039500000129, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isAllFeeds-False]": 0.38606381099998544, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isAllFeeds-True]": 0.3782952649999629, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isFeed-False]": 0.3820011320000276, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[isFeed-True]": 0.3806406369999422, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[name-False]": 0.3833021789999407, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[name-True]": 0.3764815140000337, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[playbookId-False]": 0.3807411050000269, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[playbookId-True]": 0.3791433789999701, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[selectedFeeds-False]": 0.3822916319999763, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_job_missing_field[selectedFeeds-True]": 0.3764145750000125, - "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.12088590699994484, - "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.12170449200004896, - "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.12101517700000386, - "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.11965419599999905, - "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.12296501800000215, - "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.1202288899999644, - "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.16669493399996327, - "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.167638474000114, - "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.17642316900003152, - "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.1758628630000203, - "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.6245860539999626, - "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.5655627129999061, - "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.5749077760000318, - "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.10047456699993518, - "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.10004948099998501, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_layout_rule": 0.17410132600002726, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_modeling_rule_schema": 0.13589765400001852, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_modeling_rule_yml": 0.16579700800002684, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_parsing_rule_yml": 0.15285327700001972, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_trigger": 0.20718446999995876, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xdrc_template": 0.30610630600000377, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xsiam_dashboard": 0.31952902799997673, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_valid_xsiam_report": 0.22218985900002508, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_alias_to": 0.1731612359999417, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_aliases__invalid_type": 0.1735241219999466, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_aliases__valid": 0.17171481500002983, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_validate_field_with_pretty_name": 0.279329318000066, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[dependency_packs]": 0.1453888730000017, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[fromVersion]": 0.1528383780000695, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[id]": 0.14435566899993546, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[name]": 0.1442077839999456, - "demisto_sdk/commands/common/tests/structure_test.py::TestXSIAMStructureValidator::test_wizard_missing_field[wizard]": 0.1459338650000177, - "demisto_sdk/commands/common/tests/timers_test.py::test_timers__happy_path": 0.00284061100001054, - "demisto_sdk/commands/common/tests/timers_test.py::test_timers__no_group_exist": 0.001834012000074381, - "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data0-Integrations]": 0.0006649909999509873, - "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data1-Layouts]": 0.0006297539999877699, - "demisto_sdk/commands/common/tests/tools_test.py::TestEntityAttributes::test_get_entity_id_by_entity_type[data2-Playbooks]": 0.0006256969999753892, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_camel_to_snake": 0.0006314490000249862, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files0-types0-output0]": 0.018274206999990383, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files1-types1-output1]": 0.001594877000059114, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_by_type[files2-types2-output2]": 0.0012675149999950008, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_filter_files_on_pack[AbuseDB-file_paths_list0]": 0.0006722640000020874, - "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.0005569990000253711, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[-None]": 0.0006165219999161309, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[.pack-ignore-.pack-ignore]": 0.0006187559999943915, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[.secrets-ignore-.secrets-ignore]": 0.0006154479999622708, - "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.000799360999963028, - "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.0006453540000279645, - "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.0007734819999996034, - "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.0007240009999804897, - "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.0007700470000031601, - "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.00074667300003739, - "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.0007519140000340485, - "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.000736885000037546, - "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.0007325860000264584, - "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.004345557999954508, - "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.0007481360000269888, - "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.0007083209999905193, - "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.013939680000021326, - "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.0008708760000217808, - "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.0013181910000525932, - "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.000706448000016735, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[Author_image.png-author_image]": 0.0006403759999784597, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[Packs/TestPack/Integrations/TestIntegration/.vulture_whitelist.py-vulture_whitelist]": 0.0006306079999944814, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[pack_metadata.json-metadata]": 0.0006655710000131876, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type[path19-doc_files]": 0.0006233130000623532, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_ignore_sub_categories": 0.0035991359999911765, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_no_file": 0.0005008640000596642, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_with_invalid_json": 0.004381353999974635, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_find_type_with_invalid_yml": 0.020978834000004554, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[parsingrule-external-test.json-parsingrule-external-parsingrule-test.json]": 0.0006928329999595917, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[parsingrule-test.json-parsingrule-external-parsingrule-test.json]": 0.0006809409999846139, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_generate_xsiam_normalized_name[test.json-parsingrule-parsingrule-external-test.json]": 0.0007297010000115733, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data0-Integrations-javascript]": 0.0007146940000097857, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data1-Scripts-javascript]": 0.0008011740000029022, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_code_lang[data2-Layouts-]": 0.0006897369999592229, - "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.0009719939999968119, - "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.0008215429999722801, - "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.006069725999964248, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[None-True-None]": 0.0006839160000708944, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[invalid-path.json-False-None]": 0.022770067000010386, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_dict_from_file[test-True-None]": 0.0007066090000193981, - "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.004661008000027778, - "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.0007356520000030287, - "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.003100785000015094, - "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.0031519610000145803, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_non_unicode[.json-dumps]": 0.005759806999947159, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_file_non_unicode[.yml-dumps]": 0.005967675000078998, - "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.002849266000055195, - "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.0033106470000348054, - "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.0025763369999936003, - "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.002623805999974138, - "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.05122189400003663, - "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.040468469000018104, - "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.04657033799998089, - "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.0503330819999519, - "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.06420624899999439, - "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.0035490220000156114, - "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.034383714999989934, - "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.03471687699999393, - "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.0014516790000698165, - "demisto_sdk/commands/common/tests/tools_test.py::TestGenericFunctions::test_get_yml_paths_in_dir[demisto_sdk]": 0.0008350190000214752, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetFile::test_get_yaml": 0.002486599999997452, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_not_recursive": 0.0006433989999550249, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_project_dir_is_file": 0.0004776709999987361, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_recursive": 0.0006206379999298406, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetFilesInDir::test_recursive_pack": 0.000759486999982073, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_item_has_marketplaces_field": 0.00044520899996314256, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_no_marketplaces_specified": 0.0004798150000056012, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_only_pack_has_marketplaces": 0.0005649660000131007, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetItemMarketplaces::test_pack_not_in_cache": 0.0010800150000136455, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_content": 0.03428421899997147, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_content_sanity": 0.03679276800005482, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid": 0.04888183600007778, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid_branch": 0.04954352200002177, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_invalid_origin_branch": 0.053724050000028, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_origin": 0.10761891300001025, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_origin_tag": 0.3446212869999954, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_sanity": 0.10823492199995144, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_file_tag": 0.3455259240000146, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_get_remote_md_file_origin": 0.03288369900002408, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_negative": 0.0006740169999375212, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[IPNetwork_test/file.json]": 0.0005553750000331092, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[SetGridField_test/file.json]": 0.0005490949999398254, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[StixDecodeTest/file.json]": 0.0005608559999359386, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[TestCommands/file.json]": 0.0005471300000294832, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[data_test/file.json]": 0.0005580019999911201, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[pack_metadata.json]": 0.0005575319999593376, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[some_text_file.txt]": 0.0005936280000469196, - "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.0005628200000273864, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[test_data/file.json]": 0.000559855000119569, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testcommandsfunctions/file.json]": 0.0005654440000171235, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testdata/file.json]": 0.0005594539999833614, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFile::test_should_file_skip_validation_positive[testhelperfunctions/file.json]": 0.0006463179999514068, - "demisto_sdk/commands/common/tests/tools_test.py::TestGetRemoteFileLocally::test_get_file_from_master_when_in_private_repo": 0.18231697600003827, - "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_convertion_to_id_set_name[JARM-reputation]": 0.0006022739999593796, - "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_convertion_to_id_set_name[Proofpoint Threat Response-betaintegration]": 0.0005866840000408047, - "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_no_item_id_in_specific_type": 0.0004557299999987663, - "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_no_such_type": 0.0004421560000196223, - "demisto_sdk/commands/common/tests/tools_test.py::TestIsObjectInIDSet::test_sanity": 0.0004932809999331766, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_invalid_marketplace_version": 0.0005318530000408828, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xpanse_marketplace_version": 0.0005039510000415248, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsiam_marketplace_version": 0.0005014270000174292, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_marketplace_version": 0.0005006129999856057, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_on_prem_marketplace_version": 0.0004925389999357321, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_saas_marketplace_version": 0.0004981079999879512, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_should_remove_text": 0.00048568599993359385, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_tag_only_on_edl_description[EDL_xsiam_res.md-marketplacev2]": 0.0013153539999848363, - "demisto_sdk/commands/common/tests/tools_test.py::TestMarketplaceTagParser::test_xsoar_tag_only_on_edl_description[EDL_xsoar_res.md-xsoar]": 0.00108524500006979, - "demisto_sdk/commands/common/tests/tools_test.py::TestReleaseVersion::test_get_last_release": 0.001811478999911742, - "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[0.0.0-5.0.0--1]": 0.0010049769999227465, - "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[4.5.0-4.5-0]": 0.0007221470000331465, - "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[5.0.0-0.0.0-1]": 0.0007610399999862238, - "demisto_sdk/commands/common/tests/tools_test.py::TestServerVersionCompare::test_server_version_compare[5.0.0-5.0.0-0]": 0.0007359329999871989, - "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_no_text_to_remove": 0.0006457349999777762, - "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_remove_tags_only": 0.0004655870000078721, - "demisto_sdk/commands/common/tests/tools_test.py::TestTagParser::test_remove_text": 0.0006877029999827755, - "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[-expected_result3]": 0.0006187550000618103, - "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[[\"a1\",\"b2\",\"c3\"]-expected_result1]": 0.0006178730000101496, - "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[a1,b2,c3-expected_result0]": 0.0006742779999626691, - "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[arg2-expected_result2]": 0.007642767999982425, - "demisto_sdk/commands/common/tests/tools_test.py::test_arg_to_list[arg4-expected_result4]": 0.0006062610000299173, - "demisto_sdk/commands/common/tests/tools_test.py::test_capital_case": 0.0004819299999780924, - "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_non_vs_code_format_invalid": 0.0005247889999395738, - "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_non_vs_code_format_valid": 0.001075556999978744, - "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_vs_code_format_invalid": 0.0004785619999552182, - "demisto_sdk/commands/common/tests/tools_test.py::test_compare_context_path_in_yml_and_readme_vs_code_format_valid": 0.0005004939999935232, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[\"not a field\"-]": 0.0006329810000806901, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${.=1}-]": 0.0005914830000506299, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid.[0]}-employeeid]": 0.0006147770000666242, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid.hello}-employeeid]": 0.000610299000015857, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[${employeeid}-employeeid]": 0.0006849370000168165, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[.-]": 0.0005927450000058343, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid-employeeid]": 0.0011891999999988911, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid.[0].hi-employeeid]": 0.0006089160000328775, - "demisto_sdk/commands/common/tests/tools_test.py::test_extract_field_from_mapping[employeeid.hello-employeeid]": 0.0006151879999833909, - "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee & Number-employeenumber]": 0.0006748800000195843, - "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee Number!!!-employeenumber]": 0.0005781889999525447, - "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee Number-employeenumber]": 0.0005886680000344313, - "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee, Number?-employeenumber]": 0.0005724679999730142, - "demisto_sdk/commands/common/tests/tools_test.py::test_field_to_cliname[Employee_Number-employeenumber]": 0.0005980959999192237, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path0-root/Packs/MyPack]": 0.0006441319999908046, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path1-Packs/MyPack1]": 0.0006804989999977806, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path2-Packs/MyPack2]": 0.0006231929999671593, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path3-Packs/MyPack3]": 0.0006057589999386437, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_pack_folder[input_path4-Packs/MyPack4]": 0.0005900600000359191, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[.circleci/some_file.yml-build-config-file]": 0.0006146369999555645, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[.gitlab/some_file.yml-build-config-file]": 0.0006135540000400397, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[CONTRIBUTORS.json-contributors]": 0.0005974150000156442, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/.secrets-ignore-.secrets-ignore]": 0.0005970549999005925, - "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.0006093570000302861, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Author_image.png-author_image]": 0.0005876369999668896, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/IndicatorTypes/indicator.json-reputation]": 0.000632238000093821, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.js-javascriptfile]": 0.0006192650000116373, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.ps1-powershellfile]": 0.0006088349999799902, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.py-pythonfile]": 0.0006167509999386311, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/myIntegration.xif-xiffile]": 0.0006319889999986117, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Integrations/myIntegration/some_image.png-image]": 0.000598224999919239, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Jobs/job.json-job]": 0.00059656400003405, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Lists/list.json-list]": 0.0006025330000056783, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/ReleaseNotes/1_0_0.json-releasenotesconfig]": 0.0005984260000104769, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/ReleaseNotes/1_0_0.md-releasenotes]": 0.0006197059998953591, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/README.md-readme]": 0.0006133439999871371, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/myScript/myScript.yml-script]": 0.0006088960000170118, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Scripts/script-myScript.yml-script]": 0.0006182330000115144, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/Triggers/trigger.json-trigger]": 0.0006028150000361165, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMDashboards/dashboard.json-xsiamdashboard]": 0.0006164990000456783, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMDashboards/dashboard_image.png-xsiamdashboardimage]": 0.0005918549999819334, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMReports/report.json-xsiamreport]": 0.000596301999962634, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/XSIAMReports/report_image.png-xsiamreportimage]": 0.0006273500000020249, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/doc_files/foo.md-doc_files]": 0.0006095959999470324, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/pack_metadata.json-metadata]": 0.0005944179999346488, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[Packs/myPack/some_random_file-None]": 0.0006446339999683914, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[doc_files/image.png-doc_image]": 0.0006059099999902173, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[some_random_file_not_under_Packs-None]": 0.0006042169999886937, - "demisto_sdk/commands/common/tests/tools_test.py::test_find_type_by_path[xsoar_config.json-xsoar_config]": 0.0006028749999131833, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path[input_path0-expected_output0]": 0.0006102399999576846, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path[input_path1-expected_output1]": 0.0006170309999902202, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_content_path_no_remote": 0.003373632999966958, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_core_packs": 0.20597904300001346, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[git@github.com:demisto/content-dist.git-expected_name1]": 0.0020890069999950356, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://code.pan.run/xsoar/content-dist-expected_name4]": 0.002069101000017781, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://code.pan.run/xsoar/content-dist.git-expected_name5]": 0.0019606879999400917, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://github.com/demisto/content-dist-expected_name3]": 0.0020730260000050293, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[https://github.com/demisto/content-dist.git-expected_name2]": 0.0019612190000657392, - "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.0020326620000332696, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_current_repo[ssh://git@github.com/demisto/content-dist.git-expected_name0]": 0.0022328460000267114, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_definition_name": 0.0007718310000655038, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data0-TestBrand]": 0.0021238330000414862, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data1-TestID]": 0.0021467549999556468, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data2-TestName]": 0.0021610209999494145, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data3-TestType]": 0.0023504039999693305, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data4-TestDisplay]": 0.0018558919999804857, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data5-T Name]": 0.0019475619999980154, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data6-Testlayout]": 0.0018496910000180833, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data7-D Name]": 0.0017962910000051124, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data8-R Name]": 0.0018601709999757077, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_display_name[data9-Test2]": 0.0018086040000184767, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__image": 0.027006771000003482, - "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.0007461519999765187, - "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.0007695750000493717, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__integration": 0.03590155599999889, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__layout": 0.004463638000004266, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__mapper": 0.004581857999937711, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__old_classifier": 0.004445435000036468, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__playbook": 0.0892385470000363, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__reputation": 0.004481760999908602, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_displayed_name__script": 0.02021018299996058, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current0-2]": 0.0006083860000103414, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current1-2]": 0.0006064819999664905, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current2-None]": 0.0005900410000663214, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current3-2]": 0.000584549999985029, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current4-None]": 0.000578168999936679, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current5-3]": 0.0005950389999611616, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current6-3]": 0.000595951999969202, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current7-None]": 0.0005756840000117336, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current8-3]": 0.0005829579999954149, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_display[current9-None]": 0.000591031999988445, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current0-2]": 0.0006220409999855292, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current1-2]": 0.0005961630000115292, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current2-None]": 0.0006150479999860181, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current3-None]": 0.0005978539999205168, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current4-2]": 0.0006592400000045018, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current5-3]": 0.0006061410000484102, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current6-3]": 0.0006013720000623834, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current7-None]": 0.0005909319999659601, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current8-None]": 0.0006021829999554029, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_file_version_suffix_if_exists_via_name[current9-3]": 0.000595108999959848, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_from_version": 0.0015682460000334686, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_from_version_error": 0.0011375119999570416, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__ignore_missing_test": 0.008953181000038057, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__ignore_test": 0.0372398630000248, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__no_ignore_pack": 0.026959517000079813, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__no_pack": 0.0211802949999651, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_ignore_pack_tests__test_not_ignored": 0.02735673499995528, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_last_remote_release_version": 0.0025944390000631756, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_latest_release_notes_text_invalid": 0.0008385549999729847, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[-expected_object4]": 0.004648391000046104, - "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.010003170999937083, - "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.004827315000056842, - "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.0047493000000145, - "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.004735173999961262, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[test-None]": 0.030769039999995584, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_ignore_content[test[dssa]sdf-None]": 0.004985550999947463, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_metadata": 0.003989482999941174, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths0-None-expected_packs0]": 0.0007611199999359997, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths1-None-expected_packs1]": 0.0006883340000172211, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_pack_names_from_files[file_paths2-skip_file_types2-expected_packs2]": 0.0007004860000279223, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_relative_path_from_packs_dir": 0.0004454319999354084, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_note_entries[1.3-expected_result1]": 0.023476656000013918, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_note_entries[1.3.8-expected_result0]": 0.038948693000008916, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_notes_file_path_invalid": 0.0005865839999614764, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_release_notes_file_path_valid": 0.0004800049999857947, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data0-integration-expected_commands0-expected_scripts0]": 0.0007571429999302381, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data1-script-expected_commands1-expected_scripts1]": 0.0007303329999786001, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data2-testplaybook-expected_commands2-expected_scripts2]": 0.0007449400000041351, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data3-playbook-expected_commands3-expected_scripts3]": 0.0007761879999748089, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data4-integration-expected_commands4-expected_scripts4]": 0.0007227880000755249, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_scripts_and_commands_from_yml_data[data5-script-expected_commands5-expected_scripts5]": 0.0007671109999591863, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_test_playbook_id": 0.0004624619999731294, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_to_version_no_to_version": 0.0053200240000137455, - "demisto_sdk/commands/common/tests/tools_test.py::test_get_to_version_with_to_version": 0.0059090239998909055, - "demisto_sdk/commands/common/tests/tools_test.py::test_gitlab_ci_yml_load": 0.001361061000011432, - "demisto_sdk/commands/common/tests/tools_test.py::test_has_remote[origin https://github.com/turbodog/content.git-False]": 0.0016718279999849983, - "demisto_sdk/commands/common/tests/tools_test.py::test_has_remote[upstream https://github.com/demisto/content.git-True]": 0.0013927279999847997, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config0-integration-False]": 0.0006729759999757334, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config1-integration-False]": 0.0006450139999856219, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config2-playbook-False]": 0.0006673239999486213, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_content_item_dependent_in_conf[test_config3-integration-True]": 0.0006452229999922565, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[07/21/23-False]": 0.0005781089999459255, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1-True]": 0.0006368790000124136, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[12345678-True]": 0.000599098000009235, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[123d-False0]": 0.0005859030000010534, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[123d-False1]": 0.0005712360000416083, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1626858896-True]": 0.0005984060000514546, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[1689889076-True]": 0.0005938290000244706, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[2023-07-21T12:34:56Z-False]": 0.0006159099999649698, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[21 July 2023-False]": 0.0005878770000435907, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[Thu, 21 Jul 2023 12:34:56 +0000-False]": 0.0005971939999653841, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_epoch_datetime[d-False]": 0.0005937569999900916, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata0-False]": 0.001788606000047821, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata1-False]": 0.0011971729999800118, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata2-True]": 0.0012458450000281118, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_iron_bank_pack[metadata3-False]": 0.0012142150000045149, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse-True]": 0.0006426089999536089, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse/Classifiers-False]": 0.0006020229999990079, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Packs/BitcoinAbuse/Layouts-False]": 0.0006754499999601649, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_pack_path[Unknown-False]": 0.0006560029999604922, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[-False]": 0.0005945379999729994, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[ffc9fbb0-1a73-448c-89a8-fe979e0f0c3e-True]": 0.0005971539999904962, - "demisto_sdk/commands/common/tests/tools_test.py::test_is_uuid[somestring-False]": 0.000591031999988445, - "demisto_sdk/commands/common/tests/tools_test.py::test_origin_content[origin https://github.com/demisto/content.git-True]": 0.0012843059999454454, - "demisto_sdk/commands/common/tests/tools_test.py::test_origin_content[origin https://github.com/turbodog/content.git-False]": 0.0012714429999505228, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[-expected6]": 0.0005862439999191338, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[1.yml,2.yml-expected2]": 0.0006011899999407433, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[1.yml-expected1]": 0.0006183539999824461, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[None-expected7]": 0.000571416000013869, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths0-expected0]": 0.000602373999925021, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths3-expected3]": 0.00058840699995244, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths4-expected4]": 0.0005742519999216711, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[input_paths5-expected5]": 0.0006064610000180437, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs[test/test.yml,test1/test1.yml-expected8]": 0.0005978760000857619, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs_error[1]": 0.0006688059999646612, - "demisto_sdk/commands/common/tests/tools_test.py::test_parse_multiple_path_inputs_error[True]": 0.0006214590000013231, - "demisto_sdk/commands/common/tests/tools_test.py::test_pascal_case": 0.0005018470000095476, - "demisto_sdk/commands/common/tests/tools_test.py::test_run_command_os[ls-/home/runner/work/demisto-sdk/demisto-sdk]": 0.019370642000012595, - "demisto_sdk/commands/common/tests/tools_test.py::test_run_command_os[ls-cwd1]": 0.01942926600008832, - "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.0008216030000198771, - "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[Account Enrichment-integration-test_playbooks2-False-expected_test_list2]": 0.0008222529999670769, - "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[PagerDuty v2-integration-test_playbooks0-True-expected_test_list0]": 0.0008334249999961685, - "demisto_sdk/commands/common/tests/tools_test.py::test_search_and_delete_from_conf[PagerDuty v2-integration-test_playbooks1-False-expected_test_list1]": 0.000921650000009322, - "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict0-paths0-2-expected_dict0]": 0.000754286999949727, - "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict1-paths1-2-expected_dict1]": 0.0007170679999717322, - "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict2-paths2-2-expected_dict2]": 0.0007202429999892956, - "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict3-paths3-2-expected_dict3]": 0.0007460920000426086, - "demisto_sdk/commands/common/tests/tools_test.py::test_set_value[dict4-paths4-2-expected_dict4]": 0.0007182200000102057, - "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_dir": 0.0019034100000681065, - "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_file[file.txt-c8c54e11b1cb27c3376fa82520d53ef9932a02c0]": 0.0013135499999634703, - "demisto_sdk/commands/common/tests/tools_test.py::test_sha1_file[file2.txt-f1e01f0882e1f08f00f38d0cd60a850dc9288188]": 0.0011975639999945997, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[0-False]": 0.0005881569999814928, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[1-True]": 0.0005915940000136288, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[F-False]": 0.0005769150000674017, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[False-False0]": 0.0005934180000508604, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[False-False1]": 0.0005738199999996141, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[N-False]": 0.0005821039999887034, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[NO-False]": 0.0006150069999648622, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[No-False]": 0.0007232469999962632, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[None-False]": 0.0006466550000254756, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[True-True0]": 0.0007128899999884197, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[True-True1]": 0.000594669999998132, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[Y-True]": 0.0005970450000631899, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[YeS-True]": 0.0005868659999919146, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[Yes-True]": 0.000597555000013017, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[false-False]": 0.0005815140000322572, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[n-False]": 0.0006334619999392999, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[nO-False]": 0.0005998189999445458, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[no-False]": 0.0006490310000231148, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[t-True]": 0.0006078650000063135, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[y-True]": 0.0005997790000265013, - "demisto_sdk/commands/common/tests/tools_test.py::test_str2bool[yes-True]": 0.0006035850000216669, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_default_true[None]": 0.0005066149999493064, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_default_true[]": 0.0005108630000449921, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[ ]": 0.0005295379999665784, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[None0]": 0.0005247790000453278, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[None1]": 0.000598836999984087, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[\\u05db\\u05df]": 0.0005476710000493767, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_error[]": 0.000547984000093038, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[00]": 0.0005012049999777446, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[01]": 0.000510832000031769, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[False]": 0.0005070759999625807, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[false]": 0.0005735220000815389, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[n]": 0.0005161930000099346, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_false[no]": 0.0005096620000131225, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[10]": 0.0005373820000045271, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[11]": 0.0005096589999880052, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[True]": 0.0005260710000243307, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[true]": 0.0005553260000397131, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[y]": 0.0005225350000159779, - "demisto_sdk/commands/common/tests/tools_test.py::test_string_to_bool_true[yes]": 0.0005301489999851583, - "demisto_sdk/commands/common/tests/tools_test.py::test_suppress_stdout": 0.0010357319999911851, - "demisto_sdk/commands/common/tests/tools_test.py::test_suppress_stdout_exception": 0.000798591000034321, - "demisto_sdk/commands/common/tests/tools_test.py::test_test_get_file_version_suffix_if_exists_no_name_and_no_display": 0.00044563000000152897, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[*scan,file-scan-file]": 0.0006300669999745878, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[1URL2 3Finder4 5-1url2-3finder4-5]": 0.000600381000026573, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Audit - 'X509 Sessions'-audit-x509-sessions]": 0.0005947180000021035, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File-scan-file]": 0.0005859319999785839, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan - File-scan-file]": 0.0005822660000376345, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan -File-scan-file]": 0.000591021000047931, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File--scan-file]": 0.000611009999943235, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan File-scan-file]": 0.0009414069999706953, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan IPs-scan-ips]": 0.0005931869999358241, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan- File-scan-file]": 0.0006120709999208884, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan-File-scan-file]": 0.0005910539999831599, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[Scan.File-scan-file]": 0.0005944399999862071, - "demisto_sdk/commands/common/tests/tools_test.py::test_to_kebab_case[URL Finder-url-finder]": 0.0006146869999952287, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestClassifiers::test_process_classifiers__no_types_scripts": 0.032094086000029165, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestCorrelationRules::test_process_correlation_rules": 0.008178754000027766, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDashboard::test_process_dashboard__no_script": 0.007823423000047569, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDashboard::test_process_dashboard__with_script": 0.006604535999940708, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source2-second_source2-True]": 0.002140012999973351, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source3-second_source3-False]": 0.0015108500000451386, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source4-second_source4-False]": 0.01669558600002574, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack1-first_source5-second_source5-True]": 0.0022490660000471507, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack2-first_source0-second_source0-True]": 0.0028885610000202178, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_duplicate[pack1-pack2-first_source1-second_source1-True]": 0.002149772000052508, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_has_no_duplicate": 0.0005841999999347536, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestDuplicates::test_similar_items_on_different_marketplaces": 0.00051787699999295, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestFlow::test_find_duplicates": 0.0002566890000252897, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericDefinition::test_get_generic_definition_data": 0.005572129000029236, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFields::test_process_generic_fields": 0.006338028000016038, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_fields_by_script_argument[task0]": 0.0005889199999842276, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_fields_by_script_argument[task1]": 0.0005421809999575089, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input0-True]": 0.0006987250000065615, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input1-True]": 0.0009661920000212376, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input2-True]": 0.0006229929999221895, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input3-False]": 0.0006019740000056117, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_incident_fields_by_playbook_input[playbook_input4-False]": 0.0007382569999663247, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_get_values_for_keys_recursively": 0.000558803000046737, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__exception": 0.0012349050000466377, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__marketplace_mismatch": 0.0022687140000243744, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericFunctions::test_process_general_items__sanity": 0.03438571200001661, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericModule::test_get_generic_module_data": 0.005619486999989931, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestGenericType::test_get_generic_type_data": 0.007754521000038039, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__marketplace_mismatch": 0.0018784439999990354, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__no_types_scripts": 0.03301188099999308, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields__sanity": 0.035318979999999556, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentFields::test_process_incident_fields_with_alternative_fields": 0.03297146699998166, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentTypes::test_get_incident_type_data__no_playbooks_scripts": 0.030447730999981104, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIncidentTypes::test_get_incident_type_data__sanity": 0.031078795000041737, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIndicatorType::test_get_indicator_type_data_no_integration_no_scripts": 0.030660225000019636, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIndicatorType::test_process_indicator_type__sanity": 0.03138008399997716, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__exception": 0.0035572879999676843, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__marketplace_mismatch": 0.0014149800000495816, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestIntegrations::test_process_integration__sanity": 0.04963737699995363, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[False-False]": 0.06476037799995993, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[False-True]": 0.0647553759999937, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[True-False]": 0.0720502300000021, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs[True-True]": 0.06891163200003803, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[False-False]": 0.12584497000000283, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[False-True]": 0.09433536699998513, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[True-False]": 0.09402475600001026, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_file_nonexistent[True-True]": 0.09217198900000767, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_non_job_extension[False]": 0.07003992800008518, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestJob::test_process_jobs_non_job_extension[True]": 0.06391892700003154, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayoutRules::test_process_layout_rules": 0.007263774000023204, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layouts__no_incident_types_and_fields": 0.032686645000012504, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layouts__sanity": 0.03308440400007839, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[incident-marketplacev2-False]": 0.00849533400008795, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[incident-xsoar-False]": 0.006338657000014791, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[indicator-marketplacev2-False]": 0.008572107000020424, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__excluding_from_marketplace_by_layout_type[indicator-xsoar-False]": 0.007184545999962211, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__marketplace_mismatch": 0.005406006999976398, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestLayouts::test_process_layoutscontainer__sanity": 0.033173002000012275, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__complex_value": 0.029850613000007797, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__no_types_fields": 0.03270999900001925, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__outgoing_mapper": 0.0029369910000127675, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers__sanity": 0.030438760999970782, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestMappers::test_process_mappers_alternative_field": 0.03100053899993327, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestModelingRules::test_process_modeling_rules": 0.009000675999971008, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content0-Cortex XSOAR-certified]": 0.0074523650000060115, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content1-Some Partner-certified]": 0.00675211900005479, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata[metadata_file_content2-Someone-]": 0.006699109999942721, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_metadata__marketplace_mismatch": 0.0012968710000222927, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_exception_thrown": 0.03153587800005653, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_success[False]": 0.006905254999992394, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPacksMetadata::test_process_packs_success[True]": 0.007281207000005452, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestParsingRules::test_process_parsing_rules": 0.009412074000010762, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_filters_from_playbook_tasks": 0.0007344109999962711, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data": 0.01558589400008259, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_2": 0.037797732999990785, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_bad_graph": 0.03374797600002921, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_bad_graph_2": 0.03685443699998814, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_no_fields": 0.037689219999947454, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_with_alternative_fields_second_level": 0.01205411300003334, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_playbook_data_with_alternative_fields_top_level": 0.011729697000021133, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_and_filters_from_playbook_two_conditions_task": 0.000495725999996921, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_condition_task": 0.0004815179999582142, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_inputs": 0.0014719770000510835, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_get_transformers_from_playbook_tasks": 0.0005058339999663986, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestPlaybooks::test_process_playbook__exception": 0.0038387330000091424, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestReport::test_process_report__no_script": 0.00737837799999852, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestReport::test_process_report__with_script": 0.005553712999926574, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data": 0.002961936000019705, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[demisto.executeCommand('dummy_command', {'key': 'test'});]": 0.008345023000003948, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[executeCommand('dummy_command', {'key': 'test'});]": 0.008571977000030984, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_script_executions[execute_command('dummy_command', {'key': 'test'});]": 0.010423972999888065, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_with_alternative_fields_second_level": 0.0026627390000726336, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_get_script_data_with_alternative_fields_top_level": 0.002779558000099769, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__exception": 0.002777002000016182, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__marketplace_mismatch": 0.002020059000017227, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestScripts::test_process_script__sanity_package": 0.003483280000011746, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestTriggers::test_process_triggers": 0.021201272000041627, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWidget::test_process_widget__no_script": 0.030680228999983683, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWidget::test_process_widget__with_script": 0.03563545000002932, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWizard::test_process_wizards[False]": 0.007747241999993548, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestWizard::test_process_wizards[True]": 0.009336282000106166, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXDRCTemplates::test_process_xdrc_templates": 0.007882778999999118, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXSIAMDashboards::test_process_xsiam_dashboards": 0.007354102999954648, - "demisto_sdk/commands/common/tests/update_id_set_test.py::TestXSIAMReports::test_process_xsiam_reports": 0.00732550899999751, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_add_item_to_exclusion_dict": 0.008136883999952715, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test0-False]": 0.0006452740000213453, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test1-False]": 0.0006244749999382293, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test2-True]": 0.0006150380000349287, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_does_dict_have_alternative_key[dict_to_test3-True]": 0.000629274000004898, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_get_filters_and_transformers_from_complex_value": 0.00047945499994739293, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merge_id_sets": 0.002431628000067576, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merged_id_sets_with_duplicates": 0.0019893229999752293, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_merged_id_sets_with_legal_duplicates": 0.00138243899993995, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp": 0.002768114999980753, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp_no_update_excluded_dict": 0.0011389450000365287, - "demisto_sdk/commands/common/tests/update_id_set_test.py::test_should_skip_item_by_mp_update_excluded_dict": 0.002483314999949471, - "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file0-True]": 0.0008347180000214394, - "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file1-False]": 0.0009412470000143003, - "demisto_sdk/commands/common/tests/widget_test.py::test_is_valid_fromversion[current_file2-True]": 0.0006137249999937922, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file0-None-True]": 0.001167187999953967, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file1-id_set1-False]": 0.0011734689999229886, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file2-id_set2-True]": 0.0007562000000120861, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_dependency_packs_valid[current_file3-id_set3-False]": 0.0009963079999693036, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file0-None-True]": 0.0008809729999939009, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file1-id_set1-False]": 0.0010342789999526758, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file2-id_set2-False]": 0.000977534000014657, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_integrations_in_dependency_packs[current_file3-id_set3-True]": 0.0007639350000090417, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file0-None-True]": 0.000874421999981223, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file1-id_set1-False]": 0.0009446830000001682, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file2-id_set2-False]": 0.0009520970000380657, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_are_playbooks_in_dependency_packs[current_file3-id_set3-True]": 0.0007453910000094766, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file0-True]": 0.0006758220000051551, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file1-False]": 0.0008836600000563521, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file2-False]": 0.0013969479999786927, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file3-True]": 0.0006549230000132411, - "demisto_sdk/commands/common/tests/wizards_test.py::TestWizardValidator::test_do_all_fetch_integrations_have_playbook[current_file4-True]": 0.0006615639999836276, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_multiple_errors": 0.0006747579999455411, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_no_errors": 0.0005839610000180073, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestCreateSchemaValidationResultsTable::test_create_schema_validation_results_table_one_error": 0.0007980290000091372, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[bad-id-name-name]": 0.002285877000019809, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-bad-name-name]": 0.0021296230000302785, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-id-bad-name]": 0.002112542000020312, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_keys[id-id-name-bad]": 0.0020985860000450884, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_invalid_file_bad_root_section": 0.001793777000045793, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::TestSchemaValidation::test_valid_file_content": 0.0029932139999573337, - "demisto_sdk/commands/common/tests/xsoar_config_file_test.py::test_schema_file_correct_path": 0.0010060570000405278, - "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.002917183000135992, - "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.0030495400001200323, - "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_convert_dir": 0.011096544000110953, - "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_create_classifier_from_old_classifier": 0.01009699900009764, - "demisto_sdk/commands/convert/converters/classifier/tests/classifier_6_0_0_converter_test.py::TestClassifierSixConverter::test_create_mapper_from_old_classifier": 0.0076271620002899, - "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_extract_classifier_name[classifier-Cymulate-None]": 0.000686481000002459, - "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_extract_classifier_name[classifier-Cymulate_5_9_9-Cymulate]": 0.0008312620000197057, - "demisto_sdk/commands/convert/converters/classifier/tests/classifier_base_converter_test.py::TestLayoutBaseConverter::test_get_classifiers_schema_intersection_fields": 0.007606994000070699, - "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.011739556000065932, - "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.011916055999790842, - "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.006858779999902254, - "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_convert_dir": 0.016145908000225973, - "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_get_layout_indicator_fields": 0.006421544000204449, - "demisto_sdk/commands/convert/converters/layout/tests/layout_6_0_0_converter_test.py::TestLayoutSixConverter::test_group_layouts_needing_conversion_by_layout_id": 0.014463960999592018, - "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs0-expected0]": 0.0008775669998613012, - "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs1-expected1]": 0.000680419999980586, - "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_create_layout_dict[inputs2-expected2]": 0.0007194030001755891, - "demisto_sdk/commands/convert/converters/layout/tests/layout_base_converter_test.py::TestLayoutBaseConverter::test_get_layout_dynamic_fields": 0.006061260000251423, - "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.003157812000154081, - "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.003030626000054326, - "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.003096707999930004, - "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.0034347399998750916, - "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.0031221259998801543, - "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.0030886639999607723, - "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.0030537680001998524, - "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_convert_dir": 0.015984337999952913, - "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_layout_to_incidents_dict": 0.007081676000098014, - "demisto_sdk/commands/convert/converters/layout/tests/layout_up_to_5_9_9_test.py::TestLayoutBelowSixConverter::test_layout_to_indicators_dict": 0.007796960000177933, - "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_dump_new_entity": 0.0007802770001035242, - "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.00643631999992067, - "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_entity_separators_to_underscore[abcde-abcde]": 0.0070229539999218105, - "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_entity_separators_to_underscore[axzjd-frl-axzjd_frl]": 0.006538030000001527, - "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_get_layouts_by_layout_container_type": 0.008554461999892737, - "demisto_sdk/commands/convert/converters/tests/base_converter_test.py::TestBaseConverter::test_get_layouts_by_layout_type": 0.010174674999916533, - "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.0014834889998383005, - "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.000832682999998724, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_with_degradated_files": 0.004052420999869355, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_with_passed_files": 0.0035720040000342124, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageDiffReport::test_without_files": 0.004364552999959415, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_cov_creation": 0.00353541600020435, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_fail_without_coverage_file": 0.002994567000087045, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_files": 0.007855767999672025, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_get_report_str": 0.007625329000120473, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_original_summary": 0.004603618999908576, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_export_report_function": 0.02621753800008264, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_json_min_report": 0.010458102000029612, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_print_report": 0.0101206640001692, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestCoverageReport::test_with_txt_report": 0.008646695000152249, - "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.003147653000041828, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_custom_epsilon_file[test-1.0-79.0]": 0.0032288649997553875, - "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.0032083959997635247, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_exist_file[test-70.0-69.0]": 0.002748417999555386, - "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.0027105470001060894, - "demisto_sdk/commands/coverage_analyze/tests/coverage_report_test.py::TestFileMinCoverage::test_with_new_file[test-70.0]": 0.0027681559997745353, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestCreateCoverageSummaryFile::test_creation": 0.0030865000003359455, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_the_data_file_is_valid": 0.000666573999751563, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_url_and_validate_data": 0.10290884899995945, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_json_parse_error": 0.004541793999806032, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_key_error": 0.004221695999831354, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_invalid_cached_data_that_will_raise_value_error": 0.004695120999713254, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_no_cache": 0.00028013199994347815, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_not_updated_file": 0.0043555649999689194, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_with_updated_file": 0.037270922000061546, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestCoverageSummary::TestGetFilesSummary::test_without_cached_data": 0.005238415000121677, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestExportReport::test_export_report": 0.0032855999997991603, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestExportReport::test_export_report_with_error": 0.0023618469997472857, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestFixFilePath::test_fix[HealthCheckAnalyzeLargeInvestigations-the_python_file_path]": 0.008077706000221951, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestFixFilePath::test_with_two_files[cov_file_names0]": 0.010859803000130341, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_combine": 0.009661657000151536, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_cov_file": 0.0027049760001318646, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_load_old": 0.009891413000104876, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_report_dir": 0.0026652929998363106, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestGetCoverageObj::test_without_data": 0.0030327700001180347, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::TestInvalidReportType::test_general": 0.0006215900002644048, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::TestInvalidReportType::test_with_all": 0.0006732259998898371, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_all_report_types_explicit": 0.00046871500012457545, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_one_invalid": 0.0005215229998611903, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_all": 0.0005256010001630784, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_all_and_other_values": 0.0004926900001009926, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_mixed_values": 0.0004812580000361777, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_multiple": 0.0004876000002695946, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_none": 0.00044826699991062924, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::TestParseReportType::test_with_one": 0.00044448900007409975, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[10-10]": 0.0016971460001968808, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[20-20]": 0.0011732289997326006, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[30-30]": 0.0010174479998568131, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[40-40]": 0.0009713540000575449, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[50-50]": 0.0009898859996155807, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[CRITICAL-50]": 0.0009723650002797513, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[DEBUG-10]": 0.0011015840000254684, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[ERROR-40]": 0.0009297349999997095, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[INFO-20]": 0.0009385720002228481, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_console_log_threshold[WARNING-30]": 0.000977402999978949, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list0-files_set0]": 0.002717651000011756, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list1-files_set1]": 0.002899810000144498, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list2-files_set2]": 0.0029325520001748373, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list3-files_set3]": 0.002910559999918405, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_coverage_files[dirs_list4-files_set4]": 0.003245026000058715, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[10-10]": 0.0009472169997479796, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[20-20]": 0.0008028280001326493, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[30-30]": 0.000953019000007771, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[40-40]": 0.0008014359998469445, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[50-50]": 0.0007780620003359218, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[CRITICAL-50]": 0.0008722169998236495, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[DEBUG-10]": 0.0009158299997125141, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[ERROR-40]": 0.0007828709999557759, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[INFO-20]": 0.0007964060000631434, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_file_log_threshold[WARNING-30]": 0.0008072159998846473, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_get_report_str": 0.0005769760002749535, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75-75.0]": 0.000635105000128533, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75.0%-75.0]": 0.0005940279997957987, - "demisto_sdk/commands/coverage_analyze/tests/helpers_test.py::test_percent_to_float[75.0-75.0]": 0.0006221720000212372, - "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_assert": 0.0005041200001869584, - "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_history_url": 0.002009048000218172, - "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_json_file": 0.0006666129997938697, - "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_json_min_file": 0.0006100380001043959, - "demisto_sdk/commands/coverage_analyze/tests/tools_test.py::TestGetTotalCoverage::test_get_total_coverage_from_latest_url": 0.002285693999965588, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_contains_indicator_type": 0.23896285500018166, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_content_artifacts": 0.24392399699991074, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_content_artifacts_by_id_set": 0.13464892799970585, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_create_private_content_artifacts": 0.2676207009999416, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_dump_pack": 0.08530612799995652, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_duplicate_file_failure": 0.23740485200005423, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_malformed_file_failure[json]": 0.13629633300001842, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_malformed_file_failure[yml]": 0.2381822340000781, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_sign_packs_failure[-True]": 0.005294688999811115, - "demisto_sdk/commands/create_artifacts/tests/content_artifacts_creator_test.py::test_sign_packs_failure[some_key-False]": 0.008582051999837859, - "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.0026457180001671077, - "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.013095153999756803, - "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.013297812000018894, - "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.01836963599998853, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_add_command_to_implementing_integrations_mapping": 0.003580908999992971, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_do_not_modify_specific_brand": 0.0037243489998672885, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_generic_command_that_does_not_use_a_specific_brand": 0.003587754000136556, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestAddCommandToImplementingIntegrationsMapping::test_generic_command_that_uses_a_specific_brand": 0.0036175499999444582, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_no_output": 0.08511792700005572, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_empty_pack": 1.6280095949996394, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_pack": 1.8165794599999572, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_on_specific_pack_output": 0.22822116999986974, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::TestIDSetCreator::test_create_id_set_output": 0.08890023599997221, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_command_to_implemented_integration_map": 0.004009140999869487, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_id_set_flow": 6.094000981999898, - "demisto_sdk/commands/create_id_set/tests/create_id_set_test.py::test_create_id_set_flow_xpanse": 6.022586989000047, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_dir": 0.10758609300000899, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_git": 0.11108428099993262, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_files_from_invalid_path": 0.09197402400008059, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_only_supported_files": 0.10213850400003821, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewFilesAreFound::test_find_single_file": 0.09979985899991561, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_is_performed_only_on_release_notes": 0.14357159799999408, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_with_release_notes_is_skipped_on_invalid_json_file": 0.09373755399997208, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_doc_review_with_release_notes_is_skipped_on_invalid_yml_file": 0.10938791500001344, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_get_invalid_files_from_git_with_release_notes": 0.12535879699998986, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewOnReleaseNotesOnly::test_supported_files_are_only_release_notes": 0.09644854200007558, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_failure_on_malformed_rns": 0.13325467900000376, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_invalid_misspelled_files_are_correct": 0.21817372799995383, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_invalid_misspelled_files_with_no_failure": 0.183369025999923, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPack::test_valid_spelled_files": 0.16908641999992824, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_invalid_spelled_files": 0.09229422999999315, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_malformed_release_notes": 0.09212395300005483, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_mixed_report": 0.09163030200005551, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_of_valid_spelled_files": 0.09750347100003864, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewPrinting::test_printing_skip_non_xsoar_supported_file": 1.2876967410000475, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_mix_packs": 1.3674769119999155, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_non_supported_pack": 0.11835432700002002, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_invalid_supported_pack": 0.11874676899998349, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_multiple_supported_packs": 0.12700376499998356, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_non_supported_pack": 0.11750010100001873, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::TestDocReviewXSOAROnly::test_valid_supported_pack": 0.1190948580000395, - "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.4506302159999791, - "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.21017300899995917, - "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.18746004999997012, - "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.33670195800004876, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[ThisIsCamelCase-parts0]": 0.0007292500000062319, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[thisIPIsAlsoCamelCase-parts1]": 0.0007755880000104298, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_camel_case_split[thiswordsimulatesnocamelcasesplitandshouldremainunchanged-parts2]": 0.0006027750000043852, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[AGoodSpelledWord-True-True]": 0.6848386620000042, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[Hello-False-False]": 0.09276224299998148, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorld-False-False]": 0.09355975300007913, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorld-True-True]": 0.30179703999999674, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[HelloWorrld-True-False]": 0.09260026200001903, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[Heloo-True-False]": 0.09201054099997918, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[IPs**-False-False]": 0.09167187000002741, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[IPs-False-False]": 0.09203839400004199, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvalidWord-False-False]": 0.09243600499996774, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvalidWord-True-True]": 0.3368001210000102, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[InvaliddWord-True-False]": 0.09301402399989911, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[NotAGoooodSpelllledWordddd-True-False]": 0.3751912240000479, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeTest-False-False]": 0.0910649269999908, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeTest-True-True]": 0.234797527000012, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeWord-False-False]": 0.09276870600007214, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SomeWord-True-True]": 0.23049109199996565, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[SommmmeTest-True-False]": 0.20288397000001623, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGood-False-False]": 0.09044220599997743, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGoodBoy-True-True]": 0.3570762649999324, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[VeryGoooodddd-True-False]": 0.25997534499998665, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[WordsTxxt-True-False]": 0.09164906600005907, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[bizzare-False-False]": 0.09188068900004964, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[bizzaree-True-False]": 0.09246917699999813, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalid-False-False]": 0.09282452000002195, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalid-word-kebabb-casee-True-True]": 0.09305618299998741, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[invalidd-True-False]": 0.09681486599998834, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[old-False-False]": 0.09273668599996654, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[tell-False-False]": 0.09422101600006272, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[tellllllllll-True-False]": 0.3866906719999861, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[valid-word-kebab-case-False-False]": 0.0911950710000724, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[word-False-False]": 0.09106913599998734, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_check_word_functionality[wordd-True-False]": 0.09230581299999585, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content0-expected_known_words0]": 0.09808501600002728, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content1-expected_known_words1]": 0.0979965009999546, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack[known_words_content2-expected_known_words2]": 0.10322799299996177, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_commands_name": 0.12077726700005087, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_commons_scripts_name": 0.10271331199999167, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_integrations_name": 0.10473816899997246, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_find_known_words_from_pack_ignore_scripts_name": 0.10511009399999693, - "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.3000216270000351, - "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.48267279499998494, - "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.6425695739999355, - "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.18509315300002527, - "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.3303345580000041, - "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.4682641000000558, - "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.21010774700005186, - "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.3303305710001041, - "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.4775137170000221, - "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.18868974399998706, - "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.32422900399996024, - "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.21422475999997914, - "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.1787750340000116, - "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.32506571499993697, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words0-True]": 0.021028989000058118, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words1-False]": 0.002524450999999317, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words2-True]": 0.0024898359999951936, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_pack_known_word_arg[use_pack_known_words3-True]": 0.0026665359999924476, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_replace_escape_characters[\\\\tthis\\\\rhas\\\\nescapes\\\\b- this has escapes ]": 0.0005828179999980421, - "demisto_sdk/commands/doc_reviewer/tests/doc_reviewer_test.py::test_replace_escape_characters[no escape sequence-no escape sequence]": 0.0005815449999886368, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content0-True]": 0.000969708999946306, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content1-True]": 0.0007843229999480172, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content10-True]": 0.0007032530000401493, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content11-True]": 0.0007291009999903508, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content12-True]": 0.0007083110000394299, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content13-True]": 0.0008315919999972721, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content14-True]": 0.0007307430000196291, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content15-True]": 0.0007159060000390127, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content16-False]": 0.0009839659999215655, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content17-False]": 0.001190170999905149, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content18-False]": 0.0009019039999884626, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content19-True]": 0.0007292820000088795, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content2-True]": 0.0007347289999870554, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content20-True]": 0.0007259149999185865, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content21-True]": 0.0007144639999410174, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content22-True]": 0.0007097639999642524, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content23-True]": 0.0007187110000472785, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content24-True]": 0.000730342999986533, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content25-True]": 0.0007091029999628518, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content26-False]": 0.001059726999983468, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content27-True]": 0.0007936210000138999, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content28-False]": 0.0008957309999004792, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content29-True]": 0.0007095139999364619, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content3-True]": 0.0007169379999822922, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content30-True]": 0.0006993349999788734, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content31-True]": 0.000700447000042459, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content4-True]": 0.0007196430000249165, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content5-True]": 0.000702981000017644, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content6-True]": 0.0007128599999646212, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content7-True]": 0.0007182510000234288, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content8-True]": 0.0007194729999469018, - "demisto_sdk/commands/doc_reviewer/tests/rn_checker_test.py::test_release_notes_templates[file_content9-True]": 0.0007109179999815751, - "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildCustomContent::test_build_custom_content_object": 0.06642667399995617, - "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_build_existing_pack_structure": 0.0114166829999931, - "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_build_pack_content_object": 0.01171370599996635, - "demisto_sdk/commands/download/tests/downloader_test.py::TestBuildPackContent::test_get_main_file_details": 0.0062644790000376815, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_and_extract_existing_file": 0.03380858299993861, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_file_layout": 0.006747430000075383, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_file_playbook": 0.0638086190000422, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_download_existing_no_force_skip": 0.006272544999944785, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_update_data_json": 0.0058392949999870325, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadExistingFile::test_update_data_yml": 0.022159748000035506, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_and_extract_new_integration_file": 0.02023917399998254, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_and_extract_new_script_file": 0.012262039000006553, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_new_file_layout": 0.006080425999982708, - "demisto_sdk/commands/download/tests/downloader_test.py::TestDownloadNewFile::test_download_new_file_playbook": 0.011803232999909596, - "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_all_flag": 0.2258149749999916, - "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_init_flag": 0.009163557999954719, - "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_input_flag_custom": 0.0018582280000600804, - "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_input_flag_system": 0.001927907000037976, - "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_item_type": 0.0018996260000676557, - "demisto_sdk/commands/download/tests/downloader_test.py::TestFlags::test_missing_output_flag": 0.0015988229999379655, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G S M]": 0.0007103550000238101, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G S_M]": 0.0007149130000243531, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G-S-M]": 0.0007078320000459826, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[GSM]": 0.0007193219999521716, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G_S-M]": 0.0007209270000316792, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_create_dir_name[G_S_M]": 0.0007257259999278176, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_get_custom_content_objects": 0.22863124499997411, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[automation-demisto-script-demisto]": 0.00083163199997216, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[playbook-demisto-demisto]": 0.0008580720000281872, - "demisto_sdk/commands/download/tests/downloader_test.py::TestHelperMethods::test_update_file_prefix[test-test]": 0.0010533060000170735, - "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Demisto-False]": 0.005500584000060371, - "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Integrations-False]": 0.005498329000033664, - "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs-False]": 0.00547838199997841, - "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs/TestPack-True]": 0.0055184760000202004, - "demisto_sdk/commands/download/tests/downloader_test.py::TestVerifyPackPath::test_verify_output_path_is_pack[Packs/TestPack/-True]": 0.005351726000014878, - "demisto_sdk/commands/download/tests/downloader_test.py::test_auto_replace_uuids_flag[False]": 0.22745365299999776, - "demisto_sdk/commands/download/tests/downloader_test.py::test_auto_replace_uuids_flag[True]": 0.42635076099992375, - "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content0-Playbook-False-/playbook/search-GET-expected_request_body0]": 0.0012009199999738485, - "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content1-Mapper-True-/classifier/search-POST-expected_request_body1]": 0.0011122860000227774, - "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content2-Field-True-/incidentfields-GET-expected_request_body2]": 0.0011483219999490757, - "demisto_sdk/commands/download/tests/downloader_test.py::test_build_req_params[input_content3-Classifier-False-/classifier/search-POST-expected_request_body3]": 0.0011090289999629022, - "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item0-ContentItemType.PLAYBOOK-name_1.yml]": 0.0009461540000188506, - "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item1-ContentItemType.FIELD-name_1.json]": 0.0008532429999945634, - "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.0008312519998980861, - "demisto_sdk/commands/download/tests/downloader_test.py::test_generate_system_content_file_name[content_item3-ContentItemType.FIELD-id_1.json]": 0.0008319419999907041, - "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks": 0.04801926799990497, - "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_api_failure": 0.0031867559999909645, - "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_item_does_not_exist_by_name": 0.048008749000018724, - "demisto_sdk/commands/download/tests/downloader_test.py::test_get_system_playbooks_non_api_failure": 0.0023150489999466117, - "demisto_sdk/commands/download/tests/downloader_test.py::test_invalid_regex_error": 0.002354653999987022, - "demisto_sdk/commands/download/tests/downloader_test.py::test_list_files_flag": 0.22199005699997088, - "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.json-dumps--fields0-False]": 0.00522256399995058, - "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.json-dumps--fields0-True]": 0.005992359000003944, - "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.yml-dumps--fields1-False]": 0.007455711999966752, - "demisto_sdk/commands/download/tests/downloader_test.py::test_safe_write_unicode_to_non_unicode[.yml-dumps--fields1-True]": 0.0074217380000618505, - "demisto_sdk/commands/download/tests/downloader_test.py::test_uuids_replacement_in_content_items": 0.4311221830000136, - "demisto_sdk/commands/error_code_info/tests/error_code_info_test.py::test_parse_function_parameters": 0.0010547980002684199, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_all_levels_dependencies": 0.0004764380000779056, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_first_level_dependencies": 0.0013448390000121435, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestCalculateSinglePackDependencies::test_calculate_single_pack_dependencies_mandatory_dependencies": 0.0005331749999868407, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_all_dependencies_graph": 0.002250187999948139, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_dependency_graph": 0.007827014000042709, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependencyGraph::test_build_dependency_graph_include_ignored_content": 0.00763782100005983, - "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.0010840930000313165, - "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.0008778479999591582, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies": 0.0017874249999749736, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies__commontypes_pack": 0.0017847109999706845, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies_on_filter": 0.001978102000009585, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_classifier_dependencies_with_items": 0.0018029740000429229, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnClassifiers::test_collect_generic_classifier_dependencies": 0.0018381699999849843, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnDashboard::test_collect_dashboard_dependencies": 0.0018527280000739665, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnDashboard::test_collect_dashboard_dependencies_with_items": 0.001917149000007612, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericField::test_collect_generic_field_dependencies": 0.002092683999990186, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericModules::test_collect_generic_module_dependencies": 0.0018073630000685625, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnGenericType::test_collect_generic_type_dependencies": 0.00206385000001319, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentField::test_collect_incident_field_dependencies": 0.0019407809999734127, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentField::test_collect_incident_field_dependencies_with_items": 0.0018655320000107167, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentType::test_collect_incident_type_dependencies": 0.002138078999962545, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIncidentType::test_collect_incident_type_dependencies_with_items": 0.002065003000041088, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIndicatorType::test_collect_indicator_type_dependencies": 0.0018896150000387024, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIndicatorType::test_collect_indicator_type_dependencies_with_items": 0.001908972000023823, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIntegrations::test_collect_integration_dependencies": 0.001940911000019696, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnIntegrations::test_collect_integration_dependencies_with_ites": 0.0019292609999297383, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies[False]": 0.001939960000015617, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies[True]": 0.0020996480000121664, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnJob::test_collect_job_dependencies_with_items": 0.001910252999948625, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_generic_layouts_dependencies": 0.0017307900000105292, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_incident_layouts_dependencies": 0.0021838750000711116, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_indicator_layouts_dependencies": 0.0019480240000575577, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_indicator_layouts_dependencies_with_items": 0.001958915999978217, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_collect_layouts_dependencies_filter_toversion": 0.001831798000011986, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_layouts_dependencies[pack3-pack1]": 0.006226546999926086, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnLayout::test_layouts_dependencies[pack4-pack2]": 0.005554684000003363, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies": 0.002190126999948916, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies__commontypes_pack": 0.0018119500001034794, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_on_filter": 0.001988421000078233, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_with_field_aliasing": 0.0006985339999232565, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnMappers::test_collect_mapper_dependencies_with_items": 0.002203892000011365, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[cve]": 0.00248426599995355, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[domain]": 0.0024930710000035106, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[ip]": 0.002478736000000481, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_detection_of_optional_dependencies_in_playbooks[url]": 0.002518429999952332, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbook_dependencies_with_field_aliasing": 0.0007414130000142904, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_filter": 0.0024824120000062067, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields": 0.0029566580000732756, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields__commontypes_pack": 0.0026934159999996155, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_incident_fields__phishing_pack": 0.003169534000051044, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_indicator_fields": 0.0027798579999966933, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[alienvault-get-indicators-expected_result2]": 0.002713582000012593, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[autofocus-get-indicators-expected_result1]": 0.0027552710000122715, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations[aws-get-indicators-expected_result0]": 0.002749539999967965, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_integrations_with_brand": 0.002658671000006052, - "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.0026549730000056115, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_playbook[Indeni Demo-expected_result1]": 0.002663099000017155, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_playbook[Pentera Run Scan-expected_result0]": 0.0027284209999720588, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[GetServerURL-expected_result0]": 0.0027880530000174986, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[HelloWorldScript-expected_result1]": 0.0026720849999719576, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_on_script[PrismaCloudComputeParseAuditAlert-expected_result2]": 0.002654433000031986, - "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.002715427000055115, - "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.0027255840000179887, - "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.0027883220000148867, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnPlaybook::test_collect_playbooks_dependencies_skip_unavailable": 0.002833828000007088, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnReports::test_collect_report_dependencies": 0.0019494079999731184, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnReports::test_collect_report_dependencies_with_items": 0.0018860999999787964, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve-latest]": 0.0017153720000351314, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve-search]": 0.0017233949999990728, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[cve]": 0.0017420199999946817, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[domain]": 0.0017009230000439857, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[email]": 0.0017962010000474038, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[file]": 0.0017280739999705474, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[ip]": 0.0017424019999907614, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[send-mail]": 0.0017148999999676562, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[send-notification]": 0.001720551000062187, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_detection_of_optional_dependencies[url]": 0.0017156609999915418, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts__filter_toversion": 0.001977149999959238, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_command_to_integration": 0.001997898000013265, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_command_to_integrations_and_script_executions": 0.002001925999991272, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[activemq-subscribe-expected_result1]": 0.0021287620000407514, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[alienvault-get-indicators-expected_result2]": 0.002166693999981817, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration[sslbl-get-indicators-expected_result0]": 0.002174437000007856, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_integration_with_items[activemq-subscribe-expected_result1]": 0.002130687000033049, - "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.0022476940000046852, - "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.0021563829999990958, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[GetServerURL-expected_result0]": 0.002139500999987831, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[HelloWorldScript-expected_result1]": 0.0020292560000712, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_script[PrismaCloudComputeParseAuditAlert-expected_result2]": 0.002056076000030771, - "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.002126206000014008, - "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.002095000000053915, - "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.002217308000012963, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_two_integrations": 0.0024801170000046113, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_two_scripts": 0.002084149999973306, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_depends_on_with_two_inputs": 0.002386402999945858, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnScriptAndIntegration::test_collect_scripts_script_executions": 0.0019126779999965038, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnWidgets::test_collect_widgets_dependencies": 0.0018487289999598033, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestDependsOnWidgets::test_collect_widgets_dependencies_with_item": 0.0019953340000142816, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestGetDependentOnGivenPack::test_find_dependencies_between_two_packs": 0.0016034240000522004, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestGetDependentOnGivenPack::test_get_dependent_on_given_pack": 0.14500019600001224, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_item_with_no_result[playbooks]": 0.0016577439999423405, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_item_with_no_result[scripts]": 4.106213052999976, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_0]": 0.0015370479999319286, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_1]": 0.0015320589999419099, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_playbook_item[pack_2]": 0.001525947999937216, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_0]": 0.0015623350000737446, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_1]": 0.001858998999978212, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_pack_script_item[pack_2]": 0.0015563630000201556, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_specific_pack_playbook_item": 0.0015675350001060906, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::TestIdSetFilters::test_search_for_specific_pack_script_item": 0.0015597709999042308, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_find_dependencies_using_pack_metadata": 0.0013551189999247981, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_remove_items_from_content_entities_sections": 0.0005321539999840752, - "demisto_sdk/commands/find_dependencies/tests/find_dependencies_test.py::test_remove_items_from_packs_section": 0.0023128660000111267, - "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.0019430459999512095, - "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.0019335370000703733, - "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.0019225270000333694, - "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.0018402139999693645, - "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.001953034999985448, - "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.001824997000028361, - "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.001842396999961693, - "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.0018577859999595603, - "demisto_sdk/commands/format/tests/format_module_test.py::test_format_venv_in_dir": 0.07093261499994696, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file0-data0-False]": 0.0017284040002323309, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file1-data1-False]": 0.0017570180002621782, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file2-data2-False]": 0.0017355770000904158, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file3-data3-True]": 0.0016875270000582532, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file4-data4-False]": 0.0017447940001602547, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_check_server_version[old_file5-data5-False]": 0.002689076000251589, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_default_version_lower_then_general": 0.0018166489999202895, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_data_with_oldfile": 0.0017685599998458201, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[generictype]": 0.0019155229999796575, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[job]": 0.001988580000215734, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[list]": 0.0021283999999468506, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem[pre-process-rule]": 0.0021116389998496743, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_askuser_False": 0.002388425999924948, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_askuser_True": 0.0021915080001235765, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_default_contentItem_assume_answer_False": 0.0017616469999666151, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_flag": 0.002559365000024627, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::TestFormattingFromVersionKey::test_update_fromVersion_from_oldFile": 0.001769079000041529, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[Without dot]": 0.10059567799999058, - "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.10759059700012585, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[empty string]": 0.10210824599994339, - "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.1017474109999057, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[ends with exclamation mark]": 0.0980327170000237, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[ends with question mark]": 0.09853592399986155, - "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.0980582880001748, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[url in the end]": 0.10140650999983336, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[url in the middle]": 0.09874714400029916, - "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.09996186199987278, - "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.0998582610000085, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[with dot]": 0.10399830400024257, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_integration[with single-quotes in double-quotes]": 0.09921335000012732, - "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.10240989299995817, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[Without dot]": 0.09927713800016136, - "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.10133783400010543, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[empty string]": 0.0987307249999958, - "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.10125836299994262, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[ends with exclamation mark]": 0.10599413499994625, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[ends with question mark]": 0.10931982100032656, - "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.1059995919999892, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[url in the end]": 0.10608259899981931, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[url in the middle]": 0.10527826499992443, - "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.11098485100023936, - "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.10283084000025156, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[with dot]": 0.103602488000206, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_adds_period_to_description_in_script[with single-quotes in double-quotes]": 0.11373813000022892, - "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.10607273400023587, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_initiate_file_validator[False-run_validation_on_specific_files]": 0.002443027000026632, - "demisto_sdk/commands/format/tests/test_formatting_generic_test.py::test_initiate_file_validator[True-run_validation_using_git]": 0.0023719250000340253, - "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_add_default_fromversion[False]": 0.2221203140002217, - "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_add_default_fromversion[True]": 0.2080974990001323, - "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_infer_selected_feeds[False-False]": 0.21704747600028895, - "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_infer_selected_feeds[True-True]": 0.21478912899988245, - "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_update_id[False]": 0.2126207950002481, - "demisto_sdk/commands/format/tests/test_formatting_job_test.py::test_update_id[True]": 0.21619001199997, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_arguments_to_remove": 0.10967966199996226, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_remove_unnecessary_keys": 0.11783540800001902, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_fromVersion": 0.1110459279996121, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_keyTypeMap": 0.11231941899995945, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingClassifier::test_set_transformer": 0.11328602599996884, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_all_mode_conflict[All-None]": 0.10884169199994176, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_all_mode_conflict[Specific-Specific]": 0.10916241199993237, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[-Specific-Specific]": 0.11435543599986886, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[All--All]": 0.2275477780001438, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[Specific--Specific]": 0.10667926599990096, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode[specific-Specific-Specific]": 0.10914269499971851, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_mode_bad_user_input": 0.10805531100004373, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_specific_mode_conflict[All-All]": 0.11290073000009215, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingIncidentTypes::test_format_autoextract_specific_mode_conflict[Specific-Specific]": 0.11115384599997924, - "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.23583602500002598, - "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.3155785830001605, - "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.23219307800013667, - "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.22645092899983865, - "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.23293925200005106, - "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.22919901499972184, - "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.2310039780002171, - "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.23783123000021078, - "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.23076919000004636, - "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.23052554700007022, - "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.22976559900007487, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[5.5.0]": 0.23234878599987496, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[6.2.0]": 0.2312914300000557, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingJson::test_indicator_field_format_html_type[None]": 0.23058127500007686, - "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.2391620729997612, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_remove_copy_and_dev_suffixes_from_layout": 0.10891518100015674, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_remove_unnecessary_keys": 0.10939161599981162, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_description": 0.10978554400026042, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_output_path": 0.23494209700015745, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayout::test_set_toVersion": 0.10943892199998118, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_copy_and_dev_suffixes_from_layoutcontainer": 0.11130175700009204, - "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.10590528100010488, - "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.10551599200016426, - "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.1067342380001719, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_null_fields": 0.11206626299986056, - "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.10781326300002547, - "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.10906166700010544, - "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.1073261620001631, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_remove_unnecessary_keys": 0.11164089599992622, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_description": 0.11253414099996917, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_fromVersion": 0.11428210999974908, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_group_field": 0.1126795550001134, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_set_output_path": 0.11354255800006285, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingLayoutscontainer::test_update_id": 0.11177227500002118, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingList::test_remove_unnecessary_keys": 0.23028901700013193, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingList::test_set_description": 0.10954001499999322, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_remove_unnecessary_keys": 0.10635760700006358, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_set_fromVersion": 0.10693003599999429, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingMapper::test_update_id": 0.1155704739999237, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_remove_null_fields": 0.11964392899994891, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_remove_unnecessary_keys": 0.1115541410001697, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingOldClassifier::test_set_toVersion": 0.1244048420001036, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[False-pack name-pack description-]": 0.2491761100000076, - "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.2450157300002047, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[True-pack name-pack description-]": 0.24687928499997724, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPackMetaData::test_deprecate_pack[True-pack name-pack description-pack v2]": 0.25223071000004893, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPreProcessRule::test_remove_unnecessary_keys": 0.6231186090001302, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingPreProcessRule::test_set_description": 0.21574894800005495, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ClassifierJSONFormat]": 0.33951040800002374, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ConnectionJSONFormat]": 0.22480153999981667, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[DashboardJSONFormat]": 0.2201577210000778, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IncidentFieldJSONFormat]": 0.21947604900014994, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IncidentTypesJSONFormat]": 0.22049296299996968, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IndicatorFieldJSONFormat]": 0.21988183100006609, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[IndicatorTypeJSONFormat]": 0.22043598599998404, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[LayoutBaseFormat]": 0.22256910999976753, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ListsFormat]": 0.2513454750001074, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[MapperJSONFormat]": 0.21772597399990445, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[OldClassifierJSONFormat]": 0.22549595199961914, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[PreProcessRulesFormat]": 0.2522858070001348, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[ReportJSONFormat]": 0.22139188500000273, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_exception_handling[WidgetJSONFormat]": 0.21892790699985198, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_old_classifier": 0.35161971699994865, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_json_run_format_old_layout": 0.3510630489997766, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_none_tabs_do_not_throw_exception": 0.35761339900022904, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_description": 0.22946279499979028, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_fromversion_six_new_contributor_pack": 1.6044112739998582, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_fromversion_six_new_contributor_pack_no_fromversion": 0.34192103200007296, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_orientation": 0.11031939299982696, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_recipients": 0.1096337260000837, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingReport::test_set_type": 0.11140911299980871, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_description": 0.10653042800004187, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data0]": 0.10675353400006315, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data1]": 0.10649728100020184, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data2]": 0.1063533950002693, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_from_version_for_type_metrics[widget_data3]": 0.10734257699982663, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::TestFormattingWidget::test_set_isPredefined": 0.10616858399998819, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_is_graph_related_files": 0.0076419510000960145, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_not_updating_id_in_old_json_file": 0.23404042100014522, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_not_updating_modified_id_in_old_json_file": 0.2376972880001631, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[ MyDashboard ]": 0.24202727200031404, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[MyDashboard ]": 0.24119311099980223, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_remove_spaces_end_of_id_and_name[MyDashboard]": 0.23708536399976765, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_connection_removes_unnecessary_keys": 0.0821621289999257, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_connection_updates_from_version": 0.08436577299994497, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_dashboard_negative": 0.2304917880001085, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_dashboard_positive": 0.23702346200002467, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_incidenttype_negative": 0.22811167700001533, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_incidenttype_positive": 0.40036908699994456, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_indicatortype_negative": 0.228235677000157, - "demisto_sdk/commands/format/tests/test_formatting_json_test.py::test_update_id_indicatortype_positive": 0.24224625599981664, - "demisto_sdk/commands/format/tests/test_formatting_md_test.py::TestDescriptionFormat::test_format_beta_description": 0.19612658199980615, - "demisto_sdk/commands/format/tests/test_formatting_md_test.py::TestDescriptionFormat::test_remove_community_partner_details": 0.20323401099994953, - "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url0]": 0.4270666039997195, - "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url1]": 0.4210393700000168, - "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url2]": 0.4233061369998268, - "demisto_sdk/commands/format/tests/test_formatting_readme_test.py::TestReadmeFormat::test_get_new_url_from_user[relative_url3]": 0.42188912200026607, - "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.10700451000002431, - "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.0023463480000032177, - "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.00141254499999377, - "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.0014719859999559048, - "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.0013555390000306033, - "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.001356739000016205, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc": 0.1906614440000567, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc_new_contribution": 0.04309365100004925, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_generate_integration_doc_passes_markdownlint": 0.12111254100000224, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGenerateIntegrationDoc::test_integration_doc_credentials_display_missing": 0.04397189299999127, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_examples_with_exclamation_mark": 0.0031768169999963902, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_examples_without_exclamation_mark": 0.002834738999979436, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::TestGetCommandExamples::test_ignored_lines": 0.00278579700005821, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data0-credentials_conf0-expected0]": 0.0011107909999736876, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data1-credentials_conf1-expected1]": 0.0008766149999814843, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_add_access_data_of_type_credentials[access_data2-credentials_conf2-expected2]": 0.0008573490000003403, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_disable_md_autolinks": 0.0007358020000083343, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_format_md": 0.0010467930000004344, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_command_section_with_empty_cotext_example": 0.000717135999934726, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_command_section_with_empty_cotext_list": 0.0004559000000199376, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_section": 0.0004830209999795443, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_section_human_readable": 0.00047456499999043444, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_with_permissions_section": 0.00044688299999506853, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_commands_with_permissions_section_command_doesnt_exist": 0.00044734500005461086, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_image_link[playbook name--![playbook name](../doc_files/playbook_name.png)]": 0.0007519730000922209, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_image_link[playbook name-custom_path-![playbook name](custom_path)]": 0.0006827330000191978, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_section": 0.00046520799998006623, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_section_empty": 0.0004712089999543423, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_list_with_text_section": 0.0004571729999724994, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_numbered_section": 0.000461821999977019, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_playbook_doc_passes_markdownlint": 0.062182387999996536, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input0-expected_results0]": 0.0009060910000471267, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input1-expected_results1]": 0.0007805059999554942, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input2-expected_results2]": 0.0007642559999680998, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input3-expected_results3]": 0.0007628120000049421, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input4-expected_results4]": 0.0007356639999898107, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_setup_section_with_additional_info[yml_input5-expected_results5]": 0.0007577840000863034, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section": 0.0004964149999864276, - "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.0008289159999890217, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_empty[data1-Script Data---expected_result1]": 0.0008019160000003467, - "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.0008514990000207945, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_numbered_section": 0.0005517889999850922, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_table_section_with_newlines": 0.0005048320000469175, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_generate_versions_differences_section": 0.0007036029999198945, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_complex[0-File.Name]": 0.003614984000023469, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_complex[2-No_Accessor]": 0.003597292000051766, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_input_data_simple": 0.003457840999999462, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_inputs": 0.0037479130000406258, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_outputs": 0.003563880000001518, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_playbook_dependencies": 0.003536327999995592, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_info": 0.0012092559999814512, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_inputs": 0.0012568749999672946, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_get_script_outputs": 0.0012113199999248536, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_incident_mirroring_section[yml_content0-mirroring_test_markdow]": 0.0007919979999542193, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_incident_mirroring_section[yml_content1-mirroring_test_markdow_missing]": 0.0006901169999764534, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content0-expected_result0]": 0.009614157999976669, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content1-expected_result1]": 0.013819715000011001, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content2-expected_result2]": 0.008699643000056767, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_missing_data_sections_when_generating_table_section[yml_content3-expected_result3]": 0.010080326999968747, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_scripts_in_playbook": 0.09887223499998754, - "demisto_sdk/commands/generate_docs/tests/generate_docs_test.py::test_string_escape_md": 0.0008214129999259967, - "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_generate_integration_package": 0.15631595400031983, - "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_generate_unified_integration_yml": 0.16148539799996797, - "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_py_code_generated_from_config": 0.0963042419998601, - "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_query_response_root_object": 0.18525424399990698, - "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::TestCodeGenerator::test_yml_generated_from_config": 0.16801544099962484, - "demisto_sdk/commands/generate_integration/tests/code_generator_test.py::test_json_body_to_code": 0.000560497999913423, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_array_create_wrap": 0.00042203799989692925, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_coalesce_wrap": 0.00043576299981396005, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[ggg-String]": 0.0005787100001271028, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[int-Number]": 0.0005920149999383284, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_raw_type_to_xdm_type[string-String]": 0.0006019330000981427, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_to_xdm_type[6-Number-to_number(6)]": 0.0006471880001299724, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_convert_to_xdm_type[test-String-to_string(test)]": 0.0006532780000725324, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_file": 0.0011657550001018535, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_file_coalesce": 0.0012039559999266203, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_xif_header": 0.0004532149998794921, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_create_yml_file": 0.007647637999980361, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_data_from_all_xdm_schema": 0.0005752740000843914, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[arr-res3]": 0.0005715769998460019, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[hello-res0]": 0.0005826579999848036, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[r-res6]": 0.0005788100002064311, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[t-res5]": 0.0005871859998478612, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[test.bla-res1]": 0.000577187999851958, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[test.gg.hh-res2]": 0.0005823269998472824, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data[y.j-res4]": 0.0005732900001476082, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data_empty_event": 0.00046461700003419537, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_extract_raw_type_data_event_not_dict": 0.00045645199975297146, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_handle_raw_evnet_data": 0.0004620320003141387, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_init_mapping_field_list": 0.001180272000055993, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_json_extract_array_wrap": 0.0004398210000999825, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_json_extract_scalar_wrap": 0.00046111099959489366, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_read_mapping_file": 0.000574782000057894, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_read_mapping_file_invalid_header_names": 0.0005620579997867026, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_replace_last_char[-]": 0.000652526999829206, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_replace_last_char[hello,\\n-hello;\\n]": 0.0007785230002355092, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_snake_to_camel_case": 0.0004633429998648353, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_to_number_wrap": 0.00044322799999463314, - "demisto_sdk/commands/generate_modeling_rules/tests/generate_modeling_rules_test.py::test_to_string_wrap": 0.00042689699989750807, - "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_generate_context_from_outputs": 2.348577869000053, - "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_generate_integration_context": 0.07140496400000984, - "demisto_sdk/commands/generate_outputs/generate_context/tests/generate_integration_context_test.py::test_insert_outputs": 0.0014701629999080978, - "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_ai21_api_request": 0.007214219999980287, - "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_build_description_with_probabilities": 0.000532352999982777, - "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions": 0.022846039000057772, - "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions_interactive": 0.02064457999995284, - "demisto_sdk/commands/generate_outputs/generate_descriptions/tests/generate_descriptions_test.py::test_generate_ai_descriptions_interactive_similar_path": 0.02337727899998754, - "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_generate_integration_context_flow[-e-requires an argument-2]": 0.0022602069999493324, - "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.0029216209999844978, - "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.002995137999960207, - "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args0-please include a `command` argument.]": 0.0045089029999871855, - "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args1-please include a `prefix` argument.]": 0.002944985999988603, - "demisto_sdk/commands/generate_outputs/generate_outputs_test.py::test_generate_outputs_json_to_outputs_flow[args2-None]": 0.002728871999920557, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[0-Number]": 0.0005957320000788968, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[1-Number]": 0.0005820460000336425, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[False-Boolean]": 0.0005741819999229847, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[True-Boolean]": 0.0006119530000319173, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_determine_type[test string-String]": 0.008931334999999763, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__a_list_of_dict": 0.0015902569999752814, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__description_dictionary[None-dictionary0]": 0.0026420690000463765, - "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.0027449809999779973, - "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.0026610139999547755, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__description_file": 0.00263663999999153, - "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.0014286260000062612, - "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.001411163000000215, - "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.0014081870000381969, - "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.0013900339999963762, - "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.002902196999912121, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__empty_list_or_dict": 0.0015882429999578562, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[-'']": 0.0019189300000448384, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[None-'']": 0.0016877390000331616, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary0-'']": 0.0016912449999608725, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary1-'']": 0.001684252999950786, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_description_dictionary[description_dictionary4-'']": 0.0017141499999979715, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__invalid_json": 0.0010392600000272978, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs__json_from_file": 0.0017574800000375035, - "demisto_sdk/commands/generate_outputs/json_to_outputs/tests/json_to_outputs_test.py::test_json_to_outputs_return_object": 0.0005463089999011572, - "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.24331345099994905, - "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.24317876899999646, - "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__integration_not_under_packs": 0.05563388500013389, - "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__integration_under_packs": 0.2450995139997758, - "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_non_yml_output_file": 0.003570953000235022, - "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_output_file": 0.057368823999922824, - "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::TestGenerateTestPlaybook::test_generate_test_playbook__specified_output_folder": 0.0577484689999892, - "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::test_generate_test_playbook_with_command_examples[None-8]": 0.030237088000149015, - "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.024044862999971883, - "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.002996953000092617, - "demisto_sdk/commands/generate_test_playbook/tests/test_playbook_generator_test.py::test_get_command_examples[command_examples-excepted_result0]": 0.0031925769999361364, - "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args0-malwarebazaar_all.py]": 0.32709484900010466, - "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args1-malwarebazaar_specific_command.py]": 0.297334729999875, - "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::TestUnitTestsGenerator::test_tests_generated_successfully[args2-malwarebazaar_all.py]": 0.9279097720000209, - "demisto_sdk/commands/generate_unit_tests/tests/generate_unit_tests_test.py::test_get_client_init_args": 0.002760959999932311, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_command_with_file_output": 0.0063214339999717595, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_command_without_docstring": 0.006332005000047047, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_enum_inputs_from_input_list": 0.007482259999960661, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[deprecated=False]": 0.006362160999970001, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[deprecated=True]": 0.006588884000109374, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[execution=False]": 0.006400522999967961, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[execution=True]": 0.006312570000034157, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_generate_command_generic[name]": 0.006798606999950607, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_input_list_overrides_docstring": 0.006395032000000356, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[basic]": 0.007238947000018925, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[default]": 0.006619531000012557, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[default_value]": 0.006719226000029721, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[execution0]": 0.006654895999929522, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[execution1]": 0.006717324000021563, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[invalid type]": 0.006774531000019124, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[invalid]": 0.0077663919999508835, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[isArray=False]": 0.006563486999993984, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[isArray=True]": 0.006645540000022265, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[multiple flags]": 0.006661019000034685, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[options]": 0.006559388999960447, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[required]": 0.006700533000014275, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[secret]": 0.007678656999985378, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_declaration[type is enum]": 0.006633737999948153, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[default=False]": 0.006474511999954302, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[default=True]": 0.00644837199996573, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[defaultValue]": 0.0065122610000116765, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[description]": 0.0064360790000250745, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[execution=False]": 0.006557545999953618, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[execution=True]": 0.006426831999988281, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[is_array=False]": 0.007406709999997929, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[is_array=True]": 0.006501391000028889, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[name]": 0.00825815899997906, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[options]": 0.0064442639999811036, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[required=False]": 0.00651004799999555, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[required=True]": 0.0064098489999651065, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[secret=False]": 0.006519816000093215, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_inputs_from_input_list[secret=True]": 0.006456116000038037, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_long_description": 0.006106554000041342, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_multiple_output_prefixes_in_declaration": 0.006525677000013275, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_multiple_output_prefixes_in_list": 0.006748109999989538, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_output_list_overrides_docstring": 0.006450926999946205, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[invalid type]": 0.00655188400003226, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[long description]": 0.007529297000075985, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[missing type]": 0.006434826999907273, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type bool]": 0.006468830000017078, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type date]": 0.006456226000011611, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type dict]": 0.006564608999951815, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type float]": 0.006471805999979097, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type int]": 0.006456406000040715, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_declaration[type str]": 0.006435198000019682, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_from_output_list": 0.00632032400000071, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[bool]": 0.006652062000000569, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[datetime]": 0.006655297000008886, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[dict]": 0.006713785999977517, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[float]": 0.0066501000000016575, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[int]": 0.006713126999954966, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[list]": 0.007671924999954172, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_outputs_types_from_output_list[str]": 0.006635240999969483, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_restored_args": 0.00667577700005495, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestCommandGeneration::test_restored_args_not_in_command_metadata": 0.006279096000014306, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=AUTH]": 0.006001768999965407, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=BOOLEAN]": 0.005997580999974161, - "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.006080756000017118, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=ENCRYPTED]": 0.006950867999989896, - "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.006128209999928913, - "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.006200189000026057, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=NUMBER]": 0.0060193610000283115, - "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.00601558400006752, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_conf_keys_parameter_types[key_type=STRING]": 0.005949720999979036, - "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.00613827299997638, - "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.005989715999987766, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_enum_inputs_in_conf_key": 0.0070730580000031296, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[additional_info]": 0.0059793959999865365, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[default_value]": 0.005978574999971897, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[display]": 0.005866536999917571, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[name]": 0.006917458000032184, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[options]": 0.005980910000005224, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[required=False]": 0.005900458999974489, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_conf_keys[required=True]": 0.005904337000004034, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[category]": 0.00675859099999343, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_classifier]": 0.005835079000007681, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled=False]": 0.006758190999960334, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled=True]": 0.006016596999984358, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled_x2=False]": 0.005852500000003147, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_enabled_x2=True]": 0.005909626000004664, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[default_mapper_in]": 0.005769515000054071, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[deprecated=False]": 0.005818907000048057, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[deprecated=True]": 0.005816202000005433, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[description]": 0.005851579000022866, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[detailed_description]": 0.0057668700000022, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[display]": 0.005842170000050828, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[fromversion]": 0.0058259099999986574, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[image]": 0.005806005000010828, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[integration_name]": 0.0056762119999689276, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[integration_name_x2]": 0.005856999000002361, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[system=False]": 0.005740532000061194, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[system=True]": 0.005761249000045154, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[tests]": 0.005699974999970436, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_configuration[timeout]": 0.005833846000030007, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[docker_image]": 0.005829305000020213, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_feed=False]": 0.005893356000001404, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_feed=True]": 0.005789673000037965, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_fetch=False]": 0.005882135999968341, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_fetch=True]": 0.006798984999988988, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_runonce=False]": 0.005927480000025298, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[is_runonce=True]": 0.005780585000024985, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running=False]": 0.005855334999978368, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running=True]": 0.005853723000029731, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[long_running_port]": 0.005907486000069184, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[subtype]": 0.006026434000034442, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestConfigurationGeneration::test_generate_general_script_configuration[type]": 0.005892765000055533, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_generation_with_implicit_imports_in_declarations": 0.006267234999995708, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_generation_with_subscriptable_imports": 0.005563059999985853, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestImportDependencies::test_problematic_imports_in_code_yml_generation": 0.010273178000034022, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_complete_integration_generation": 0.007073309000020345, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_file_importing_failure": 0.006763298999999279, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_no_metadata_collector_defined": 0.006705660000022817, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_undefined_spec_failure": 0.0060205430000905835, - "demisto_sdk/commands/generate_yml_from_python/tests/generate_yml_from_python_test.py::TestYMLGeneration::test_yml_file_making": 0.03168449999998302, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_no_conflict[TestPack]": 0.0029284240001743456, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_with_conflict[TestPack]": 0.003103961999840976, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_ensure_unique_pack_dir_name_with_conflict_and_version_suffix[TestPack]": 0.003424831000074846, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_format_converted_pack[False-TestPack]": 0.004054635999864331, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestEnsureUniquePackDirName::test_format_converted_pack[True-TestPack]": 0.004448984000191558, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_format_user_input": 0.005514853000022413, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[0-]": 0.0011368220002623275, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[1-]": 0.0010843430000022636, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[11-##### New: DemistoUploadFileToIncident\\n]": 0.001084774999981164, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[2-]": 0.001041103000034127, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[3-#### Integrations\\n]": 0.0010694659999899159, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[4-]": 0.0010800860002291301, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[5-##### Core REST API\\n]": 0.001060499000004711, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[6-]": 0.0010558299998137954, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[7-- %%UPDATE_RN%%\\n]": 0.001054899000109799, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_get_previous_nonempty_line[9-#### Scripts\\n]": 0.0010539170000356535, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_replace_RN_new_entity_in_existing_pack": 0.00481844099999762, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::TestReleaseNotes::test_replace_RN_template_with_value": 0.005600402000027316, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_dir_to_pack_contents": 0.005446063000135837, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip": 46.04346738000004, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_outputs_structure": 0.3587174189999587, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_updated_pack": 0.2674394719999782, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_convert_contribution_zip_with_args": 1.0306267879998359, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_create_contribution_items_version_note": 0.0037306530000478233, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_extract_pack_version[-0.0.0]": 0.0037007880002875027, - "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.003555154999730803, - "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.0032598339998912707, - "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.003340614999842728, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[-pack-yay-ok---Pack-Yay-Ok]": 0.0018947770001886965, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PACKYAYOK-PACKYAYOK]": 0.001979794999897422, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK0]": 0.0013619009996546083, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK1]": 0.0019022199999199074, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[PackYayOK-PackYayOK2]": 0.0021891360001973226, - "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.0027054990000578982, - "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.0023427920002632163, - "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.0024720830001569993, - "demisto_sdk/commands/init/tests/contribution_converter_test.py::test_format_pack_dir_name[pack yay ok!-PackYayOk]": 0.0015359469998657005, - "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.005454721000205609, - "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.005507488000148442, - "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_community": 0.0006785149998904672, - "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_non_filled_manually": 0.000594238000076075, - "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_non_filled_manually_with_data": 0.0005658949996814044, - "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_partner": 0.0006800689995998255, - "demisto_sdk/commands/init/tests/initiator_test.py::TestCreateMetadata::test_create_metadata_partner_wrong_url": 0.0006709420001698163, - "demisto_sdk/commands/init/tests/initiator_test.py::test_change_template_name_script_py": 0.003031997000107367, - "demisto_sdk/commands/init/tests/initiator_test.py::test_create_new_directory": 0.0021507020003355137, - "demisto_sdk/commands/init/tests/initiator_test.py::test_get_created_dir_name": 0.0008325510000304348, - "demisto_sdk/commands/init/tests/initiator_test.py::test_get_object_id": 0.0007118089999949007, - "demisto_sdk/commands/init/tests/initiator_test.py::test_get_object_id_custom_name": 0.0006424480002351629, - "demisto_sdk/commands/init/tests/initiator_test.py::test_get_remote_templates__invalid": 0.031699083000148676, - "demisto_sdk/commands/init/tests/initiator_test.py::test_get_remote_templates__valid": 0.0329574350000712, - "demisto_sdk/commands/init/tests/initiator_test.py::test_get_valid_user_input": 0.0006928629998128599, - "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init": 0.48118179400012195, - "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_with_ignore_secrets[FeedHelloWorld]": 0.17024480000009135, - "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_with_ignore_secrets[HelloWorld]": 0.6785587390002092, - "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_xsiam_files_content": 0.03790439200020046, - "demisto_sdk/commands/init/tests/initiator_test.py::test_integration_init_xsiam_files_existence": 0.03573687800007974, - "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_or_parsing_rules_yml_reformatting_parsing_rules": 0.00587534099986442, - "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_rules_init_file_content_and_name": 0.007180695999977615, - "demisto_sdk/commands/init/tests/initiator_test.py::test_modeling_rules_init_xsiam_files_existence": 0.007369449000179884, - "demisto_sdk/commands/init/tests/initiator_test.py::test_pack_init_for_xsiam_folders_existence": 0.006456803999753902, - "demisto_sdk/commands/init/tests/initiator_test.py::test_pack_init_without_filling_metadata": 0.005075116999933016, - "demisto_sdk/commands/init/tests/initiator_test.py::test_parsing_rules_init_file_content_and_name": 0.007062574000201494, - "demisto_sdk/commands/init/tests/initiator_test.py::test_parsing_rules_init_xsiam_files_existence": 0.006724422999923263, - "demisto_sdk/commands/init/tests/initiator_test.py::test_script_init": 0.09091060799983097, - "demisto_sdk/commands/init/tests/initiator_test.py::test_script_init_with_ignore_secrets": 0.09232347399984064, - "demisto_sdk/commands/init/tests/initiator_test.py::test_template_integration_init[FeedHelloWorld]": 0.1709948309999163, - "demisto_sdk/commands/init/tests/initiator_test.py::test_template_integration_init[HelloWorld]": 1.082772832000046, - "demisto_sdk/commands/init/tests/initiator_test.py::test_yml_reformatting": 0.005405312999755552, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_differences": 0.02057572200010327, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_arguments": 0.023178286999609554, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_commands": 0.023170072000084474, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_outputs": 0.022745007999901645, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_get_different_params": 0.022484332999965773, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_invalid_integration_diff": 0.02392014199995174, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_items": 0.025032687999782866, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_items_in_docs_format": 0.023844619999636052, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_missing_items": 0.024235902000100396, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_print_without_items": 0.040291277999813246, - "demisto_sdk/commands/integration_diff/tests/integration_diff_test.py::TestIntegrationDiffDetector::test_valid_integration_diff": 0.025190772999621913, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_bandit_command[files0]": 0.0005224449999445824, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_bandit_command[files1]": 0.0005110240000476551, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_flak8_command[files0]": 0.0007274770000549324, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_flak8_command[files1]": 0.0005380050000667325, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_mypy_command[files0-2.7-None]": 0.0006642590000183191, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_mypy_command[files1-3.7-content_path1]": 0.0006672549999393595, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pwsh_analyze": 0.0011892490000491307, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pwsh_test": 0.00044517100002394727, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command[files0]": 0.0005443949999630604, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command[files1]": 0.0005325239999365294, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command_3_9_1_docker": 0.0005598039999767934, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pylint_command_3_9_docker": 0.0007608190000496506, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_1": 0.0004422940000381459, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_2": 0.0004416639999931249, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_pytest_command_3": 0.00046824499997910607, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_vulture_command[files0]": 0.0015999140000531042, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_vulture_command[files1]": 0.0016336789999513712, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_no_base_command[files0]": 0.0005477620000533534, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_no_base_command[files1]": 0.0005233169999883103, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py2_command[files0]": 0.000528144999975666, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py2_command[files1]": 0.0006339609999486129, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py3_command[files0]": 0.0006375909999292162, - "demisto_sdk/commands/lint/tests/command_builder_test.py::test_build_xsoar_linter_py3_command[files1]": 0.0005274040000244895, - "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_html": 0.0025887999999554268, - "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_report": 0.006337995999956547, - "demisto_sdk/commands/lint/tests/helper_test.py::TestGenerateCoverageReport::test_generate_coverage_report_with_xml": 0.0024994439999659335, - "demisto_sdk/commands/lint/tests/helper_test.py::test_add_tmp_lint_files": 0.011748029999978371, - "demisto_sdk/commands/lint/tests/helper_test.py::test_add_tmp_lint_files__multi_level_api_modules": 0.0127156459999469, - "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.0011785399999553192, - "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.0011479320000375992, - "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.001457840000057331, - "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response0-2-False]": 0.0057746340000335294, - "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response1-1-False]": 0.005067666000002191, - "demisto_sdk/commands/lint/tests/helper_test.py::test_copy_dir_to_container[archive_response2-2-True]": 0.006634989999952268, - "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.0008463689999871349, - "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.0007735130000128265, - "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.0007938200000694451, - "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.0008088689999681264, - "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.0008486639999318868, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_failed_unit_tests_report_no_failed_tests": 0.0004906150000465459, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_failed_unit_tests_report_with_failed_tests": 0.0007229990000610087, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_bandit": 0.00399033500002588, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_flake8": 0.00398619800000688, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_mypy": 0.021828951000031793, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_vulture": 0.007163354999988769, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_create_json_output_xsoar_linter": 0.0038960490000476966, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[2 api module changes with 1 dependency each]": 0.004687515999989955, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[non api module change with dependency]": 0.004640027999982976, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with 2 dependencies]": 0.004351951000046483, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with dependency also changed]": 0.004323628000008739, - "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.004611023999984809, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with dependency]": 0.00435477499991066, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_get_api_module_dependent_items[single api module change with no dependencies]": 0.00449114100007364, - "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.004333814999938568, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[all]": 0.0016220859999407367, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[from-yml]": 0.0016339180000386477, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:]": 0.0024431779999645187, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:dev]": 0.0016588459999979932, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:ga]": 0.001558890000012525, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_invalid_docker_image_target_flag[native:maintenance]": 0.0015937040000153502, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_failed_image_creation": 0.0025363130000073397, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_pass_lint_checks[0-0-pkgs_type0]": 0.0018199159999880976, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_summary_no_warnings": 0.001323799000033432, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_summary_with_warnings": 0.0014437740000516897, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_warning_lint_checks_all_packages_tests": 0.0017426719999775742, - "demisto_sdk/commands/lint/tests/linter_manager_test.py::test_report_warning_lint_checks_not_packages_tests": 0.005425022999986595, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_no_errors": 0.009583842999973058, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[1-test-1-test]": 0.005363447000036103, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[16-test-0-]": 0.005322791999958554, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[2-test-1-test]": 0.005742374000021755, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[32-test-2-]": 0.005859494000048926, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[4-test-0-]": 0.00520105399999693, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPylint::test_run_pylint_with_errors[8-test-0-]": 0.005381189999980052, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[0-0]": 0.008043438000015612, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[1-1]": 0.008332648000077825, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[126-1]": 0.006194708999942122, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[137-1]": 0.006280829999980142, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[139-1]": 0.006675426000072093, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[143-1]": 0.006160555999997541, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[2-1]": 0.007772882999972808, - "demisto_sdk/commands/lint/tests/test_linter/docker_runner_test.py::TestPytest::test_run_pytest[5-0]": 0.0086122600000067, - "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.0020448939999937465, - "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.002120878999960496, - "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.002075132000072699, - "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.0020808119999742303, - "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.0021256260000086513, - "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.007693064999955368, - "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.00742152699996268, - "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.007278659999940373, - "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.009499023999978817, - "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.004724474999932227, - "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.005250426000031894, - "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.004848988000048848, - "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.004885844999989786, - "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.004723343000023306, - "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.005461230000037176, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_image_flag_version_not_exists_in_native_config_file": 0.01228982099996756, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_according_to_docker_image_flag[all-exp_images5-]": 0.013874308000026758, - "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.013123606000021937, - "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.013469703999987814, - "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.022049411000011787, - "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.013475864999975329, - "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.015584067999952822, - "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.013417366000055608, - "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.013003221999952075, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_exists": 0.028363560000002508, - "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.011840392999999949, - "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.011820997000086209, - "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.011796911999965687, - "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.011808233000067503, - "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.024038953999934165, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_docker_images_not_exists": 0.029221332999952665, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_integration_not_supported_by_requested_native_image[all-native:dev]": 0.012782771999980014, - "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.011537498999985019, - "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.0115053869999997, - "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.011511496999958126, - "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.011440267000068616, - "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.02380095899997059, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_invalid_docker_image_as_docker_image_flag": 0.011534282000013718, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_invalid_docker_image_as_docker_image_target": 0.011279256000022997, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestDockerImagesCollection::test_wrong_native_docker_image_flag": 0.011292929999967782, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestLintFilesCollection::test_lint_files_exists": 0.02847922099999778, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestLintFilesCollection::test_lint_files_not_exists": 0.029051748999961546, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_not_python_pack": 0.010252712000010433, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_python_pack": 0.028401262999977916, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestPythonPack::test_package_is_python_pack_api_module_script": 0.014019278999967355, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestRequirementsCollection::test_test_requirements_exists": 0.03522291300004099, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestRequirementsCollection::test_test_requirements_not_exists": 0.029808450000018638, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_integration[False-False]": 0.027824165999959405, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_integration[True-True]": 0.006910163000043212, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_script[False-False]": 0.02959109399995441, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_deprecated_script[True-True]": 0.028745404999995117, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_tests_exists": 0.029258984000023247, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestTestsCollection::test_tests_not_exists": 0.03827154700002211, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_checks_common_server_python": 0.020615413999962584, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_not_valid_yaml": 0.0037252400000511443, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_valid_yaml_key_script_is_dict": 0.03069781800002147, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::TestYamlParse::test_valid_yaml_key_script_is_not_dict": 0.030737990000034188, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_linter_pack_abs_dir": 0.0012988239999458528, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_remove_gitignore_files": 0.0030052679999812426, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[-True]": 0.007743107000010241, - "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.009817798000028688, - "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.008914943999968727, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[[tests_require_network]\\ntest1\\ntest-False]": 0.007675190999975712, - "demisto_sdk/commands/lint/tests/test_linter/gather_facts_test.py::test_should_use_network[[tests_require_network]\\ntest1\\ntest2-True]": 0.00989781799995626, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_fail_lint": 0.002646868999988783, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_success": 0.003232921999995142, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestBandit::test_run_bandit_usage_stderr": 0.0025958040000091387, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_fail_lint": 0.0026668460000109917, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_success": 0.002723411000033593, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestMypy::test_run_mypy_usage_stderr": 0.0027017719999662404, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_fail_lint_on_normal_and_test_file": 0.003963474999977734, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_fail_lint_on_only_test_file": 0.0034088109999856897, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_no_lint_files": 0.0033913579999875765, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_all_lint_fail_all": 0.0033125810000456113, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[False-True-True]": 0.0034805050000272786, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[True-False-True]": 0.004247193000026073, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_fail[True-True-False]": 0.0036373359999402055, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-False-False]": 0.0035820049999983894, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-False-True]": 0.0034756739999579622, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-True-False]": 0.004087014999981875, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[False-True-True]": 0.0037675399999557158, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-False-False]": 0.0037372240000195234, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-False-True]": 0.003624772999955894, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-True-False]": 0.0038499329999694964, - "demisto_sdk/commands/lint/tests/test_linter/os_runner_test.py::TestRunLintInHost::test_run_one_lint_check_success[True-True-True]": 0.004034327999988818, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandResultsIndicatorsChecker::test_indicators_doesnt_exist": 0.0009605620000456838, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandResultsIndicatorsChecker::test_indicators_exist": 0.0011160519999862117, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_command_dict_checker": 0.0008093600000051993, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_list_checker": 0.0009616950000008728, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_set_checker": 0.0008469310000123187, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_all_if_command_in_tuple_checker": 0.0009433209999656356, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_commands_dismiss_for_feeds_checker": 0.007704076000095483, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_infer_dict_checker": 0.0011761050000131945, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_infer_if_checker": 0.001312639000047966, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_list_checker": 0.0010060959999691477, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_set_checker": 0.0008949099999995269, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_all_if_command_in_tuple_checker": 0.0008965339999917887, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_not_command_dict_checker": 0.0008376829999861002, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_regular_if_else_checker": 0.0015601800000126786, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestCommandsImplementedChecker::test_test_module_checker": 0.0009169919999862941, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestDemistoLogChecker::test_demisto_log_exists": 0.0009854280000354265, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestDemistoLogChecker::test_no_demisto_log": 0.0008286469999347901, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestExitChecker::test_exit_exists": 0.0011550450000186174, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestExitChecker::test_no_exit": 0.0008292680000181463, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestImportCommonServerPythonChecker::test_invalid_common_server_python_import": 0.0007677030000081686, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestImportCommonServerPythonChecker::test_valid_common_server_python_import": 0.009360104999984742, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_no_print": 0.0008996380000212412, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_number_of_prints": 0.0013300919999892358, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_print": 0.0017429239999842139, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestPrintChecker::test_print_in_docstr": 0.0008033199999886165, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestQuithecker::test_exit_exists": 0.0009043979999887597, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestQuithecker::test_no_quit": 0.0007948440000404844, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestSleepChecker::test_no_sleep": 0.0007884920000833517, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/base_checker_test.py::TestSleepChecker::test_sleep_exists": 0.001358524999943711, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_demisto_results_comments": 0.0007750160000341566, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_demisto_results_exists": 0.007586484999933418, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestDemistoResultsChecker::test_no_demisto_results": 0.0007984590000660319, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitArgsChecker::test_init_args_in_main": 0.0010421850000170707, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitArgsChecker::test_init_args_not_in_main": 0.0011838290000127927, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitParamsChecker::test_init_params_in_main": 0.0009329510000384289, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestInitParamsChecker::test_init_params_not_in_main": 0.0011590930000693334, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestMainChecker::test_main_exists": 0.0008217430000740933, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestMainChecker::test_no_main": 0.0009425290000422137, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_demisto_results_comments": 0.0007657580000568487, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_no_return_outputs": 0.0007620500000484753, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestReturnOutputChecker::test_return_output_exists": 0.0009905169999910868, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_no_sys_exit": 0.0007595859999582899, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_exists": 0.0009915900000123656, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_in_comments": 0.000796125999954711, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/certified_partner_level_checker_test.py::TestSysExitChecker::test_sys_exit_non_zero_exists": 0.0009670450000385244, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorCountChecker::test_return_error_exists_more_than_once": 0.0012772530000120241, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorCountChecker::test_return_error_exists_once": 0.0011197989999800484, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_dosnt_exists_in_main": 0.0010799249999990934, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_exists": 0.001206340999999611, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestReturnErrorInMainChecker::test_return_error_exists_not_in_main": 0.0011620569999877262, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_doesnt_exists": 0.001073083000051156, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_exists": 0.0012636179999958586, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/partner_level_checker_test.py::TestTryExceptMainChecker::test_try_except_finally_exists": 0.0012444910000226628, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestDirectAccessDictChecker::test_direct_access_doesnt_exists": 0.0015945840000313183, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestDirectAccessDictChecker::test_direct_access_exists": 0.0016943519999585988, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_args_annotations_doesnt_exist": 0.002108424000027753, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_doesnt_exists": 0.001210517999993499, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_doesnt_exists_on_Script": 0.001161336999928153, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists": 0.0010809169999106416, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists_in_if_clause": 0.0011519689999772709, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_not_implemented_error_exists_inside_elif_clause": 0.0011978560000329708, - "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.0009778040000583132, - "demisto_sdk/commands/lint/tests/test_pylint_plugin/xsoar_level_checker_test.py::TestTypeAnnotationsChecker::test_type_annotations_exists": 0.0015109580000398637, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_change_name_duplications": 0.0036658700000771205, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_command_body_args": 0.003792146000023422, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_command_headers": 0.0048231910002414224, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_config_file": 0.0063931490001323255, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_file_not_overwritten": 0.004585244000054445, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_get_command_function": 0.005127256000150737, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_python_file": 1.7422559990000082, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_ref_props_non_dict_handling": 0.0005550660002882069, - "demisto_sdk/commands/openapi_codegen/tests/openapi_codegen_test.py::TestOpenAPICodeGen::test_yaml_file": 0.12825946399993882, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_apikey_passed_as_header": 0.8888214339999649, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_args_lowercase": 1.039437334000013, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_command_arguments_names_duplication": 0.009603149000213307, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_command_prefix": 0.7210858230000667, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_config_generated_successfully": 1.6247194229999877, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_context_output_path": 0.7197243539999363, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_download_file": 0.000641245999986495, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body0-expected0]": 0.0007506510000894195, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body1-expected1]": 0.0007282199999281147, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_generate_command_outputs[body2-expected2]": 0.0007441279999511607, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_package_integration_generation": 0.9650191340001584, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_post_body_to_arguments": 1.0301366340002005, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanCodeGen::test_url_contains_args": 1.176533026000243, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_duplicate_names": 0.0005010459999539307, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_no_duplicate_names": 0.00047381400008816854, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_build_commands_names_dict_none_names": 0.0004966359999798442, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format": 0.0005354589998205483, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_different_arg_name_nested": 0.0005114140001296619, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_different_arg_name_one_nested": 0.0004646570000659267, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_create_body_format_list_of_dicts": 0.00046866499997122446, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_duplicate_requests_check_duplicates_dont_exist": 0.0004419150002377137, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_duplicate_requests_check_duplicates_exist": 0.0004815499999040185, - "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.0006421589998808486, - "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.0006490309999662713, - "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.0006099280001308216, - "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.0005953009999757342, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_find_shared_args_path_no_path": 0.0004525860001649562, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection0-outputs0]": 0.0006121519998032454, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection1-outputs1]": 0.000646255999981804, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection2-outputs2]": 0.0006377790000442474, - "demisto_sdk/commands/postman_codegen/tests/postman_codegen_test.py::TestPostmanHelpers::test_flatten_collections[collection3-outputs3]": 0.0006241549999685958, - "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.0007458999998561922, - "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.0007154949998948723, - "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.0007128590002594137, - "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.0007540990000052261, - "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.0007210460000806052, - "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test__set_properties": 0.0045167870000568655, - "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_docker_tag_to_runfiles": 0.0067374410000411444, - "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_get_property": 0.004403517000127977, - "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_moded_properties[None-expected_text1]": 0.005944231000057698, - "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_moded_properties[nightly-expected_text0]": 0.0061965410000084375, - "demisto_sdk/commands/pre_commit/tests/generic_docker_test.py::test_no_files": 0.005457571999841093, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_all_files": 0.002176029999873208, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_empty_input_files": 0.07697330999985752, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_files": 0.03406454800006031, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_yml_files": 0.04882335999991483, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_input_yml_files_not_exists": 0.03449600299950362, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_nonexistent_files": 0.03412315399987165, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_staged_only": 0.0029535509997913323, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::TestPreprocessFiles::test_preprocess_files_with_use_git": 0.003458533000184616, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_config_files[False]": 0.18223306299978503, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_config_files[True]": 0.2298992889998317, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_coverage_analyze_general_hook[None-expected_args0]": 0.0009365759999582224, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_coverage_analyze_general_hook[nightly-expected_args1]": 0.000700577000316116, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_exclude_python2_of_non_supported_hooks": 0.04311303899999075, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook0-expected_result0]": 0.0008863440000368428, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook1-expected_result1]": 0.0006733560001066508, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook2-expected_result2]": 0.0006578290001471032, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_filter_files_matching_hook_config[hook3-expected_result3]": 0.0007187819999217027, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_mypy_hooks": 0.0007359220003309019, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_no_docker_flag_docker_hook": 0.00047630800008846563, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook[False]": 0.0006363780000810948, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook[True]": 0.0006713230000059411, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_ruff_hook_nightly_mode": 0.0004975380002179008, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_all_files": 0.00047928599997248966, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_nightly_mode": 0.0004548689998955524, - "demisto_sdk/commands/pre_commit/tests/pre_commit_test.py::test_validate_format_hook_nightly_mode_and_all_files": 0.00047109999991334917, - "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_find_dashboard_by_id_negative": 0.005625385000030292, - "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_find_dashboard_by_id_positive": 0.005674446999933025, - "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_merge_generic_module_with_its_dashboards_negative": 0.0066002550000234805, - "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_merge_generic_module_with_its_dashboards_positive": 0.009259848000056081, - "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module": 0.005150961000026655, - "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_file_is_already_exist": 0.005620184999941102, - "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_file_is_already_exist_force": 0.01102942899996151, - "demisto_sdk/commands/prepare_content/tests/generic_module_unifier_test.py::test_save_unified_generic_module_without_saving_path": 0.0050259679999840046, - "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.0017765750000080516, - "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.0012669640000240179, - "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.0012713030000099934, - "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.0012959180000962078, - "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.0011374520000231314, - "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_more_than_one_description_file": 0.002409586999988278, - "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_more_than_one_description_file_one_empty": 0.0019894719999911104, - "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_pack_readme": 0.0022063660000526397, - "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_dump_same_pack_images_in_desc_and_readme": 0.002158738000048288, - "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.0006532489999813151, - "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.0006102080000687238, - "demisto_sdk/commands/prepare_content/tests/markdown_images_handler_test.py::test_replace_markdown_urls": 0.0014605449999862685, - "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsiam": 0.004981965000013133, - "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsiam_2": 0.002761703999965448, - "demisto_sdk/commands/prepare_content/tests/marketplace_incident_to_alert_playbooks_prepare_test.py::test_marketplace_version_is_xsoar": 0.0035375900000644833, - "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.08402502899997444, - "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.0846053180000581, - "demisto_sdk/commands/prepare_content/tests/xdrc_template_unifier_test.py::test_unify_xdrc_template": 0.002719384999977592, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_default_output_integration": 0.07101333300005308, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration": 0.08897536799992167, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__detailed_description_with_special_char": 0.08953284799997618, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__detailed_description_with_yml_structure": 0.08754508800006988, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[marketplacev2]": 0.09416679100007741, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar]": 0.09404721199996402, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar_on_prem]": 0.09372088300005998, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param[xsoar_saas]": 0.09325649799995972, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param_type9[marketplacev2]": 0.09367798999994648, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLIntegration::test_unify_integration__hidden_param_type9[xsoar]": 0.09726362699996116, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLScript::test_unify_default_output_script": 0.009270769000011114, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::TestMergeScriptPackageToYMLScript::test_unify_script": 0.07411319599992794, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_add_contributors_support": 0.002228859000013017, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_add_custom_section": 0.0021667620000584975, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_check_api_module_imports": 0.0005478120000361741, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_clean_python_code": 0.0007093940000117982, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_empty_yml": 0.0021831629999269353, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_code_file": 0.0007159460000139006, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_code_file_case_insensative": 0.002518499000018437, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_data": 0.0006579390000638341, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_integration_doc_link_negative": 0.0029165320000288375, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_integration_doc_link_positive": 0.16799662999989096, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_get_script_or_integration_package_data": 0.002890884000009919, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml": 0.0014529320000065127, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_doc_link_exist": 0.01114683899999136, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_markdown_image[False-True]": 0.002358542000081343, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_markdown_image[True-False]": 0.0016789729999686642, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_description_to_yml_with_no_detailed_desc": 0.002338893999933589, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_hierarchy_api_module": 0.0010948139999413797, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_image_to_yml": 0.21167788700000756, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_image_to_yml_without_image": 0.003257358999974258, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code[import_to_module0]": 0.0013713499999425949, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code[import_to_module1]": 0.00132715699999153, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_module_code__verify_offsets": 0.001602659000013773, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_insert_pack_version_and_script_to_yml": 0.00048363999997036444, - "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.06895394999997961, - "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.3018319860000247, - "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.07019870999994282, - "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.2768210630000567, - "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.27414847400001463, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_community_contributed": 0.02048969199995554, - "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.019202479000000494, - "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.014743619999990187, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_not_partner_contributed_pack": 0.01444027399998049, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack": 0.01698362999991332, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack_no_email": 0.01508864300001278, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_unify_partner_contributed_pack_no_url": 0.013682620000054158, - "demisto_sdk/commands/prepare_content/tests/yml_unifier_test.py::test_update_hidden_parameters_value": 0.0004953339999929085, - "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[10]": 0.0016802359998564498, - "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[15]": 0.001627355999971769, - "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[3]": 0.008915354999999181, - "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_multiple_existing_playgrounds[5]": 0.0015756489999603218, - "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_playground_not_exist": 0.001575189000050159, - "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.002536533000466079, - "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.0018054380002467951, - "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.0021456439997109555, - "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.0021690969999781373, - "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_return_raw_outputs_from_log_with_raw_response_flag": 0.0014804120000917464, - "demisto_sdk/commands/run_cmd/tests/runner_test.py::test_single_playground_exist": 0.001948865000031219, - "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.0035278029999972205, - "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.004999939000015274, - "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.0032806919999757156, - "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.0031508980000012343, - "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.08113659399998596, - "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.0808922040000084, - "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.1444380519999413, - "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.17812130300006856, - "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_specific_test_playbook[failed-1]": 0.03618825000006609, - "demisto_sdk/commands/run_test_playbook/tests/test_playbook_runner_test.py::TestTestPlaybookRunner::test_run_specific_test_playbook[success-0]": 0.028667811000048005, - "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.003519868000068982, - "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.0035046400000737776, - "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.11319146499994304, - "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.03332971300000054, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_calculate_shannon_entropy": 0.0005082069999389205, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_find_secrets": 0.002506567000011728, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_all_diff_text_files": 0.011645920000034948, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_diff_text_files": 0.0009762010000144983, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_generic_white_list": 0.0005857530000525912, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_packs_white_list": 0.0005934470000283909, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_related_yml_contents": 0.0005707250000455133, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_white_listed_items_not_pack": 0.0005610959999557963, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_get_white_listed_items_pack": 0.0007392790000153582, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_ignore_base64": 0.0006067919999850346, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_ignore_entropy": 0.007398443999989013, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_is_secrets_disabled": 0.00048670799998262737, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_is_text_file": 0.0004795049999870571, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_reformat_secrets_output": 0.00047939499995663937, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_regex_for_secrets": 0.0005754239999760102, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_false_positives": 0.0004988610000395965, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_secrets_disabled_line": 0.0005261619999146205, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_white_list_regex": 0.0006058399999915309, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_whitelisted_items_from_file_escaped_whitelist": 0.0005869560000064666, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_remove_whitelisted_items_from_file_substring": 0.0005653550000488394, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_search_potential_secrets__no_secrets_found": 0.06280758000002606, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_search_potential_secrets__secrets_found": 0.007938953000063975, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_temp_white_list": 0.00210607099995741, - "demisto_sdk/commands/secrets/tests/secrets_test.py::TestSecrets::test_two_files_with_same_name": 0.005431544000032318, - "demisto_sdk/commands/setup_env/tests/setup_environment_test.py::test_setup_env_vscode[False]": 0.013062222000144175, - "demisto_sdk/commands/setup_env/tests/setup_environment_test.py::test_setup_env_vscode[True]": 0.013027345999717, - "demisto_sdk/commands/split/tests/jsonsplitter_test.py::test_split_json": 0.00472178900002973, - "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.06726190199992743, - "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.06726858400003266, - "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.06718094100006056, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code__with_apimodule[betaintegration]": 0.007144982999932381, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code__with_apimodule[integration]": 0.008152070000051026, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_modules_old_format": 0.006629260000011072, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_pwsh[betaintegration]": 0.0035385919999839643, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_code_pwsh[integration]": 0.0034980869999685638, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_image": 0.0066362720000370246, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_javascript_code[betaintegration]": 0.07126730599998155, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_javascript_code[integration]": 0.06700329900002089, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_long_description": 0.0074019119999775285, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_modeling_rules": 0.0022050840000247263, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_modeling_rules_schema": 0.002245589000040127, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_parsing_rules": 0.002227367000045888, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_parsing_rules_sampels": 0.0022288680000315253, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_powershell_code[betaintegration]": 0.061319745999981023, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_powershell_code[integration]": 0.06763727299994571, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_modeling_rule": 0.0060789039999917804, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_parsing_rule": 0.004858706000050006, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_pwsh[betaintegration]": 0.022907452000083595, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extract_to_package_format_pwsh[integration]": 0.020803466999950615, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_extraction_with_period_in_filename": 0.016327676000003066, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path": 0.004550481000023865, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path_empty_output": 0.006454684000004818, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_get_output_path_relative": 0.006696805000103723, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_input_file_data_parameter": 0.005771438999943257, - "demisto_sdk/commands/split/tests/ymlsplitter_test.py::test_update_api_module_contribution": 0.007502880000060941, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_datasets": 0.010756098999991082, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_input_all_valid": 0.012306332000207476, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::TestInitTestDataMultiInput::test_init_test_data_multi_input_some_invalid": 0.023888062000423815, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_create": 0.010442342999795073, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_extended_modeling_rule": 0.013496732000021439, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_reduced_modeling_rule": 0.014055776000077458, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/init_test_data_test.py::test_init_test_data_update_with_unchanged_modeling_rule": 0.014971285000001444, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestDeleteExistingDataset::test_delete_data_set": 90.1333137270002, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandInteractive::test_no_testdata_file_exists": 0.017392300999972576, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestTheTestModelingRuleCommandMultipleRules::test_fail_one_pass_second": 60.11434487100007, - "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.073356876999924, - "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.052516986, - "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.06357345300012, - "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.02593240800001695, - "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.09001876700006, - "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.024629707000030976, - "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.100216559000046, - "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.014501298999903156, - "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.10997966900004, - "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.09032966899997, - "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.014843241999983547, - "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.0019303509999417656, - "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.0019204940000463466, - "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.002081593999832876, - "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.02393033100008779, - "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.002297125000040978, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::TestVerifyResults::test_verify_results_single_event_matching_expected_outputs": 0.002195245999985218, - "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.0014009340000029624, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_call_rule_regex[call a-True]": 0.0006180129998938355, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_call_rule_regex[historically-False]": 0.0006343939999169379, - "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.15353185900005428, - "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.027554712999858566, - "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.028127221999966423, - "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.028314481000052183, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[1-st]": 0.0008838689999492999, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[10-th]": 0.0006153890000177853, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[11-th]": 0.0006332000000384141, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[12-th]": 0.0006428799999866897, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[2-nd]": 0.0006807109998590022, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[21-st]": 0.0006172219999598383, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[3-rd]": 0.0006248839999898337, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[31-st]": 0.0005929260000812064, - "demisto_sdk/commands/test_content/test_modeling_rule/tests/test_modeling_rule_test.py::test_day_suffix[4-th]": 0.0006267289999186687, - "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_listeners_with_multiple_threads": 0.002168895999830056, - "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_queue_listener_sanity": 0.002560628000082943, - "demisto_sdk/commands/test_content/tests/ParallelLoggingManager_test.py::TestParallelLoggingManager::test_real_time_logger_sanity": 0.002269725000132894, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_build_creation": 0.005093434999707824, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_get_instances_ips": 0.004684790999590405, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_mockable_playbook_configuration": 0.004909791999807567, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_nightly_playbook_skipping": 0.007556659999636395, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_no_tests_are_executed_when_filtered_tests_is_empty": 0.006085795999979382, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_non_filtered_tests_are_skipped": 0.0050938859999405395, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_integration": 0.0048565810000127385, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_skipped_integrations_is_skipped": 0.005084987999907753, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_playbook_with_version_mismatch_is_skipped": 0.005604446999996071, - "demisto_sdk/commands/test_content/tests/build_context_test.py::test_unmockable_playbook_configuration": 0.005051164999940738, - "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.005051846000014848, - "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.005647797000165156, - "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[None-expected4]": 0.013714869999830626, - "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration0-expected0]": 0.014131727000176397, - "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration1-expected1]": 0.013042153999776929, - "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration2-expected2]": 0.01385183499996856, - "demisto_sdk/commands/test_content/tests/integration_test.py::test_create_module[incident_configuration3-expected3]": 0.014070112000126755, - "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_clean_filename": 0.0005528819999653933, - "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_get_paths": 0.000501206000080856, - "demisto_sdk/commands/test_content/tests/mock_unit_test.py::test_push_mock_files_thread_safety": 10.013387038999781, - "demisto_sdk/commands/test_content/tests/server_context_test.py::test_execute_tests": 0.02953940599991256, - "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__empty": 0.009413844999698995, - "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__error": 0.009515074000091772, - "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__none": 0.009267160999797852, - "demisto_sdk/commands/test_content/tests/test_context_test.py::TestPrintContextToLog::test_print_context_to_log__success": 0.00920766000012918, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_docker_thresholds_for_non_pwsh_integrations": 0.007891563999692153, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_docker_thresholds_for_pwsh_integrations": 0.007889900999998645, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_is_runnable_on_this_instance": 0.009701451000182715, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_first_playback_passes": 0.018145785999877262, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_fails_every_time": 0.027415893999886976, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_fails_most_of_the_time": 0.028279254999915793, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_passes_most_of_the_time_playback_fails": 0.0315517720000571, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_recording_passes_most_of_the_time_playback_pass": 0.030248699999901874, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_second_playback_fails": 0.02568179800005055, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_mockable_playbook_second_playback_passes": 0.024527352999939467, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_pb_inputs[current0-new_configuration0-expected0]": 0.009834260000161521, - "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.008669946000054551, - "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.008803556999964712, - "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.00905533500031197, - "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.008342217000290475, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_replacing_placeholders": 0.02000393500043174, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_fails_every_time": 0.014688637000062954, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_fails_most_of_the_times": 0.016549298000199997, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_passes_most_of_the_time": 0.01532132600004843, - "demisto_sdk/commands/test_content/tests/test_context_test.py::test_unmockable_playbook_passes_on_first_run": 0.01498054100011359, - "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_close_incident[False-client_res1]": 0.006379632999824025, - "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_close_incident[True-client_res0]": 0.0054768079999121255, - "demisto_sdk/commands/test_content/tests/testplaybook_test.py::test_set_prev_server_keys": 0.010039913000127854, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_form_keys[1610639147]": 0.0045760880000216275, - "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.004721619000065402, - "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.004711660000111806, - "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.004883813000105874, - "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.004728210999928706, - "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.007367234999946959, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_json_keys[1610639147]": 0.005854823999925429, - "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.005985627999962162, - "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.005980528999998569, - "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.00613998700009688, - "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.006962199999861696, - "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.005925076000039553, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_cleaning_problematic_keys_from_url_query[1610639147]": 0.004660384999624512, - "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.005852218999962133, - "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.004629668000006859, - "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.006260993000068993, - "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.004578563999984908, - "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.0045333179998579, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_form_keys[1610639147]": 0.014796619999970062, - "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.016708676999996896, - "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.01715372600028786, - "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.021201908999728403, - "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.015892092999820306, - "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.019870486000172605, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_json_keys[1610639147]": 0.016280516000051648, - "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.01828045899992503, - "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.017724060000091413, - "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.018834351999657883, - "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.01915399799986517, - "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.02133713200009879, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_finding_problematic_keys_in_url_query[1610639147]": 0.016405000000304426, - "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.01785277099997984, - "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.015480645000025106, - "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.01612585000020772, - "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.019551158999774998, - "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.018105421999962346, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_fixed_boundary": 0.0026963320001414104, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_json_body_parsing": 0.0073874830000022484, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_live_false_when_running_in_playback_state": 0.0018943540001146175, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_loader_defaults": 0.7850515689999611, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_running": 0.004981854999869029, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::TestTimeStampReplacer::test_url_query_is_sorted": 0.00449429599962059, - "demisto_sdk/commands/test_content/tests/timestamp_replacer_test.py::test_demisto_sdk_imports": 0.0006469170000400482, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_check_existing_rn[added_files0-expected_output0]": 0.0007887819999723433, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_check_existing_rn[added_files1-expected_output1]": 0.000791166999761117, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_pack_release_notes_pack_fail": 0.001869297999974151, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_pack_release_notes_pack_success": 0.1697151490000124, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[None-None]": 0.0020116939999752503, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[None-git_changed_packs1]": 0.00824007400001392, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_create_release_notes[Packs/test1-git_changed_packs0]": 0.001983390000077634, - "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.0010080209999614453, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_get_existing_rn[Test1-packs_existing_rn2-revision-None]": 0.0010365650000494497, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_get_existing_rn[Test2-packs_existing_rn0-None-]": 0.0014770359998692584, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_handle_api_module_change[None]": 0.0017054830000233778, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_handle_api_module_change[Packs/ApiModules/Scripts/Test1]": 0.002253042999882382, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_multiple_packs": 0.08097790199985866, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_update_fail": 0.0005644840002787532, - "demisto_sdk/commands/update_release_notes/tests/update_rn_manager_test.py::TestUpdateRNManager::test_manage_rn_update_success": 0.003586470999835001, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_desc_event_collector": 0.12732400300001245, - "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.011693136000076265, - "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.1262260329997389, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_desc_old_file": 0.010165987000164023, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_file__documentation": 0.010566575999973793, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_file_without_description": 0.010608460999947056, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_integration": 0.011727159000201937, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_integration_for_generic": 0.010441824000054112, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_markdown_valid": 0.03320319799991012, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_playbook_modified_file": 0.011385212000277534, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_playbook_new_file": 0.010442430999773933, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_when_only_pack_metadata_changed": 0.01632093799980794, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_build_rn_template_with_fromversion": 0.010496974000261616, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_file_not_found": 0.04427729699978045, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_no_version": 0.01138028199989094, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_major": 0.011025090000202908, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_major_overflow": 0.011068470999816782, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_minor": 0.01102944700005537, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_minor_overflow": 0.01096453600030145, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_revision": 0.010979824999822085, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_revision_overflow": 0.011037242999691443, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_bump_version_number_specific": 0.011112962999959564, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_integration_command": 0.022062433000201054, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path0-integration-True-]": 0.02289963499993064, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path1-integration-False-]": 0.022702547000108098, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path10-script-True-]": 0.001595236999946792, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path11-script-False-]": 0.002096871999810901, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path12-script-False-- Deprecated. Use %%% instead.\\n]": 0.0022058450001622987, - "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.002080362000015157, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path14-script-True-]": 0.0015815920000932238, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path2-integration-False-- Deprecated. Use %%% instead.\\n]": 0.02262632399992981, - "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.022658664999880784, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path4-integration-True-]": 0.022578105000093274, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path5-playbook-True-]": 0.001700041000276542, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path6-playbook-False-]": 0.009062538000080167, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path7-playbook-False-- Deprecated. Use %%% instead.\\n]": 0.00939281499995559, - "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.00902964900024017, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml[path9-playbook-True-]": 0.0014441639998494793, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_deprecated_rn_yml_no_commands_section": 0.12748709300012706, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_execute_with_bump_version_raises_error": 0.12731923700016523, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_filter_to_relevant_files_pack_not_found": 0.07282690500005629, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_find_corresponding_yml": 0.010682981000172731, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_get_release_notes_path": 0.010523853999984567, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_only_docs_changed": 0.09293422400014606, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_only_docs_changed_bump_not_required": 0.011386383999933969, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_dashboard": 0.13237010700004248, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_incident_field": 0.14001996199999667, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_new_mapper": 0.137772201999951, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdate::test_update_rn_with_deprecated_and_text": 0.0403436200001579, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_add_and_modify_files_without_update_docker_image": 0.01777718699986508, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_build_rn_config_file[False-None-None]": 0.13752583900009085, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_build_rn_config_file[True-None-expected_conf_data1]": 0.13763253399997666, - "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.13670844099965507, - "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.13578625100012687, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_change_image_or_desc_file_path": 0.003973241999801758, - "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.004589603000113129, - "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.004234079000070778, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_check_rn_directory": 0.01379274600003555, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_create_markdown": 0.04791374799992809, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_does_pack_metadata_exist_no": 0.014476449000085267, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_execute_update_invalid": 0.015300054999897839, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_find_added_pack_files": 0.015554581000060352, - "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.015351732999988599, - "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.01526597099996252, - "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.015474842000230637, - "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.015425518999791166, - "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.01538389400025153, - "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.015582834000042567, - "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.016399959000182207, - "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.015362692000053357, - "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.015385815999934493, - "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.01552082800003518, - "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.016474636000111786, - "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.015372330999980477, - "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.0165583829998468, - "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.01694886200016299, - "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.015400203000126567, - "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.015396905999978117, - "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.015314111999941815, - "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.015247948999785876, - "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.015238120000049094, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.0-99.99.99-True]": 0.01591450299997632, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.1-1.0.2-True]": 0.015797534000057567, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.5-1.0.4-False]": 0.01572414800034494, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_is_bump_required[1.0.5-1.0.5-True]": 0.015804385999672377, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_new_integration_docker_not_updated": 0.018215946000054828, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_renamed_files": 0.014713010999912512, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_api_modules_dependents_rn__happy_flow": 0.05080041899987009, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_docker_image_in_yml": 0.017601669999748992, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_docker_image_in_yml_when_RN_aleady_exists": 0.01989797400005955, - "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.004746294000369744, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_update_existing_rn": 0.016171662000033393, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::TestRNUpdateUnit::test_write_metadata_To_file": 0.04849806099991838, - "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.2431863560000238, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_deprecated_commands": 0.0006903990001774218, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_docker_image_is_added_for_every_integration": 0.30768630700003996, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_force_and_text_update_rn[-## PackName\\n\\n- %%UPDATE_RN%%\\n]": 0.16011862100003782, - "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.21995605799997975, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_get_deprecated_comment_from_desc": 0.0005332449998149968, - "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.0015346019999924465, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_get_from_version_at_update_rn": 0.024533002999760356, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_git_add_release_notes": 0.04595848000008118, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_handle_existing_rn_version_path": 0.14043643599984534, - "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.0011535819999153318, - "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.0008582299999488896, - "demisto_sdk/commands/update_release_notes/tests/update_rn_test.py::test_no_release_notes_for_first_version": 0.012333991999867067, - "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_all_marketplace_packs[False--expected_outputs1]": 0.001937505999876521, - "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.0027058100001795538, - "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_all_marketplace_packs_on_existing_list": 0.0021002900000439695, - "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_custom_pack": 0.0014799230000335228, - "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.002365272999895751, - "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.002384932000268236, - "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_add_marketplace_pack": 0.001548960000036459, - "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.002419393999844033, - "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.0023773949997121235, - "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_update_config_file_manager[False-False---0]": 0.0014876860000185843, - "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.0015289939997273905, - "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_update_config_file_manager[True-False---1]": 0.0017165840001780452, - "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_verify_flags[False-Pack1---True]": 0.0013155849999293423, - "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.0016075399998953799, - "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.002657178999925236, - "demisto_sdk/commands/update_xsoar_config_file/tests/update_xsoar_config_file_test.py::TestXSOARConfigFileUpdater::test_verify_flags[True-Pack1-Packs/Pack1--True]": 0.0014502970002467919, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_detach_item": 0.002541703000133566, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_detach_item_manager": 0.595156409999845, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_extract_items_from_dir": 0.6102926290002415, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_id_to_detach": 0.06283977199996116, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/IncidentTypes/Process_Survey_Response.json-json]": 0.0006244849998893187, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Layouts/Process_Survey_Response.json-json]": 0.0006150579999939509, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Playbooks/Process_Survey_Response.md-yml]": 0.0005874559999483608, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_find_item_type_to_detach[Packs/Pack/Playbooks/Process_Survey_Response.yml-yml]": 0.0006318780001492996, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Playbooks/Process_Survey_Response.md-False]": 0.0006282320002810593, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Playbooks/Process_Survey_Response.yml-True]": 0.0008144900000388589, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Scripts/Process_Survey_Response.md-False]": 0.0006053190002148767, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestItemDetacher::test_is_valid_file_for_detach[Packs/Pack/Scripts/Process_Survey_Response.yml-True]": 0.0005876859997897554, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_failed_uploaded": 0.004182463999995889, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_successfully_uploaded_files": 0.005554893000407901, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestPrintSummary::test_print_summary_version_mismatch": 0.018831363000117562, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_notify_user_about_overwrite_pack[n-0]": 0.005341495000038776, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_notify_user_about_overwrite_pack[y-1]": 0.00532664799993654, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_invalid_zip_path[None]": 0.0034884480000982876, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_invalid_zip_path[invalid_zip_path]": 0.0031143000001065957, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.10.0-path0]": 0.004207720999829689, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.10.0-path1]": 0.00427852199982226, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.6.0-path0]": 0.00540546499996708, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_validation[6.6.0-path1]": 0.004349074000174369, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.10.0-path0]": 0.0045126190000246424, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.10.0-path1]": 0.004297727999983181, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.5.0-path0]": 0.004583952999837493, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.5.0-path1]": 0.0056192439997175825, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.6.0-path0]": 0.0043820969999615045, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_with_skip_verify[6.6.0-path1]": 0.004263414999741144, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.10.0-path0]": 0.004786641000009695, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.10.0-path1]": 0.005815862000190464, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.5.0-path0]": 0.004752296000106071, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.5.0-path1]": 0.005790905000367275, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.6.0-path0]": 0.0046582620002482145, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_without_skip_validate[6.6.0-path1]": 0.004672909000191794, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_xsiam_pack[marketplacev2-expected_files1]": 0.016334335999999894, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_xsiam_pack[xsoar-expected_files0]": 0.08116379299985965, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zip_does_not_exist": 0.003612189000023136, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zips[path0]": 0.003831678999858923, - "demisto_sdk/commands/upload/tests/uploader_test.py::TestZippedPackUpload::test_upload_zips[path1]": 0.0032092090000332973, - "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.0006446129998494143, - "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.0006023040000400215, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_parse_error_response__exception[Bad Request]": 0.000575554000079137, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_parse_error_response__exception[Forbidden]": 0.0005398569999215397, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/IncidentFields-3]": 0.009271758000068075, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/Scripts-1]": 0.10467387200014855, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[Packs/DummyPack/Scripts/DummyScript-1]": 0.007654000999991695, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[content_repo_example/Integrations-1]": 0.005738107000070158, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_folder[content_repo_example/Integrations/Securonix/-1]": 0.02936784199982867, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_incident_field_correct_file_change": 0.004551490999801899, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_incident_type_correct_file_change": 0.005003506000093694, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_invalid_path": 0.0022642229998837138, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_pack": 0.009169938000013644, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_packs_from_configfile": 0.005659919999970953, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_not_supported": 0.003105686000026253, - "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.006398967999984961, - "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.005579819999866231, - "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.0057573120002416545, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[IndicatorField-demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorFields/dns.json]": 0.005580882000231213, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[IndicatorType-demisto_sdk/tests/test_files/Packs/CortexXDR/IndicatorTypes/SampleIndicatorType.json]": 0.006668932000138739, - "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.01960948499981896, - "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.021281216000261338, - "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.004898539000123492, - "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.006806179000022894, - "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.014618813999959457, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_positive[Script-demisto_sdk/tests/test_files/Packs/DummyPack/Scripts/DummyScriptUnified.yml]": 0.007082452999839006, - "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.005815499999926033, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_upload_single_unsupported_file": 0.004152707999992344, - "demisto_sdk/commands/upload/tests/uploader_test.py::test_zip_multiple_packs": 0.05469749199983198, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_added_files_type_using_function": 0.09543302099996254, - "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.02152153400015777, - "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.028525026000124853, - "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.05686074699974597, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[integration id is not in conf.json]": 0.038441196000121636, - "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.034024857000076736, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[tests section missing from yml and conf.json]": 0.03602583399970172, - "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.03435869699978866, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[well configured]": 0.04777556899989577, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_integration[yml tests mismatch conf.json tests]": 0.034985374000143565, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_are_tests_configured_testplaybook[testplaybook-testplaybook-False]": 0.0016903529997307487, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_create_ignored_errors_list": 0.07251135799970143, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_files_validator_missing_meta_file": 0.19020832100022744, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_files_validator_validate_pack_unique_files": 0.13258995600017442, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_get_error_ignore_list": 0.07382568999992145, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_get_packs": 0.0719255249998696, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[OtherDir/Integration/file.json]": 0.07663177399990673, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[TestData/file.json]": 0.07929586499994912, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[TestPlaybooks/file.yml]": 0.07653152900002169, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_non_pack[docs/dbot/README.md]": 0.07827639799984354, - "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.06890826099993319, - "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.0705186440000034, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_ignore_files_irrelevant_for_validation_test_file[Packs/pack_id/.secrets-ignore]": 0.08672574600018379, - "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.07816996699966694, - "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.07235206299992569, - "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.0773667509997722, - "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.07677156999966428, - "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.07960219799997503, - "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.07492334299968206, - "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.02136838800015539, - "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.028333457000144335, - "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.05770360999986224, - "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.17189665299997614, - "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.023573594000026787, - "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.04099942600032591, - "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.02556890799996836, - "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.18913228000019444, - "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.19071966199999224, - "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.024607053000181622, - "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.06386525000016263, - "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.03369934000011199, - "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.035478431000001365, - "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.01190880399985872, - "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.00410192599997572, - "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.007492863000152283, - "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.003673544999855949, - "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.004377439000109007, - "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.39391575500008, - "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.4076256520002062, - "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.004126771000073859, - "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.0037176690000251256, - "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.004251886000020022, - "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.0037352999997892766, - "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.426357396999947, - "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.45834863699997186, - "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.004176323000137927, - "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.004099119999864342, - "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.03140730399991298, - "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.2555924299999788, - "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.2597852949998014, - "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.18935400299960747, - "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.006638028999987, - "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.008092383999837693, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_old_file_format_non_unified": 0.08081792999996651, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_old_file_format_unified": 0.0760844779999843, - "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.002419693999854644, - "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.002608768000072814, - "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.0026737200000752637, - "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.0030577970001104404, - "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.03129257999989932, - "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.03709674199967594, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_json[False-MyDashboard ]": 0.13443142699998134, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_json[True-MyDashboard]": 0.13605832499979442, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_yml[False-MyIntegration ]": 0.14630951600020126, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_id_yml[True-MyIntegration]": 0.12745885299978, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_name[False-MyDashboard ]": 0.12299165700005688, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_there_spaces_in_the_end_of_name[True-MyDashboard]": 0.13580214000012347, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[False-False-True]": 0.14729344599982142, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-False-False]": 0.14641369400010262, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-True-False]": 0.13837694700032444, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_generic_field[True-True-True]": 0.1455271279999124, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[False-False-True]": 0.49766723899983845, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-False-False]": 0.6528763999999683, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-True-False]": 0.502038771000116, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_file_incident_field[True-True-True]": 0.5286582720000297, - "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.03101232800008802, - "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.03195770000002085, - "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.0100744809999469, - "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.002290475000108927, - "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.002273392999995849, - "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.0019803170000614045, - "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.002667759000132719, - "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.0023567779996938043, - "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.001946250999935728, - "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.0022817379999651166, - "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.0020664889996169222, - "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.002326952000203164, - "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.002016755000113335, - "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.006749445999730597, - "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.008309477000011611, - "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.0023848110001836176, - "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.0019779210001615866, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_generic_field[False-False]": 0.14052704300002006, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_generic_field[True-True]": 0.17446326600020257, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_incident_field[False-False]": 0.13840442800005803, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_is_valid_unsearchable_key_incident_field[True-True]": 0.13647197800037247, - "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.03082154100002299, - "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.03183475199989516, - "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.002292269000008673, - "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.002251520999834611, - "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.001989922999882765, - "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.0022312139999485225, - "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.0020036500000060187, - "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.0023469610000574903, - "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.002791900999682184, - "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.002280707000181792, - "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.0020431039999948553, - "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.006642867999971713, - "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.008014356999865413, - "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.0022516840001571836, - "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.0019583249998049723, - "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.0019594860000324843, - "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.0019545579998521134, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_non_integration_png_files_ignored": 0.06504248400005963, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_pack_validation": 0.2482803939999485, - "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.2869057929997325, - "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.4365645409998251, - "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.12848077700004978, - "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.5496971519999079, - "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.13584425199996986, - "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.5059925399998519, - "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]": 1.1018252730002587, - "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.14328439199994136, - "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.1310449970001173, - "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.5619588719998774, - "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.2542761439997321, - "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.24167263999993338, - "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.09382839199997761, - "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.5016092279997793, - "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.6222288870001194, - "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.6812352159997772, - "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.09912740899994787, - "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.12996626800031663, - "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.739051709000023, - "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.7228926990001128, - "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.22554650400024912, - "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.24149482400002853, - "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.254200376999961, - "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.5405282419999367, - "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.09559926400015684, - "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.5977598370002397, - "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.085864364000372, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_all_validations_on_file_with_modified_id": 0.3391330800000105, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_run_validations_on_file_release_notes_config": 0.04497211000011703, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_script_valid_rn": 0.5688777090001622, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_setup_git_params_master_branch": 0.04526408199990328, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_setup_git_params_non_master_branch": 0.044700446999968335, - "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.07329916799972125, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[.secrets-ignore-.secrets-ignore]": 0.0743959240003278, - "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.06896641299999828, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[doc_image-image.png]": 0.09904206700025497, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[ini-ini_file.ini]": 0.07248883500005832, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[javascriptfile-java_script_file.js]": 0.07455196399996566, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[license-LICENSE]": 0.07599890699975731, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[metadata-.pack_metadata.json]": 0.1323570380000092, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[modelingruleschema-Packs/some/ModelingRules/Some/Some_schema.json]": 0.07088121299966588, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[pem-pem_file.pem]": 0.07255261500017696, - "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.09164191800005028, - "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.07454855600008159, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[powershellfile-powershell_file.ps1]": 0.07436806300006538, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[pylintrc-.pylintrc]": 0.0764702919998399, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[txt-txt_file.txt]": 0.0782185660000323, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[unified_yml-Packs/DummyPack/Scripts/DummyScript_unified.yml]": 0.13611307399992256, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[vulture_whitelist-Packs/TestPack/Integrations/TestIntegration/.vulture_whitelist.py]": 0.07285621999972136, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_skipped_file_types[xsiamreportimage-Packs/XSIAMPack/XSIAMReports/XSIAM_Some_Report.json]": 0.09610255200004758, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_unified_files_ignored": 0.08153055000025233, - "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.0025160150000829162, - "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.002526435000163474, - "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.0025214149998191715, - "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.0025236400003905146, - "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.003783270000212724, - "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.0025566500000877568, - "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.002349275999904421, - "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.0023261400001501897, - "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.0023095499998362357, - "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.002317603999927087, - "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.002490789000148652, - "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.0024458239995510667, - "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.002487111999926128, - "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.0025473840000813652, - "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.0025206540001363464, - "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.002495135999879494, - "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.0022726510001120914, - "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.003604956999879505, - "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.0024381799998991482, - "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.0024411970000528527, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__happy_rn_dependent_on_api_module": 0.10182151000003614, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_dependent_on_api_module": 0.16740786399986973, - "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.08238926700005322, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_in_modified_files": 0.08512532399981865, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__missing_rn_in_old_format_files": 0.08393243500017888, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__no_missing_rn": 0.08338692300003459, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_missing_release_notes__no_missing_rn_new_pack": 0.08071629599976404, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format__with_toversion": 0.07563838199985184, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format__without_toversion": 0.07802725900000951, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_no_old_format_deprecated_content": 0.05565433300034783, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_pack_dependencies": 0.133287271999734, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_pack_dependencies__invalid": 0.09434222000027148, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_release_notes": 0.08632410399991386, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validate_release_notes__invalid_rn_for_new_pack": 0.07640751700000692, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_validation_of_beta_playbooks": 0.03507761399964693, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_verify_no_dup_rn[added_files0-True]": 0.07322621499974957, - "demisto_sdk/commands/validate/tests/old_validators_test.py::TestValidators::test_verify_no_dup_rn[added_files1-False]": 0.10075889399990956, - "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.07023117599987927, - "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.07255321800039383, - "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.07182776700005888, - "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.09896283400007633, - "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.09891015200014408, - "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.10014518399998451, - "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.10115466500019465, - "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.10010478499998499, - "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.10040277200005221, - "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.0991397360000974, - "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.10328916000025856, - "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.0985391649999201, - "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.09836803400003191, - "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.10292914400019981, - "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.06966524599988588, - "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.067611179999858, - "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.09959781999987172, - "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.09692635400006111, - "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.09831766999991487, - "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.09965654799952972, - "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.07154247900029986, - "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.07412718899990978, - "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.07045226999980514, - "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.12029209299998911, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_non_pack_files[TestData/file.json]": 0.10302941299983104, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_ignored_non_pack_files[TestPlaybooks/file.yml]": 0.09586138000008759, - "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.06830180499991911, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_non_formatted_relevant_file": 0.1039441599998554, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_old_format_file": 0.10209283399990454, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_check_file_relevance_and_format_path_type_missing_file": 0.10219170499999564, - "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.06449175100010507, - "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.06278173399982734, - "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.06140248900010192, - "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.06572604799998771, - "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.06559481499994035, - "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.06070438599999761, - "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.061407644999917466, - "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.062301339000214284, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_all_files_edited_in_pack_ignore_with_git_error": 0.06775475200015535, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_get_packs_that_should_have_version_raised": 0.190040455000144, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_image_error": 0.061193979000336185, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_is_mapping_fields_command_exist": 0.14364195100006327, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -False]": 0.136111357000118, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -True]": 0.1365468009998949, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -False]": 0.13696488400000817, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[ -True]": 0.1469991270000719, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[-False]": 0.13787698100009038, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[-True]": 0.13936243200009812, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\n-False]": 0.14146339099988836, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\n-True]": 0.14851180699974975, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\t-False]": 0.1379795360001026, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_blank_name[\\t-True]": 0.13787630999991052, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_both_selected_and_all_feeds_in_job": 0.14030425200007812, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[-False]": 0.14109395299988137, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[-True]": 0.146506835000082, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[6.4.9-False]": 0.14067192299989983, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_from_version[6.4.9-True]": 0.14576116499983982, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_missing_name[False]": 0.13956935900000644, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_missing_name[True]": 0.14387348300010672, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_non_feed_with_selected_feeds": 0.14685278399997514, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_sanity[False]": 0.13885887300011746, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_sanity[True]": 0.14058980599997994, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[False-selected_feeds2]": 0.1505966619999981, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-None]": 0.1374712379997618, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-selected_feeds0]": 0.1372964070001217, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_job_unexpected_field_values_in_non_feed_job[True-selected_feeds3]": 0.14042394900002364, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_mapping_fields_command_dont_exist": 0.06508259099996394, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_quiet_bc_flag": 0.022293212000022322, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_on_metadata_with_invalid_tags[pack_metadata_info0]": 0.12740381500020703, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_run_validation_using_git_on_only_metadata_changed[pack_metadata0]": 0.13066176200027257, - "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.07706886799996937, - "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.07450908999999228, - "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.07613138200008507, - "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.07480502399994293, - "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.0745277100002113, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_should_raise_pack_version[NonSupported-False]": 0.0706252620000214, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_should_raise_pack_version[PackName1-True]": 0.06985893999990367, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_skip_conf_json": 0.14742256499971518, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_contributors_file": 0.0375816670000404, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set0--[BA115]-False-added_files0]": 0.21797753600026226, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set1---True-added_files1]": 0.07333992999997463, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set2---True-added_files2]": 0.21484096699987276, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set3---True-added_files3]": 0.10932052899988776, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set4---True-added_files4]": 0.10206624000011288, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_deleted_files[file_set5--[BA115]-False-added_files5]": 0.07633945000020503, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_no_disallowed_terms_in_customer_facing_docs_end_to_end": 0.09207374000015989, - "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.0008289480001621996, - "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.0012266679998447216, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_no_disallowed_terms_in_customer_facing_docs_success": 0.0006528979999984585, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_pack_name": 0.07421849499996824, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_validate_using_git_on_changed_marketplaces": 0.5001817539998683, - "demisto_sdk/commands/validate/tests/old_validators_test.py::test_was_file_renamed_but_labeled_as_deleted": 0.0020454050002172153, - "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run0-sub_classes0-expected_results0]": 0.0024587299999438983, - "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run1-sub_classes1-expected_results1]": 0.0018807489998380333, - "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run2-sub_classes2-expected_results2]": 0.0019411329999456939, - "demisto_sdk/commands/validate/tests/validators_test.py::test_filter_validators[validations_to_run3-sub_classes3-expected_results3]": 0.0019326870001350471, - "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-False-config_file_content2-expected_results2-False]": 0.0013578130001405952, - "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content0-expected_results0-False]": 0.0013500089999070042, - "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content3-expected_results3-False]": 0.0014443360000768735, - "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[None-True-config_file_content4-expected_results4-True]": 0.0013884909997159411, - "demisto_sdk/commands/validate/tests/validators_test.py::test_gather_validations_to_run[custom_category-True-config_file_content1-expected_results1-False]": 0.0014490860000933026, - "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.0024844580000262795, - "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.002253567000025214, - "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.0031544270002541452, - "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator0-True]": 0.0013466030000017781, - "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator1-False]": 0.0008826370001315809, - "demisto_sdk/commands/validate/tests/validators_test.py::test_should_run[validator2-False]": 0.0007363330000771384, - "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results0-fixing_results0-expected_results0]": 0.0010271580001699476, - "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results1-fixing_results1-expected_results1]": 0.0009356859998206346, - "demisto_sdk/commands/validate/tests/validators_test.py::test_write_results_to_json_file[results2-fixing_results2-expected_results2]": 0.0009414980002020457, - "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_invalid_pack_name": 0.0033218370003851305, - "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_not_exist_destination": 0.23450405000016872, - "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_packs[False-uploadable_packs/TestPack.zip]": 0.23705104099985874, - "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_packs[True-uploadable_packs.zip]": 0.2366839759999948, - "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zip_with_upload": 0.23986325900000338, - "demisto_sdk/commands/zip_packs/tests/packs_zipper_test.py::TestPacksZipper::test_zipped_packs": 0.23744601899988993, - "demisto_sdk/tests/conf_file_test.py::test_conf_file_custom": 1.8898940469999843, - "demisto_sdk/tests/update_additional_dependencies_test.py::test_in_external_repo": 0.0026320519999956105, - "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[init_pack]": 37.89614695099996, - "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[modify_entity]": 29.77803280699999, - "demisto_sdk/tests/workflow_test.py::test_workflow_by_sequence[rename_incident_field]": 13.871995276000035, - "demisto_sdk/utils/circle-ci/circle_ci_slack_notifier_test.py::test_slack_notifier_on_failed_circle_ci_jobs": 0.01832396799977687 -} + "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 +} \ No newline at end of file From 4c8bbebf660983e672d822b83595ac3c13ecceb3 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 17:42:20 +0200 Subject: [PATCH 104/204] run pytest --- .github/workflows/main.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 769539ee02..9982376883 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,14 +48,13 @@ jobs: node-version: '16' - name: Install npm - run: npm install + run: | + npm install + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json - name: Run pytest run: | source "$(poetry env info --path)/bin/activate" - # shopt -u globstar - - echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json # Due to race conditions in the tests bringing up and down the node server, have the server available # For all the tests. @@ -63,10 +62,10 @@ jobs: node_pid=$! mkdir test-results - poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ - mv .test_durations test-results/test_durations - # poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? - # echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ + # mv .test_durations test-results/test_durations + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts From 5455a3cb58f6d0cfb9703732c3d3d1dbc6227024 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 17:44:12 +0200 Subject: [PATCH 105/204] revert parsers test --- .../tests/parsers_and_models_test.py | 85 +++++++++---------- 1 file changed, 42 insertions(+), 43 deletions(-) diff --git a/demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py b/demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py index d8271c1a25..66c238cf21 100644 --- a/demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py +++ b/demisto_sdk/commands/content_graph/tests/parsers_and_models_test.py @@ -1538,7 +1538,6 @@ def test_pack_parser(self, mocker, repo: Repo): - Verify the pack is modeled correctly. """ from demisto_sdk.commands.content_graph.objects.pack import Pack as PackModel - from TestSuite.test_tools import ChangeCWD pack = repo.create_pack("HelloWorld") pack.pack_metadata.write_json(load_json("pack_metadata.json")) @@ -1547,50 +1546,50 @@ def test_pack_parser(self, mocker, repo: Repo): pack.create_incident_type("sample", load_json("incident_type.json")) pack.create_indicator_field("sample", load_json("indicator_field.json")) pack.create_indicator_type("sample", load_json("indicator_type.json")) + mocker.patch.object(tools, "get_content_path", return_value=Path(repo.path)) with open(f"{pack.path}/.pack-ignore", "w") as f: f.write("[file:classifier-sample.json]\nignore=SC100") - with ChangeCWD(repo.path): - pack_path = Path(pack.path) - parser = PackParser(pack_path) - expected_content_items = { - "Github_Classifier_v1": ContentType.CLASSIFIER, - "cve": ContentType.INCIDENT_FIELD, - "Traps": ContentType.INCIDENT_TYPE, - "email": ContentType.INDICATOR_FIELD, - "urlRep": ContentType.INDICATOR_TYPE, - } - PackRelationshipsVerifier.run( - parser.relationships, - expected_content_items=expected_content_items, - ) - model = PackModel.from_orm(parser) - PackModelVerifier.run( - model, - expected_id="HelloWorld", - expected_name="HelloWorld", - expected_path=pack_path, - expected_description="This is the Hello World integration for getting started.", - expected_created="2020-03-10T08:37:18Z", - expected_author_image="content/packs/HelloWorld/Author_image.png", - expected_legacy=True, - expected_eulaLink="https://github.com/demisto/content/blob/master/LICENSE", - expected_support="community", - expected_url="https://www.paloaltonetworks.com/cortex", - expected_author="Cortex XSOAR", - expected_certification="verified", - expected_hidden=False, - expected_current_version="1.2.12", - expected_tags=["TIM"], - expected_categories=["Utilities"], - expected_use_cases=["Identity And Access Management"], - expected_keywords=[], - expected_marketplaces=[ - MarketplaceVersions.MarketplaceV2, - MarketplaceVersions.XSOAR, - MarketplaceVersions.XSOAR_SAAS, - ], - expected_content_items=expected_content_items, - expected_deprecated=False, + pack_path = Path(pack.path) + parser = PackParser(pack_path) + expected_content_items = { + "Github_Classifier_v1": ContentType.CLASSIFIER, + "cve": ContentType.INCIDENT_FIELD, + "Traps": ContentType.INCIDENT_TYPE, + "email": ContentType.INDICATOR_FIELD, + "urlRep": ContentType.INDICATOR_TYPE, + } + PackRelationshipsVerifier.run( + parser.relationships, + expected_content_items=expected_content_items, + ) + model = PackModel.from_orm(parser) + PackModelVerifier.run( + model, + expected_id="HelloWorld", + expected_name="HelloWorld", + expected_path=pack_path, + expected_description="This is the Hello World integration for getting started.", + expected_created="2020-03-10T08:37:18Z", + expected_author_image="content/packs/HelloWorld/Author_image.png", + expected_legacy=True, + expected_eulaLink="https://github.com/demisto/content/blob/master/LICENSE", + expected_support="community", + expected_url="https://www.paloaltonetworks.com/cortex", + expected_author="Cortex XSOAR", + expected_certification="verified", + expected_hidden=False, + expected_current_version="1.2.12", + expected_tags=["TIM"], + expected_categories=["Utilities"], + expected_use_cases=["Identity And Access Management"], + expected_keywords=[], + expected_marketplaces=[ + MarketplaceVersions.MarketplaceV2, + MarketplaceVersions.XSOAR, + MarketplaceVersions.XSOAR_SAAS, + ], + expected_content_items=expected_content_items, + expected_deprecated=False, ) def test_repo_parser(self, mocker, repo: Repo): From c46d20626cc2a28cca5fa02b845785f4c85cb1ed Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 13 Dec 2023 17:50:09 +0200 Subject: [PATCH 106/204] pre-commit --- .github/workflows/main.yml | 2 +- .test_durations | 2 +- .../commands/content_graph/tests/create_content_graph_test.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9982376883..4c1ffe6e77 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -60,7 +60,7 @@ jobs: # For all the tests. node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - + mkdir test-results # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations diff --git a/.test_durations b/.test_durations index 75875d7345..e64133459f 100644 --- a/.test_durations +++ b/.test_durations @@ -4592,4 +4592,4 @@ "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 -} \ No newline at end of file +} 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 342cae0f2a..1a1d88e438 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 @@ -1238,6 +1238,7 @@ def test_create_content_graph_with_python_version( content_type=ContentType.INTEGRATION, ) import logging - logging.info(f'{integrations[0].to_dict()=}') + + logging.info(f"{integrations[0].to_dict()=}") assert expected_python_version == integrations[0].to_dict()["python_version"] assert dockerhub_api_mocker.called == is_taken_from_dockerhub From 05dc47fe0ab8cb2acd2e8d33101351123d7c9477 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 14 Dec 2023 17:32:42 +0200 Subject: [PATCH 107/204] add graph-tests job --- .github/workflows/main.yml | 75 +++++++++++++++++++++++++++++++++++++- 1 file changed, 74 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4c1ffe6e77..cb03f695bc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,7 +64,7 @@ jobs: mkdir test-results # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid @@ -170,6 +170,79 @@ jobs: echo "All integration-tests have passed, congratulations!" fi exit $PYTEST_EXIT_CODE + graph-tests: + name: Graph Tests / ${{ matrix.python-version }} (${{ matrix.group }}) + 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: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.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 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '16' + + - name: Install npm + run: | + npm install + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json + + - name: Run pytest + run: | + source "$(poetry env info --path)/bin/activate" + + mkdir graph-test-results + poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html --junitxml=graph-test-results/junit.xml || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v3 + with: + name: graph-tests-artifacts-${{ matrix.python-version }} + path: | + test-results/test_durations + graph-test-results/junit.xml + node_versions_info.json + coverage_html_report + .coverage + - name: Print Summary of pytest results in workflow summary + if: always() + uses: pmeier/pytest-results-action@main + with: + path: graph-test-results/junit.xml + summary: true + display-options: fsEX + fail-on-empty: true + - name: Check if tests have passed + if: always() + run: | + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then + echo "There are graph-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + else + echo "All graph-tests have passed, congratulations!" + fi + exit $PYTEST_EXIT_CODE coverage: needs: [unit-tests, integration-tests] From 945bb6aabfc05581fb4b35600ea19cbe13b98775 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 14 Dec 2023 17:34:47 +0200 Subject: [PATCH 108/204] fix name --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cb03f695bc..c6cb06986f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -171,7 +171,7 @@ jobs: fi exit $PYTEST_EXIT_CODE graph-tests: - name: Graph Tests / ${{ matrix.python-version }} (${{ matrix.group }}) + name: Graph Tests / ${{ matrix.python-version }} runs-on: ubuntu-latest strategy: matrix: @@ -245,7 +245,7 @@ jobs: exit $PYTEST_EXIT_CODE coverage: - needs: [unit-tests, integration-tests] + needs: [unit-tests, integration-tests, graph-tests] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 From 7b6bd03d9411063a7e717f3bab000db6b1bdc3f9 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 16:19:35 +0200 Subject: [PATCH 109/204] add callable workflow tests --- .github/workflows/tests.yml | 117 ++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000000..f67dabf5c7 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,117 @@ +name: Create and Publish Docker Image + +on: + workflow_call: + inputs: + node-version: + required: false + type: string + default: "16" + test-type: + required: true + type: string + should-split: + required: false + type: boolean + default: false + ignored-file-paths: + type: string + required: false + default: "" + file-paths-to-run: + type: string + required: false + default: "" + + + +jobs: + tests: + name: ${{inputs.test-type}} Tests / ${{ 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: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.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 + + - 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 + + - name: Run pytest + 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 ${{inputs.test-type}}-test-results + # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ + # mv .test_durations test-results/test_durations + + echo "Starting to run ${{inputs.test-type}} tests" + + if [[ ${{inputs.should_split}} == "true" ]] then; + poetry run pytest -v --ignore={${{inputs.ignored-file-paths}}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + else + poetry run pytest -v ${{file-paths-to-run}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results || pytest_exit_code=$? + fi + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + kill $node_pid + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v3 + with: + name: ${{inputs.test-type}}-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} + path: | + .test_durations + ${{inputs.test-type}}-test-results/junit.xml + node_versions_info.json + coverage_html_report + .coverage + - name: Print Summary of pytest results in workflow summary + if: always() + uses: pmeier/pytest-results-action@main + with: + path: ${{inputs.test-type}}-test-results/junit.xml + summary: true + display-options: fsEX + fail-on-empty: true + - name: Check if ${{inputs.test-type}}-tests have passed + if: always() + run: | + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then + echo "There are ${{inputs.test-type}}-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + else + echo "All ${{inputs.test-type}}-tests have passed, congratulations!" + fi + exit $PYTEST_EXIT_CODE \ No newline at end of file From d510561accd957fd475a12edf77c2c7b06f473c4 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 16:28:11 +0200 Subject: [PATCH 110/204] use callable workflow in main.yml for tests --- .github/workflows/main.yml | 237 ++---------------------------------- .github/workflows/tests.yml | 1 - 2 files changed, 13 insertions(+), 225 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c6cb06986f..aecb99745c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,234 +15,23 @@ concurrency: jobs: unit-tests: - name: Unit Tests / ${{ 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: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.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 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '16' - - - name: Install npm - run: | - npm install - echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json - - - name: Run pytest - 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 test-results - # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ - # mv .test_durations test-results/test_durations - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? - echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - - kill $node_pid - - name: Upload artifacts - if: always() - uses: actions/upload-artifact@v3 - with: - name: unit-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} - path: | - test-results/test_durations - test-results/junit.xml - node_versions_info.json - coverage_html_report - .coverage - - name: Print Summary of pytest results in workflow summary - if: always() - uses: pmeier/pytest-results-action@main - with: - path: test-results/junit.xml - summary: true - display-options: fsEX - fail-on-empty: true - - name: Check if tests have passed - if: always() - run: | - if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" - else - echo "All unit-tests have passed, congratulations!" - fi - exit $PYTEST_EXIT_CODE + uses: demisto-sdk/.github/workflows/tests.yml + with: + test-type: "Unit" + should-split: true + ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" integration-tests: - name: Integration Tests / ${{ matrix.python-version }} - 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: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} + uses: demisto-sdk/.github/workflows/tests.yml + with: + test-type: "Integration" + file-paths-to-run: "demisto_sdk/tests/integration_tests" - - name: Setup Poetry - run: | - sudo curl -sSL https://install.python-poetry.org | python3 - - poetry --version - poetry check --lock - poetry install - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '16' - - - name: Install npm - run: npm install - - - name: Run pytest - run: | - source "$(poetry env info --path)/bin/activate" - - echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json - - mkdir integration-test-results - poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html --junitxml=integration-test-results/junit.xml || pytest_exit_code=$? - echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - - exit $pytest_exit_code - - name: Upload artifacts - if: always() - uses: actions/upload-artifact@v3 - with: - name: integration-tests-artifacts-${{ matrix.python-version }} - path: | - .test_durations - integration-test-results/junit.xml - node_versions_info.json - coverage_html_report - .coverage - - name: Print Summary of pytest results in workflow summary - if: always() - uses: pmeier/pytest-results-action@main - with: - path: integration-test-results/junit.xml - summary: true - display-options: fsEX - fail-on-empty: true - - name: Check if tests have passed - if: always() - run: | - if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are integration-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" - else - echo "All integration-tests have passed, congratulations!" - fi - exit $PYTEST_EXIT_CODE graph-tests: - name: Graph Tests / ${{ matrix.python-version }} - 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: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.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 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '16' - - - name: Install npm - run: | - npm install - echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json - - - name: Run pytest - run: | - source "$(poetry env info --path)/bin/activate" - - mkdir graph-test-results - poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html --junitxml=graph-test-results/junit.xml || pytest_exit_code=$? - echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - - - name: Upload artifacts - if: always() - uses: actions/upload-artifact@v3 - with: - name: graph-tests-artifacts-${{ matrix.python-version }} - path: | - test-results/test_durations - graph-test-results/junit.xml - node_versions_info.json - coverage_html_report - .coverage - - name: Print Summary of pytest results in workflow summary - if: always() - uses: pmeier/pytest-results-action@main - with: - path: graph-test-results/junit.xml - summary: true - display-options: fsEX - fail-on-empty: true - - name: Check if tests have passed - if: always() - run: | - if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are graph-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" - else - echo "All graph-tests have passed, congratulations!" - fi - exit $PYTEST_EXIT_CODE + uses: demisto-sdk/.github/workflows/tests.yml + with: + test-type: "Graph" + file-paths-to-run: "demisto_sdk/commands/content_graph" coverage: needs: [unit-tests, integration-tests, graph-tests] diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f67dabf5c7..d9887ea689 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,7 +24,6 @@ on: default: "" - jobs: tests: name: ${{inputs.test-type}} Tests / ${{ matrix.python-version }} (${{ matrix.group }}) From 8e760b0de3117e0033edfdd4851a9e78ad501ddb Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 16:31:32 +0200 Subject: [PATCH 111/204] add master branch --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aecb99745c..a012cfffd6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,20 +15,20 @@ concurrency: jobs: unit-tests: - uses: demisto-sdk/.github/workflows/tests.yml + uses: demisto-sdk/.github/workflows/tests.yml@master with: test-type: "Unit" should-split: true ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" integration-tests: - uses: demisto-sdk/.github/workflows/tests.yml + uses: demisto-sdk/.github/workflows/tests.yml@master with: test-type: "Integration" file-paths-to-run: "demisto_sdk/tests/integration_tests" graph-tests: - uses: demisto-sdk/.github/workflows/tests.yml + uses: demisto-sdk/.github/workflows/tests.yml@master with: test-type: "Graph" file-paths-to-run: "demisto_sdk/commands/content_graph" From 98fe7d30847aaea972ffa109542db656723eac4a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 16:34:40 +0200 Subject: [PATCH 112/204] use ./ --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a012cfffd6..ca608acf83 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,20 +15,20 @@ concurrency: jobs: unit-tests: - uses: demisto-sdk/.github/workflows/tests.yml@master + uses: ./.github/workflows/tests.yml@master with: test-type: "Unit" should-split: true ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" integration-tests: - uses: demisto-sdk/.github/workflows/tests.yml@master + uses: ./.github/workflows/tests.yml@master with: test-type: "Integration" file-paths-to-run: "demisto_sdk/tests/integration_tests" graph-tests: - uses: demisto-sdk/.github/workflows/tests.yml@master + uses: ./.github/workflows/tests.yml@master with: test-type: "Graph" file-paths-to-run: "demisto_sdk/commands/content_graph" From da36fdb2350657007996543fe6807c75877c60b5 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 16:36:09 +0200 Subject: [PATCH 113/204] remove version --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ca608acf83..4de564d3d4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,20 +15,20 @@ concurrency: jobs: unit-tests: - uses: ./.github/workflows/tests.yml@master + uses: ./.github/workflows/tests.yml with: test-type: "Unit" should-split: true ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" integration-tests: - uses: ./.github/workflows/tests.yml@master + uses: ./.github/workflows/tests.yml with: test-type: "Integration" file-paths-to-run: "demisto_sdk/tests/integration_tests" graph-tests: - uses: ./.github/workflows/tests.yml@master + uses: ./.github/workflows/tests.yml with: test-type: "Graph" file-paths-to-run: "demisto_sdk/commands/content_graph" From e9b7e055e43d3caf20c456e780ecdcf826f7f699 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 16:46:46 +0200 Subject: [PATCH 114/204] add descriptions --- .github/workflows/main.yml | 4 ++-- .github/workflows/tests.yml | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4de564d3d4..9dfcfd60fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,13 +25,13 @@ jobs: uses: ./.github/workflows/tests.yml with: test-type: "Integration" - file-paths-to-run: "demisto_sdk/tests/integration_tests" + file-path: "demisto_sdk/tests/integration_tests" graph-tests: uses: ./.github/workflows/tests.yml with: test-type: "Graph" - file-paths-to-run: "demisto_sdk/commands/content_graph" + file-path: "demisto_sdk/commands/content_graph" coverage: needs: [unit-tests, integration-tests, graph-tests] diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d9887ea689..9e7778b292 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,21 +7,26 @@ on: required: false type: string default: "16" + description: "The node version to install" test-type: required: true type: string + description: "The type of the test that will run" should-split: required: false type: boolean default: false + description: "Whether to use pytest-split in order to split to tests" ignored-file-paths: type: string required: false default: "" - file-paths-to-run: + description: "A comma separated of file-paths to ignore when running tests" + file-path: type: string required: false default: "" + description: "The file path that from it tests will be executed" jobs: @@ -82,7 +87,7 @@ jobs: if [[ ${{inputs.should_split}} == "true" ]] then; poetry run pytest -v --ignore={${{inputs.ignored-file-paths}}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? else - poetry run pytest -v ${{file-paths-to-run}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results || pytest_exit_code=$? + poetry run pytest -v ${{file-path}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From fdfcf2f3e75c5abca9ff1f1aa62ad41c46ee06b1 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 16:51:37 +0200 Subject: [PATCH 115/204] add empty file:path --- .github/workflows/main.yml | 1 + .github/workflows/tests.yml | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9dfcfd60fe..32caf469df 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,6 +20,7 @@ jobs: test-type: "Unit" should-split: true ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" + file-path: "" integration-tests: uses: ./.github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9e7778b292..132cd59f47 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,15 +3,15 @@ name: Create and Publish Docker Image on: workflow_call: inputs: + test-type: + required: true + type: string + description: "The type of the test that will run" node-version: required: false type: string default: "16" description: "The node version to install" - test-type: - required: true - type: string - description: "The type of the test that will run" should-split: required: false type: boolean From 48cf349da0f5aa2401b9e70ac2f16e2a4c6965a3 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 16:53:32 +0200 Subject: [PATCH 116/204] add .input-string --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 132cd59f47..87f00200e7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -87,7 +87,7 @@ jobs: if [[ ${{inputs.should_split}} == "true" ]] then; poetry run pytest -v --ignore={${{inputs.ignored-file-paths}}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? else - poetry run pytest -v ${{file-path}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results || pytest_exit_code=$? + poetry run pytest -v ${{inputs.file-path}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From 382c863b6c3bc389d819b2c8f856afcac5b5c3e3 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 17:37:26 +0200 Subject: [PATCH 117/204] try to define groups dynamically --- .github/workflows/main.yml | 2 +- .github/workflows/tests.yml | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 32caf469df..9893c640c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,7 @@ jobs: test-type: "Unit" should-split: true ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" - file-path: "" + groups: '["1", "2", "3", "4", "5"]' integration-tests: uses: ./.github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 87f00200e7..3cafeca5f2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,6 +27,11 @@ on: required: false default: "" description: "The file path that from it tests will be executed" + groups: + type: string + required: false + default: "[]" + description: "The file path that from it tests will be executed" jobs: @@ -36,7 +41,7 @@ jobs: strategy: matrix: python-version: [ "3.8", "3.9", "3.10" ] - group: [ 1, 2, 3, 4, 5 ] + group: ${{ fromJson(inputs.groups) }} fail-fast: false defaults: run: @@ -77,14 +82,13 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - mkdir ${{inputs.test-type}}-test-results # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations echo "Starting to run ${{inputs.test-type}} tests" - if [[ ${{inputs.should_split}} == "true" ]] then; + if [[ ${{inputs.should_split}} == true ]]; then poetry run pytest -v --ignore={${{inputs.ignored-file-paths}}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? else poetry run pytest -v ${{inputs.file-path}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results || pytest_exit_code=$? From ee9d84975aac4979c2e842f1d0673d9c506e686f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 17:40:12 +0200 Subject: [PATCH 118/204] default of all group --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3cafeca5f2..c31c9cd44b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ on: groups: type: string required: false - default: "[]" + default: "['All']" description: "The file path that from it tests will be executed" From 11545c436f9c24efb7f1c82ad453d82527544f9c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 17:45:06 +0200 Subject: [PATCH 119/204] default of all tests group --- .github/workflows/main.yml | 2 +- .github/workflows/tests.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9893c640c4..247425af7d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: uses: ./.github/workflows/tests.yml with: test-type: "Unit" - should-split: true + should-split: "true" ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" groups: '["1", "2", "3", "4", "5"]' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c31c9cd44b..740502cf1a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,8 +14,8 @@ on: description: "The node version to install" should-split: required: false - type: boolean - default: false + type: string + default: "false" description: "Whether to use pytest-split in order to split to tests" ignored-file-paths: type: string @@ -30,8 +30,8 @@ on: groups: type: string required: false - default: "['All']" - description: "The file path that from it tests will be executed" + default: "['All-Tests']" + description: "The number of groups to split the tests into for concurrency" jobs: @@ -87,8 +87,8 @@ jobs: # mv .test_durations test-results/test_durations echo "Starting to run ${{inputs.test-type}} tests" - - if [[ ${{inputs.should_split}} == true ]]; then + + if [[ ${{inputs.should_split}} == "true" ]]; then poetry run pytest -v --ignore={${{inputs.ignored-file-paths}}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? else poetry run pytest -v ${{inputs.file-path}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results || pytest_exit_code=$? From 03f0ad0ea77592a8291c643f4500966fd204f867 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 17:47:59 +0200 Subject: [PATCH 120/204] try to fix syntax error --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 740502cf1a..04a3328b95 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -88,10 +88,10 @@ jobs: echo "Starting to run ${{inputs.test-type}} tests" - if [[ ${{inputs.should_split}} == "true" ]]; then - poetry run pytest -v --ignore={${{inputs.ignored-file-paths}}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + if [[ "${{ inputs.should_split }}" == "true" ]]; then + poetry run pytest -v --ignore="${{ inputs.ignored-file-paths }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results" --splits 5 --group "${{ matrix.group }}" || pytest_exit_code=$? else - poetry run pytest -v ${{inputs.file-path}} --cov=demisto_sdk --cov-report=html --junitxml=${{inputs.test-type}}-test-results || pytest_exit_code=$? + poetry run pytest -v "${{ inputs.file-path }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results" || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From 1f6cd9c1ad9aa3e2605f81001d3ac954ab0296ef Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 17:52:38 +0200 Subject: [PATCH 121/204] fix junit path --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 04a3328b95..41331ebfb8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -89,9 +89,9 @@ jobs: echo "Starting to run ${{inputs.test-type}} tests" if [[ "${{ inputs.should_split }}" == "true" ]]; then - poetry run pytest -v --ignore="${{ inputs.ignored-file-paths }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results" --splits 5 --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v --ignore="${{ inputs.ignored-file-paths }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits 5 --group "${{ matrix.group }}" || pytest_exit_code=$? else - poetry run pytest -v "${{ inputs.file-path }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results" || pytest_exit_code=$? + poetry run pytest -v "${{ inputs.file-path }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid @@ -102,7 +102,7 @@ jobs: name: ${{inputs.test-type}}-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} path: | .test_durations - ${{inputs.test-type}}-test-results/junit.xml + "${{ inputs.test-type }}-test-results/junit.xml" node_versions_info.json coverage_html_report .coverage From c7ce8665cb06bbd29d7843f07b7eb9838275bebb Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 18:18:56 +0200 Subject: [PATCH 122/204] fix non-ignored files --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 41331ebfb8..8d93d7a214 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -89,7 +89,8 @@ jobs: echo "Starting to run ${{inputs.test-type}} tests" if [[ "${{ inputs.should_split }}" == "true" ]]; then - poetry run pytest -v --ignore="${{ inputs.ignored-file-paths }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits 5 --group "${{ matrix.group }}" || pytest_exit_code=$? + echo "ignored-files are ${{ inputs.ignored-file-paths }}" + poetry run pytest -v --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits ${{ length(matrix.group) }}" --group "${{ matrix.group }}" || pytest_exit_code=$? else poetry run pytest -v "${{ inputs.file-path }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? fi From 1ff519c9fac525326253dc206e18b5d5d8daa8cd Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 18:23:01 +0200 Subject: [PATCH 123/204] try .length --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8d93d7a214..419f1c0139 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -90,7 +90,7 @@ jobs: if [[ "${{ inputs.should_split }}" == "true" ]]; then echo "ignored-files are ${{ inputs.ignored-file-paths }}" - poetry run pytest -v --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits ${{ length(matrix.group) }}" --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits ${{ matrix.group.length }}" --group "${{ matrix.group }}" || pytest_exit_code=$? else poetry run pytest -v "${{ inputs.file-path }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? fi From 7de3fc8391f95018b657f1248b94fdb70c5e833b Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 18:27:39 +0200 Subject: [PATCH 124/204] fix " --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 419f1c0139..a5367210a5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -86,11 +86,11 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - echo "Starting to run ${{inputs.test-type}} tests" + echo "Starting to run ${{ inputs.test-type }} tests" if [[ "${{ inputs.should_split }}" == "true" ]]; then echo "ignored-files are ${{ inputs.ignored-file-paths }}" - poetry run pytest -v --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits ${{ matrix.group.length }}" --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ matrix.group.length }}" --group "${{ matrix.group }}" || pytest_exit_code=$? else poetry run pytest -v "${{ inputs.file-path }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? fi From 300a6269b5001f55f88fa4611359788cef4166d4 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 18:34:55 +0200 Subject: [PATCH 125/204] remove if for pytest --- .github/workflows/main.yml | 1 - .github/workflows/tests.yml | 32 ++++++++++++-------------------- 2 files changed, 12 insertions(+), 21 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 247425af7d..34b356387b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,6 @@ jobs: uses: ./.github/workflows/tests.yml with: test-type: "Unit" - should-split: "true" ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" groups: '["1", "2", "3", "4", "5"]' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a5367210a5..1a798daf6a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,11 +12,6 @@ on: type: string default: "16" description: "The node version to install" - should-split: - required: false - type: string - default: "false" - description: "Whether to use pytest-split in order to split to tests" ignored-file-paths: type: string required: false @@ -25,7 +20,7 @@ on: file-path: type: string required: false - default: "" + default: "." description: "The file path that from it tests will be executed" groups: type: string @@ -86,24 +81,21 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - echo "Starting to run ${{ inputs.test-type }} tests" - - if [[ "${{ inputs.should_split }}" == "true" ]]; then - echo "ignored-files are ${{ inputs.ignored-file-paths }}" - poetry run pytest -v --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ matrix.group.length }}" --group "${{ matrix.group }}" || pytest_exit_code=$? - else - poetry run pytest -v "${{ inputs.file-path }}" --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? - fi + echo "Starting to run ${{ inputs.test-type }} tests" + echo "ignored-files are ${{ inputs.ignored-file-paths }}" + echo "matrix: ${{ matrix.group.length }}, matrix content: ${{ matrix.group }}" + + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ matrix.group.length }}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts if: always() uses: actions/upload-artifact@v3 with: - name: ${{inputs.test-type}}-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} + name: ${{ inputs.test-type }}-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} path: | .test_durations - "${{ inputs.test-type }}-test-results/junit.xml" + ${{ inputs.test-type }}-test-results/junit.xml node_versions_info.json coverage_html_report .coverage @@ -111,16 +103,16 @@ jobs: if: always() uses: pmeier/pytest-results-action@main with: - path: ${{inputs.test-type}}-test-results/junit.xml + path: ${{ inputs.test-type }}-test-results/junit.xml summary: true display-options: fsEX fail-on-empty: true - - name: Check if ${{inputs.test-type}}-tests have passed + - name: Check if ${{ inputs.test-type }}-tests have passed if: always() run: | if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are ${{inputs.test-type}}-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + echo "There are ${{ inputs.test-type }}-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" else - echo "All ${{inputs.test-type}}-tests have passed, congratulations!" + echo "All ${{ inputs.test-type }}-tests have passed, congratulations!" fi exit $PYTEST_EXIT_CODE \ No newline at end of file From fc99fc6d8e8d7b1d38635d61b548b576ec6fcd6c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 18:45:45 +0200 Subject: [PATCH 126/204] try to fix splits --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1a798daf6a..67d46e4454 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -83,9 +83,10 @@ jobs: echo "Starting to run ${{ inputs.test-type }} tests" echo "ignored-files are ${{ inputs.ignored-file-paths }}" - echo "matrix: ${{ matrix.group.length }}, matrix content: ${{ matrix.group }}" + input_groups=${{ fromJson(inputs.groups) }} + echo "groups length: ${input_groups.length}, groups content: ${input_groups}" - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ matrix.group.length }}" --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${input_groups.length}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts From 1227d8386d68414b2c643e87dc9c56a2f88f11d9 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Fri, 15 Dec 2023 18:49:43 +0200 Subject: [PATCH 127/204] try to fix legnth splits --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 67d46e4454..bbd0152bf4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -80,13 +80,14 @@ jobs: mkdir ${{inputs.test-type}}-test-results # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - + echo "Starting to run ${{ inputs.test-type }} tests" echo "ignored-files are ${{ inputs.ignored-file-paths }}" input_groups=${{ fromJson(inputs.groups) }} - echo "groups length: ${input_groups.length}, groups content: ${input_groups}" + splits=${#input_groups[@]} + echo "groups length: ${splits}, groups content: ${input_groups}" - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${input_groups.length}" --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts From 206999b60e8ff59c4d7f53ce52a0c366d01ddd58 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 00:07:03 +0200 Subject: [PATCH 128/204] use if to run pytest --- .github/workflows/tests.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bbd0152bf4..779500e5b2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -81,13 +81,15 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - echo "Starting to run ${{ inputs.test-type }} tests" - echo "ignored-files are ${{ inputs.ignored-file-paths }}" - input_groups=${{ fromJson(inputs.groups) }} - splits=${#input_groups[@]} - echo "groups length: ${splits}, groups content: ${input_groups}" - - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? + echo "ignored-file-paths=${{ inputs.ignored-file-paths }}, file-path=${{ inputs.file-path }}" + if [ "${my_array[@]}" = "All-Tests" ]; then + echo "Running "${{ inputs.test-type }} tests without splitting" + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? + else + echo "Running "${{ inputs.test-type }} tests without splitting the tests" + input_groups=${{ fromJson(inputs.groups) }} + splits=${#input_groups[@]} + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts From 02662eac2dad0b148c40674d21535aaa9f41aabf Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 00:08:56 +0200 Subject: [PATCH 129/204] fix syntax error --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 779500e5b2..1638d7d30e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,7 +82,7 @@ jobs: # mv .test_durations test-results/test_durations echo "ignored-file-paths=${{ inputs.ignored-file-paths }}, file-path=${{ inputs.file-path }}" - if [ "${my_array[@]}" = "All-Tests" ]; then + if [[ "${my_array[@]}" = "All-Tests" ]]; then echo "Running "${{ inputs.test-type }} tests without splitting" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else @@ -90,6 +90,7 @@ jobs: input_groups=${{ fromJson(inputs.groups) }} splits=${#input_groups[@]} poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? + fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts From f605924b6bf40e6afd0f3dc2b05a7d780e9b3e8e Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 00:09:33 +0200 Subject: [PATCH 130/204] fix syntax errors --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1638d7d30e..a937a73987 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -80,14 +80,15 @@ jobs: mkdir ${{inputs.test-type}}-test-results # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - + + input_groups=${{ fromJson(inputs.groups) }} + echo "ignored-file-paths=${{ inputs.ignored-file-paths }}, file-path=${{ inputs.file-path }}" - if [[ "${my_array[@]}" = "All-Tests" ]]; then + if [[ "${input_groups[@]}" = "All-Tests" ]]; then echo "Running "${{ inputs.test-type }} tests without splitting" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else echo "Running "${{ inputs.test-type }} tests without splitting the tests" - input_groups=${{ fromJson(inputs.groups) }} splits=${#input_groups[@]} poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? fi From 4e1c423f5922e67ce29eccaf964dc14d093271b0 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 00:14:52 +0200 Subject: [PATCH 131/204] fix " --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a937a73987..69866834ef 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -88,7 +88,7 @@ jobs: echo "Running "${{ inputs.test-type }} tests without splitting" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else - echo "Running "${{ inputs.test-type }} tests without splitting the tests" + echo "Running ${{ inputs.test-type }} tests without splitting the tests" splits=${#input_groups[@]} poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? fi From 1bc6fa7dadbfbb1c05f4f5f2bbdc199f2b3025fe Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 00:17:59 +0200 Subject: [PATCH 132/204] fix syntax errors --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 69866834ef..84eb588ebc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -85,11 +85,11 @@ jobs: echo "ignored-file-paths=${{ inputs.ignored-file-paths }}, file-path=${{ inputs.file-path }}" if [[ "${input_groups[@]}" = "All-Tests" ]]; then - echo "Running "${{ inputs.test-type }} tests without splitting" + echo "Running ${{ inputs.test-type }} tests without splitting" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else echo "Running ${{ inputs.test-type }} tests without splitting the tests" - splits=${#input_groups[@]} + splits="${#input_groups[@]}" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV From d604ba8db82390ec2e70452e9e723343d01102b0 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 10:12:00 +0200 Subject: [PATCH 133/204] try now --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 84eb588ebc..028179cce0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,12 +84,13 @@ jobs: input_groups=${{ fromJson(inputs.groups) }} echo "ignored-file-paths=${{ inputs.ignored-file-paths }}, file-path=${{ inputs.file-path }}" - if [[ "${input_groups[@]}" = "All-Tests" ]]; then + echo "input_groups=${input_groups}, input_groups_2=${input_groups[@]}" + if [[ "${input_groups}" = "All-Tests" ]]; then echo "Running ${{ inputs.test-type }} tests without splitting" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else - echo "Running ${{ inputs.test-type }} tests without splitting the tests" splits="${#input_groups[@]}" + echo "Running ${{ inputs.test-type }} tests by splitting the tests into ${splits} splits" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV @@ -121,4 +122,4 @@ jobs: else echo "All ${{ inputs.test-type }}-tests have passed, congratulations!" fi - exit $PYTEST_EXIT_CODE \ No newline at end of file + exit $PYTEST_EXIT_CODE From 57158c49366dd4e93bb0d60284a36582ab896792 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 11:28:34 +0200 Subject: [PATCH 134/204] check with * --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 028179cce0..ae23462f26 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,7 +84,7 @@ jobs: input_groups=${{ fromJson(inputs.groups) }} echo "ignored-file-paths=${{ inputs.ignored-file-paths }}, file-path=${{ inputs.file-path }}" - echo "input_groups=${input_groups}, input_groups_2=${input_groups[@]}" + echo "input_groups=${input_groups}, input_groups_2=${input_groups[*]}" if [[ "${input_groups}" = "All-Tests" ]]; then echo "Running ${{ inputs.test-type }} tests without splitting" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? From b0c8bcbc00433525cf91836a5c1f1c5fb4e038f9 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 11:32:07 +0200 Subject: [PATCH 135/204] test [0] --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ae23462f26..cdbcae7ee3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,8 +84,8 @@ jobs: input_groups=${{ fromJson(inputs.groups) }} echo "ignored-file-paths=${{ inputs.ignored-file-paths }}, file-path=${{ inputs.file-path }}" - echo "input_groups=${input_groups}, input_groups_2=${input_groups[*]}" - if [[ "${input_groups}" = "All-Tests" ]]; then + echo "input_groups=${input_groups}, input_groups_2=${input_groups[0]}" + if [[ "${input_groups[0]}" = "All-Tests" ]]; then echo "Running ${{ inputs.test-type }} tests without splitting" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else From d131304626f6fe4bc304682d1dfdd2150d348f2a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 12:05:32 +0200 Subject: [PATCH 136/204] try now --- .github/workflows/tests.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cdbcae7ee3..d7897b7071 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,7 +25,7 @@ on: groups: type: string required: false - default: "['All-Tests']" + default: "['1']" description: "The number of groups to split the tests into for concurrency" @@ -82,17 +82,9 @@ jobs: # mv .test_durations test-results/test_durations input_groups=${{ fromJson(inputs.groups) }} - - echo "ignored-file-paths=${{ inputs.ignored-file-paths }}, file-path=${{ inputs.file-path }}" - echo "input_groups=${input_groups}, input_groups_2=${input_groups[0]}" - if [[ "${input_groups[0]}" = "All-Tests" ]]; then - echo "Running ${{ inputs.test-type }} tests without splitting" - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? - else - splits="${#input_groups[@]}" - echo "Running ${{ inputs.test-type }} tests by splitting the tests into ${splits} splits" - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? - fi + splits="${#input_groups[@]}" + echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups}" + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - name: Upload artifacts From 517acf1fd9530f28bcceef9455e7a20670bb05e1 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 12:08:47 +0200 Subject: [PATCH 137/204] update --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d7897b7071..9c722fb14c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -83,7 +83,7 @@ jobs: input_groups=${{ fromJson(inputs.groups) }} splits="${#input_groups[@]}" - echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups}" + echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups}, group=${{ matrix.group }}" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From 85ab97ac6bc9e69933197788443308820e5c8520 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 18:45:43 +0200 Subject: [PATCH 138/204] update name --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9c722fb14c..bd63b781be 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,7 +31,7 @@ on: jobs: tests: - name: ${{inputs.test-type}} Tests / ${{ matrix.python-version }} (${{ matrix.group }}) + name: ${{ matrix.python-version }} (${{ matrix.group }}) runs-on: ubuntu-latest strategy: matrix: From c5f61ccc20abfed80b93b484b3d9b7a0d4eb88f9 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 18:53:10 +0200 Subject: [PATCH 139/204] use mdx server only in unit --- .github/workflows/tests.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bd63b781be..a311970f76 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -74,8 +74,10 @@ jobs: # 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=$! + if [[ ${{ inputs.test-type }} == "Unit" ]]; then + node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & + node_pid=$! + fi mkdir ${{inputs.test-type}}-test-results # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ @@ -86,7 +88,9 @@ jobs: echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups}, group=${{ matrix.group }}" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - kill $node_pid + if [[ ${{ inputs.test-type }} == "Unit" ]]; then + kill $node_pid + fi - name: Upload artifacts if: always() uses: actions/upload-artifact@v3 From f96c38fb03ea377231547311df346c7b374d51ec Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 18:56:08 +0200 Subject: [PATCH 140/204] install node only for unit-tests --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a311970f76..b209282588 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -59,11 +59,13 @@ jobs: poetry install -E generate-unit-tests - name: Set up Node.js + if: ${{ inputs.test-type }} == "Unit" uses: actions/setup-node@v3 with: - node-version: ${{inputs.node-version}} + node-version: ${{ inputs.node-version }} - name: Install npm + if: ${{ inputs.test-type }} == "Unit" run: | npm install echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json From 2b60eece0e5ac4eef49b8b180e6caa4e8f780605 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 18:58:08 +0200 Subject: [PATCH 141/204] update --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b209282588..ecff046414 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,7 +31,7 @@ on: jobs: tests: - name: ${{ matrix.python-version }} (${{ matrix.group }}) + name: Python ${{ matrix.python-version }} (${{ matrix.group }}) runs-on: ubuntu-latest strategy: matrix: From 4d6b750b78f3f64a1c73bd03c440d99507ffc2d6 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 19:01:16 +0200 Subject: [PATCH 142/204] update if statement --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ecff046414..7946181801 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -59,13 +59,13 @@ jobs: poetry install -E generate-unit-tests - name: Set up Node.js - if: ${{ inputs.test-type }} == "Unit" + if: ${{ inputs.test-type == "Unit" }} uses: actions/setup-node@v3 with: node-version: ${{ inputs.node-version }} - name: Install npm - if: ${{ inputs.test-type }} == "Unit" + if: ${{ inputs.test-type == "Unit" }} run: | npm install echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json From ce90b3839111fbd92277fd23493b86ed6a705f86 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 19:02:13 +0200 Subject: [PATCH 143/204] add echo --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7946181801..382b2753c4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -77,6 +77,7 @@ jobs: # Due to race conditions in the tests bringing up and down the node server, have the server available # For all the tests. if [[ ${{ inputs.test-type }} == "Unit" ]]; then + echo "Running mdx server" node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! fi From 111f5f0c834be37cb918c98f95891b12cf32e938 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 19:08:29 +0200 Subject: [PATCH 144/204] try now --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 382b2753c4..af541a03b5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -59,13 +59,13 @@ jobs: poetry install -E generate-unit-tests - name: Set up Node.js - if: ${{ inputs.test-type == "Unit" }} + if: ${{ inputs.test-type == 'Unit' }} uses: actions/setup-node@v3 with: node-version: ${{ inputs.node-version }} - name: Install npm - if: ${{ inputs.test-type == "Unit" }} + if: ${{ inputs.test-type == 'Unit' }} run: | npm install echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json @@ -76,7 +76,7 @@ jobs: # Due to race conditions in the tests bringing up and down the node server, have the server available # For all the tests. - if [[ ${{ inputs.test-type }} == "Unit" ]]; then + if [[ ${{ inputs.test-type }} == Unit ]]; then echo "Running mdx server" node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! From 595f0150411b034d43cbd4c562035d1e6dd8d07b Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 19:13:03 +0200 Subject: [PATCH 145/204] hardcode split --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index af541a03b5..e72597f94c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -89,7 +89,7 @@ jobs: input_groups=${{ fromJson(inputs.groups) }} splits="${#input_groups[@]}" echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups}, group=${{ matrix.group }}" - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits 5 --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV if [[ ${{ inputs.test-type }} == "Unit" ]]; then kill $node_pid From b5dba2c2de021d9a6c14c0690c1c360a21d8c25d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 19:13:58 +0200 Subject: [PATCH 146/204] remove node ifs --- .github/workflows/tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e72597f94c..648ca76de6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -59,13 +59,11 @@ jobs: poetry install -E generate-unit-tests - name: Set up Node.js - if: ${{ inputs.test-type == 'Unit' }} uses: actions/setup-node@v3 with: node-version: ${{ inputs.node-version }} - name: Install npm - if: ${{ inputs.test-type == 'Unit' }} run: | npm install echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json From baa7c3398168f8360afb9e39c47004de2b9d0c75 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 19:19:30 +0200 Subject: [PATCH 147/204] update job names --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 34b356387b..ea9e85a490 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,20 +14,20 @@ concurrency: jobs: - unit-tests: + Unit-Tests: uses: ./.github/workflows/tests.yml with: test-type: "Unit" ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" groups: '["1", "2", "3", "4", "5"]' - integration-tests: + Integration-Tests: uses: ./.github/workflows/tests.yml with: test-type: "Integration" file-path: "demisto_sdk/tests/integration_tests" - graph-tests: + Graph-Tests: uses: ./.github/workflows/tests.yml with: test-type: "Graph" From 020280a2e50d1a1a973fc71db03bda7cdf4a2c01 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 19:29:37 +0200 Subject: [PATCH 148/204] try to fix splits --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 648ca76de6..9345c406bb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -74,7 +74,7 @@ jobs: # Due to race conditions in the tests bringing up and down the node server, have the server available # For all the tests. - if [[ ${{ inputs.test-type }} == Unit ]]; then + if [[ ${{ inputs.test-type }} == "Unit" ]]; then echo "Running mdx server" node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! @@ -85,9 +85,9 @@ jobs: # mv .test_durations test-results/test_durations input_groups=${{ fromJson(inputs.groups) }} - splits="${#input_groups[@]}" - echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups}, group=${{ matrix.group }}" - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits 5 --group "${{ matrix.group }}" || pytest_exit_code=$? + splits=${#input_groups[@]} + echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups[@]}, group=${{ matrix.group }}" + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV if [[ ${{ inputs.test-type }} == "Unit" ]]; then kill $node_pid From 621950eb1dc085960f404d4ec4e39acde00a1248 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 19:38:21 +0200 Subject: [PATCH 149/204] try with split workaround --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9345c406bb..d87444e454 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,7 +84,7 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - input_groups=${{ fromJson(inputs.groups) }} + input_groups=(${{ fromJson(inputs.groups) | split(',') }}) splits=${#input_groups[@]} echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups[@]}, group=${{ matrix.group }}" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? From 8845625a7d3e56d66274f9e0913d0501e766edd5 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 20:13:25 +0200 Subject: [PATCH 150/204] test --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d87444e454..cc1a9afbce 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,9 +84,9 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - input_groups=(${{ fromJson(inputs.groups) | split(',') }}) + input_groups=(${{ fromJson(inputs.groups) }}) splits=${#input_groups[@]} - echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups[@]}, group=${{ matrix.group }}" + echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups[@]}, group=${{ matrix.group }}, first array: ${input_groups[0]}, second array: ${input_groups[1]}" poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV if [[ ${{ inputs.test-type }} == "Unit" ]]; then From 2ac0d7691887f233797b07022323eb09df183279 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 20:40:58 +0200 Subject: [PATCH 151/204] split pytest --- .github/workflows/main.yml | 1 + .github/workflows/tests.yml | 20 +++++++++++++------- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ea9e85a490..230bf417d1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,6 +20,7 @@ jobs: test-type: "Unit" ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" groups: '["1", "2", "3", "4", "5"]' + splits: "5" Integration-Tests: uses: ./.github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc1a9afbce..d49a875272 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,13 +20,18 @@ on: file-path: type: string required: false - default: "." + default: "." # current directory description: "The file path that from it tests will be executed" groups: type: string required: false - default: "['1']" + default: "['All-Tests']" description: "The number of groups to split the tests into for concurrency" + splits: + type: string + required: false + default: "1" + description: "The number of splits for the tests" jobs: @@ -83,11 +88,12 @@ jobs: mkdir ${{inputs.test-type}}-test-results # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - - input_groups=(${{ fromJson(inputs.groups) }}) - splits=${#input_groups[@]} - echo "Running tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, splits=${splits}, input_groups=${input_groups[@]}, group=${{ matrix.group }}, first array: ${input_groups[0]}, second array: ${input_groups[1]}" - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${splits}" --group "${{ matrix.group }}" || pytest_exit_code=$? + echo "Running ${{ inputs.test-type }}-tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, group=${{ matrix.group }}, splits=${{ inputs.splits }}" + if [[ ${{ inputs.splits }} == "1" ]]; then + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? + else + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? + fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV if [[ ${{ inputs.test-type }} == "Unit" ]]; then kill $node_pid From 4d219d4565df6c2000265dc804a70673809a97a8 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 20:47:28 +0200 Subject: [PATCH 152/204] try now --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d49a875272..8c2421024f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -92,7 +92,7 @@ jobs: if [[ ${{ inputs.splits }} == "1" ]]; then poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV if [[ ${{ inputs.test-type }} == "Unit" ]]; then From 9eb05e315a5e2208dc3dd2122d3f8fd89f0e261d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 20:52:19 +0200 Subject: [PATCH 153/204] give path --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8c2421024f..d49a875272 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -92,7 +92,7 @@ jobs: if [[ ${{ inputs.splits }} == "1" ]]; then poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else - poetry run pytest -v --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV if [[ ${{ inputs.test-type }} == "Unit" ]]; then From 0792cdaa81b310b7077bc8815e62a9b0f04a1282 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 21:32:36 +0200 Subject: [PATCH 154/204] try to fix --ignore --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d49a875272..9d3764059a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -90,9 +90,9 @@ jobs: # mv .test_durations test-results/test_durations echo "Running ${{ inputs.test-type }}-tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, group=${{ matrix.group }}, splits=${{ inputs.splits }}" if [[ ${{ inputs.splits }} == "1" ]]; then - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? + poetry run pytest -v "${{ inputs.file-path }}" --ignore={${{ inputs.ignored-file-paths }}} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else - poetry run pytest -v "${{ inputs.file-path }}" --ignore={"${{ inputs.ignored-file-paths }}"} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? + poetry run pytest -v "${{ inputs.file-path }}" --ignore={${{ inputs.ignored-file-paths }}} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV if [[ ${{ inputs.test-type }} == "Unit" ]]; then From 7d23032d9e3ab0bf3896a377a839da2b9b327c87 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 21:40:11 +0200 Subject: [PATCH 155/204] logs and comments --- .github/workflows/tests.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9d3764059a..5b98ce0bae 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -77,24 +77,30 @@ jobs: 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. if [[ ${{ inputs.test-type }} == "Unit" ]]; then + # Due to race conditions in the tests bringing up and down the node server, have the server available + # For all the tests. echo "Running mdx server" node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! fi - - mkdir ${{inputs.test-type}}-test-results + # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations + + mkdir ${{inputs.test-type}}-test-results echo "Running ${{ inputs.test-type }}-tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, group=${{ matrix.group }}, splits=${{ inputs.splits }}" + if [[ ${{ inputs.splits }} == "1" ]]; then + # run tests without pytest-split poetry run pytest -v "${{ inputs.file-path }}" --ignore={${{ inputs.ignored-file-paths }}} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? else + # run tests with pytest-split poetry run pytest -v "${{ inputs.file-path }}" --ignore={${{ inputs.ignored-file-paths }}} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? fi + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + if [[ ${{ inputs.test-type }} == "Unit" ]]; then kill $node_pid fi From 8a43c4fcafb35064057f418f8833c9eb3ca37661 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 21:42:26 +0200 Subject: [PATCH 156/204] ignore e2e tests as well --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 230bf417d1..3d48132157 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: uses: ./.github/workflows/tests.yml with: test-type: "Unit" - ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph" + ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph,tests_end_to_end" groups: '["1", "2", "3", "4", "5"]' splits: "5" From 4ee14a937b7946fdf022d3bd6dc09bcd6f6b150e Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 22:37:43 +0200 Subject: [PATCH 157/204] check if neo4j is installed --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5b98ce0bae..7f5f4b4f8a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,6 +84,8 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! fi + + neo4j start # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations From c33496963fa543017d012499c0e72dcac0ce9ecc Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 22:45:08 +0200 Subject: [PATCH 158/204] update --- .github/workflows/tests.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7f5f4b4f8a..71f0c33535 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -85,8 +85,6 @@ jobs: node_pid=$! fi - neo4j start - # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations @@ -102,10 +100,6 @@ jobs: fi echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - - if [[ ${{ inputs.test-type }} == "Unit" ]]; then - kill $node_pid - fi - name: Upload artifacts if: always() uses: actions/upload-artifact@v3 From 8904d853e016c9ea0ce76f0b3a5b4a4e35a2794c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sat, 16 Dec 2023 23:19:26 +0200 Subject: [PATCH 159/204] try use specific docker --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 71f0c33535..0cca0bae27 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -50,7 +50,10 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - + - uses: docker-practice/actions-setup-docker@master + timeout-minutes: 12 + with: + docker_version: 20.10.12 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: From 21aa1939f1e5db1b64e39a65942a6fc9c68db33d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 00:06:14 +0200 Subject: [PATCH 160/204] try 20.10.14 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0cca0bae27..f440691a10 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -53,7 +53,7 @@ jobs: - uses: docker-practice/actions-setup-docker@master timeout-minutes: 12 with: - docker_version: 20.10.12 + docker_version: 20.10.14 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: From cf19064554eba162c6c6cb6ad7f7ae37ed92e615 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 21:35:58 +0200 Subject: [PATCH 161/204] try composite action --- .../setup_environment/setup-environment.yml | 40 +++++++++++++++++++ .github/workflows/tests.yml | 25 +----------- 2 files changed, 41 insertions(+), 24 deletions(-) create mode 100644 .github/actions/setup_environment/setup-environment.yml diff --git a/.github/actions/setup_environment/setup-environment.yml b/.github/actions/setup_environment/setup-environment.yml new file mode 100644 index 0000000000..7cd8da06a8 --- /dev/null +++ b/.github/actions/setup_environment/setup-environment.yml @@ -0,0 +1,40 @@ +name: 'Test' +description: 'Test' +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 + + - 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 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f440691a10..c2fbc37818 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -50,32 +50,9 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: docker-practice/actions-setup-docker@master - timeout-minutes: 12 - with: - docker_version: 20.10.14 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + - uses: ./.github/actions/setup_environment with: python-version: ${{ matrix.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 - - - 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 - - name: Run pytest run: | source "$(poetry env info --path)/bin/activate" From 6af6c25b343d8be46e05e258c25b2a2bf212aaac Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 21:37:42 +0200 Subject: [PATCH 162/204] call it action.yml --- .../setup_environment/{setup-environment.yml => action.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/actions/setup_environment/{setup-environment.yml => action.yml} (100%) diff --git a/.github/actions/setup_environment/setup-environment.yml b/.github/actions/setup_environment/action.yml similarity index 100% rename from .github/actions/setup_environment/setup-environment.yml rename to .github/actions/setup_environment/action.yml From 6e55ae4313e259d12b7ac6844f48fd7dff5bd882 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 21:39:44 +0200 Subject: [PATCH 163/204] add shell: bash --- .github/actions/setup_environment/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup_environment/action.yml b/.github/actions/setup_environment/action.yml index 7cd8da06a8..e304e84380 100644 --- a/.github/actions/setup_environment/action.yml +++ b/.github/actions/setup_environment/action.yml @@ -16,6 +16,7 @@ inputs: runs: using: 'composite' + shell: bash steps: - name: Set up Python ${{ inputs.python-version }} uses: actions/setup-python@v4 From e9cabe97340e5a0c8471d17510c114427af02cfa Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 21:41:11 +0200 Subject: [PATCH 164/204] shell bash all steps --- .github/actions/setup_environment/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup_environment/action.yml b/.github/actions/setup_environment/action.yml index e304e84380..42ffeefdcb 100644 --- a/.github/actions/setup_environment/action.yml +++ b/.github/actions/setup_environment/action.yml @@ -16,12 +16,12 @@ inputs: runs: using: 'composite' - shell: bash steps: - name: Set up Python ${{ inputs.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ inputs.python-version }} + shell: bash - name: Setup Poetry run: | @@ -29,6 +29,7 @@ runs: poetry --version poetry check --lock poetry install -E generate-unit-tests + shell: bash - name: Set up Node.js uses: actions/setup-node@v3 @@ -39,3 +40,4 @@ runs: run: | npm install echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json + shell: bash From d4dc874eb4d6a66e0d32cc3095a5e4bd1f7f9762 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 21:41:58 +0200 Subject: [PATCH 165/204] try now --- .github/actions/setup_environment/action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/actions/setup_environment/action.yml b/.github/actions/setup_environment/action.yml index 42ffeefdcb..d4a96b6447 100644 --- a/.github/actions/setup_environment/action.yml +++ b/.github/actions/setup_environment/action.yml @@ -21,7 +21,6 @@ runs: uses: actions/setup-python@v4 with: python-version: ${{ inputs.python-version }} - shell: bash - name: Setup Poetry run: | From d53e244c3dabc170fb65622275bdf23bae97e9ea Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 21:52:20 +0200 Subject: [PATCH 166/204] use composite actions in main.yml --- .github/workflows/main.yml | 199 +++++++++++++++++++++++++++++++++---- 1 file changed, 179 insertions(+), 20 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3d48132157..167d14d67a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,25 +14,184 @@ concurrency: jobs: - Unit-Tests: - uses: ./.github/workflows/tests.yml - with: - test-type: "Unit" - ignored-file-paths: "demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph,tests_end_to_end" - groups: '["1", "2", "3", "4", "5"]' - splits: "5" - - Integration-Tests: - uses: ./.github/workflows/tests.yml - with: - test-type: "Integration" - file-path: "demisto_sdk/tests/integration_tests" - - Graph-Tests: - uses: ./.github/workflows/tests.yml - with: - test-type: "Graph" - file-path: "demisto_sdk/commands/content_graph" + unit-tests: + name: Unit Tests / ${{ 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 + + - uses: ./.github/actions/setup_environment + with: + python-version: ${{ matrix.python-version }} + + - name: Run pytest + 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 test-results + # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ + # mv .test_durations test-results/test_durations + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + kill $node_pid + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v3 + with: + name: unit-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} + path: | + test-results/test_durations + test-results/junit.xml + node_versions_info.json + coverage_html_report + .coverage + - name: Print Summary of pytest results in workflow summary + if: always() + uses: pmeier/pytest-results-action@main + with: + path: test-results/junit.xml + summary: true + display-options: fsEX + fail-on-empty: true + - name: Check if tests have passed + if: always() + run: | + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then + echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + else + echo "All unit-tests have passed, congratulations!" + fi + exit $PYTEST_EXIT_CODE + + integration-tests: + name: Integration Tests / ${{ matrix.python-version }} + 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 + + - uses: ./.github/actions/setup_environment + with: + python-version: ${{ matrix.python-version }} + + - name: Run pytest + run: | + source "$(poetry env info --path)/bin/activate" + + echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json + + mkdir integration-test-results + poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html --junitxml=integration-test-results/junit.xml || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + exit $pytest_exit_code + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v3 + with: + name: integration-tests-artifacts-${{ matrix.python-version }} + path: | + .test_durations + integration-test-results/junit.xml + node_versions_info.json + coverage_html_report + .coverage + - name: Print Summary of pytest results in workflow summary + if: always() + uses: pmeier/pytest-results-action@main + with: + path: integration-test-results/junit.xml + summary: true + display-options: fsEX + fail-on-empty: true + - name: Check if tests have passed + if: always() + run: | + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then + echo "There are integration-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + else + echo "All integration-tests have passed, congratulations!" + fi + exit $PYTEST_EXIT_CODE + graph-tests: + name: Graph Tests / ${{ matrix.python-version }} (${{ matrix.group }}) + 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 + + - uses: ./.github/actions/setup_environment + with: + python-version: ${{ matrix.python-version }} + + - name: Run pytest + run: | + source "$(poetry env info --path)/bin/activate" + + mkdir graph-test-results + poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html --junitxml=graph-test-results/junit.xml || pytest_exit_code=$? + echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV + + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v3 + with: + name: graph-tests-artifacts-${{ matrix.python-version }} + path: | + test-results/test_durations + graph-test-results/junit.xml + node_versions_info.json + coverage_html_report + .coverage + - name: Print Summary of pytest results in workflow summary + if: always() + uses: pmeier/pytest-results-action@main + with: + path: graph-test-results/junit.xml + summary: true + display-options: fsEX + fail-on-empty: true + - name: Check if tests have passed + if: always() + run: | + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then + echo "There are graph-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + else + echo "All graph-tests have passed, congratulations!" + fi + exit $PYTEST_EXIT_CODE coverage: needs: [unit-tests, integration-tests, graph-tests] @@ -52,4 +211,4 @@ jobs: coverage report coverage xml - name: Coveralls - uses: coverallsapp/github-action@v2 + uses: coverallsapp/github-action@v2 \ No newline at end of file From 20139e4ffd4e23103772720bc3073818f007ce37 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 22:08:55 +0200 Subject: [PATCH 167/204] add test_summary_upload action --- .../actions/test_summary_upload/action.yml | 51 +++++++++++++++++++ .github/workflows/main.yml | 36 +++---------- 2 files changed, 59 insertions(+), 28 deletions(-) create mode 100644 .github/actions/test_summary_upload/action.yml diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml new file mode 100644 index 0000000000..57c89ca811 --- /dev/null +++ b/.github/actions/test_summary_upload/action.yml @@ -0,0 +1,51 @@ +name: 'Test' +description: 'Test' +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: "" + description: "The group" + + +runs: + using: 'composite' + steps: + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v3 + with: + name: ${{ inputs.artifacts_folder_name }}-artifacts-${{ inputs.python-version }}-${{ inputs.group }} + path: | + ${{ inputs.artifacts_folder_name }} + node_versions_info.json + coverage_html_report + .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: fsEX + fail-on-empty: true + - name: Check if tests have passed + shell: bash + if: always() + run: | + if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then + echo "There are graph-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + else + echo "All graph-tests have passed, congratulations!" + fi + exit $PYTEST_EXIT_CODE \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 167d14d67a..c2b2d8ffb1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,41 +43,21 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - mkdir test-results # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations + + mkdir unit-test-results poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid - - name: Upload artifacts - if: always() - uses: actions/upload-artifact@v3 - with: - name: unit-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} - path: | - test-results/test_durations - test-results/junit.xml - node_versions_info.json - coverage_html_report - .coverage - - name: Print Summary of pytest results in workflow summary - if: always() - uses: pmeier/pytest-results-action@main + + - uses: ./.github/actions/test_summary_upload with: - path: test-results/junit.xml - summary: true - display-options: fsEX - fail-on-empty: true - - name: Check if tests have passed - if: always() - run: | - if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are unit-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" - else - echo "All unit-tests have passed, congratulations!" - fi - exit $PYTEST_EXIT_CODE + python-version: ${{ matrix.python-version }} + artifacts_folder_name: unit-test-results + group: ${{ matrix.group }} + integration-tests: name: Integration Tests / ${{ matrix.python-version }} From 15ef067764329cb58dd0222025fd561c26a95103 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 22:22:08 +0200 Subject: [PATCH 168/204] update setup env name steps --- .github/workflows/main.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c2b2d8ffb1..809846d097 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,8 @@ jobs: run: shell: bash steps: - - uses: actions/checkout@v3 + - name: Unit Tests - Python ${{ matrix.python-version }} (${{ matrix.group }}) - Setup Environment + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -74,7 +75,8 @@ jobs: with: fetch-depth: 0 - - uses: ./.github/actions/setup_environment + - name: Integration Tests - Python ${{ matrix.python-version }} - Setup Environment + uses: ./.github/actions/setup_environment with: python-version: ${{ matrix.python-version }} @@ -82,8 +84,6 @@ jobs: run: | source "$(poetry env info --path)/bin/activate" - echo $(echo '{"node_version": "'$(node --version)'","npm_list":'$(npm list --json)'}') > node_versions_info.json - mkdir integration-test-results poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html --junitxml=integration-test-results/junit.xml || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV @@ -118,7 +118,7 @@ jobs: fi exit $PYTEST_EXIT_CODE graph-tests: - name: Graph Tests / ${{ matrix.python-version }} (${{ matrix.group }}) + name: Graph Tests - Python ${{ matrix.python-version }} - Setup Environment runs-on: ubuntu-latest strategy: matrix: @@ -132,7 +132,8 @@ jobs: with: fetch-depth: 0 - - uses: ./.github/actions/setup_environment + - name: ./.github/actions/setup_environment + uses: ./.github/actions/setup_environment with: python-version: ${{ matrix.python-version }} From a5da9d715e66eef7aa9b92752b22d08bee20790c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 22:23:12 +0200 Subject: [PATCH 169/204] fix junit not found --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 809846d097..3f65b38796 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,7 @@ jobs: # mv .test_durations test-results/test_durations mkdir unit-test-results - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html --junitxml=test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html --junitxml=unit-test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From 1e24f7d7d100938f1b323c7af244c99c32426714 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 22:23:59 +0200 Subject: [PATCH 170/204] update echo --- .github/actions/test_summary_upload/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 57c89ca811..1f6ea9ce54 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -44,7 +44,7 @@ runs: if: always() run: | if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are graph-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + echo "There are ${{ inputs.artifacts_folder_name }} that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" else echo "All graph-tests have passed, congratulations!" fi From 7c4ff14ef5f07c8a80e1ff7e5e075424ef94367a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 22:26:42 +0200 Subject: [PATCH 171/204] fix names of setup env steps --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3f65b38796..a20cba12e9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,8 @@ jobs: with: fetch-depth: 0 - - uses: ./.github/actions/setup_environment + - name: Unit Tests - Python ${{ matrix.python-version }} (${{ matrix.group }}) - Setup Environment + uses: ./.github/actions/setup_environment with: python-version: ${{ matrix.python-version }} @@ -132,7 +133,7 @@ jobs: with: fetch-depth: 0 - - name: ./.github/actions/setup_environment + - name: Graph Tests - Python ${{ matrix.python-version }} - Setup Environment uses: ./.github/actions/setup_environment with: python-version: ${{ matrix.python-version }} From 667b73cb96fdd3f35e716931980f91efefeaa274 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 22:36:21 +0200 Subject: [PATCH 172/204] name fixes --- .github/workflows/main.yml | 76 +++++++++----------------------------- 1 file changed, 17 insertions(+), 59 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a20cba12e9..26ec3ff5a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,8 +26,7 @@ jobs: run: shell: bash steps: - - name: Unit Tests - Python ${{ matrix.python-version }} (${{ matrix.group }}) - Setup Environment - uses: actions/checkout@v3 + - uses: actions/checkout@v3 with: fetch-depth: 0 @@ -54,7 +53,8 @@ jobs: kill $node_pid - - uses: ./.github/actions/test_summary_upload + - name: Unit Tests - 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-test-results @@ -90,36 +90,16 @@ jobs: echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV exit $pytest_exit_code - - name: Upload artifacts - if: always() - uses: actions/upload-artifact@v3 - with: - name: integration-tests-artifacts-${{ matrix.python-version }} - path: | - .test_durations - integration-test-results/junit.xml - node_versions_info.json - coverage_html_report - .coverage - - name: Print Summary of pytest results in workflow summary - if: always() - uses: pmeier/pytest-results-action@main + + - name: Integration Tests - Python ${{ matrix.python-version }} - Test Summary Upload + uses: ./.github/actions/test_summary_upload with: - path: integration-test-results/junit.xml - summary: true - display-options: fsEX - fail-on-empty: true - - name: Check if tests have passed - if: always() - run: | - if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are integration-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" - else - echo "All integration-tests have passed, congratulations!" - fi - exit $PYTEST_EXIT_CODE + python-version: ${{ matrix.python-version }} + artifacts_folder_name: integration-test-results + group: ${{ matrix.group }} + graph-tests: - name: Graph Tests - Python ${{ matrix.python-version }} - Setup Environment + name: Graph Tests / ${{ matrix.python-version }} runs-on: ubuntu-latest strategy: matrix: @@ -146,34 +126,12 @@ jobs: poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html --junitxml=graph-test-results/junit.xml || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - - name: Upload artifacts - if: always() - uses: actions/upload-artifact@v3 - with: - name: graph-tests-artifacts-${{ matrix.python-version }} - path: | - test-results/test_durations - graph-test-results/junit.xml - node_versions_info.json - coverage_html_report - .coverage - - name: Print Summary of pytest results in workflow summary - if: always() - uses: pmeier/pytest-results-action@main + - name: Graph Tests - Python ${{ matrix.python-version }} - Test Summary Upload + uses: ./.github/actions/test_summary_upload with: - path: graph-test-results/junit.xml - summary: true - display-options: fsEX - fail-on-empty: true - - name: Check if tests have passed - if: always() - run: | - if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are graph-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" - else - echo "All graph-tests have passed, congratulations!" - fi - exit $PYTEST_EXIT_CODE + python-version: ${{ matrix.python-version }} + artifacts_folder_name: graph-test-results + group: ${{ matrix.group }} coverage: needs: [unit-tests, integration-tests, graph-tests] @@ -185,7 +143,7 @@ jobs: with: python-version: "3.10" - name: Download all artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 - name: Run coverage run: | pip install coverage From 01b0acb43eaaf1837f241717ce23ca50eb5f92ae Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 22:39:38 +0200 Subject: [PATCH 173/204] update steps names --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 26ec3ff5a7..101f3bcb10 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: with: fetch-depth: 0 - - name: Unit Tests - Python ${{ matrix.python-version }} (${{ matrix.group }}) - Setup Environment + - name: Python ${{ matrix.python-version }} (${{ matrix.group }}) - Setup Environment uses: ./.github/actions/setup_environment with: python-version: ${{ matrix.python-version }} @@ -53,7 +53,7 @@ jobs: kill $node_pid - - name: Unit Tests - Python ${{ matrix.python-version }} (${{ matrix.group }}) - Test Summary Upload + - name: Python ${{ matrix.python-version }} (${{ matrix.group }}) - Test Summary Upload uses: ./.github/actions/test_summary_upload with: python-version: ${{ matrix.python-version }} @@ -76,7 +76,7 @@ jobs: with: fetch-depth: 0 - - name: Integration Tests - Python ${{ matrix.python-version }} - Setup Environment + - name: Python ${{ matrix.python-version }} - Setup Environment uses: ./.github/actions/setup_environment with: python-version: ${{ matrix.python-version }} @@ -91,7 +91,7 @@ jobs: exit $pytest_exit_code - - name: Integration Tests - Python ${{ matrix.python-version }} - Test Summary Upload + - name: Python ${{ matrix.python-version }} - Test Summary Upload uses: ./.github/actions/test_summary_upload with: python-version: ${{ matrix.python-version }} @@ -113,7 +113,7 @@ jobs: with: fetch-depth: 0 - - name: Graph Tests - Python ${{ matrix.python-version }} - Setup Environment + - name: Python ${{ matrix.python-version }} - Setup Environment uses: ./.github/actions/setup_environment with: python-version: ${{ matrix.python-version }} @@ -126,7 +126,7 @@ jobs: poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html --junitxml=graph-test-results/junit.xml || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - - name: Graph Tests - Python ${{ matrix.python-version }} - Test Summary Upload + - name: Python ${{ matrix.python-version }} - Test Summary Upload uses: ./.github/actions/test_summary_upload with: python-version: ${{ matrix.python-version }} From 9942a2c7a0d8b1a6dc23fa14a02df05602033ff2 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 22:55:13 +0200 Subject: [PATCH 174/204] delete tests.yml --- .github/workflows/tests.yml | 110 ------------------------------------ 1 file changed, 110 deletions(-) delete mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index c2fbc37818..0000000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,110 +0,0 @@ -name: Create and Publish Docker Image - -on: - workflow_call: - inputs: - test-type: - required: true - type: string - description: "The type of the test that will run" - node-version: - required: false - type: string - default: "16" - description: "The node version to install" - ignored-file-paths: - type: string - required: false - default: "" - description: "A comma separated of file-paths to ignore when running tests" - file-path: - type: string - required: false - default: "." # current directory - description: "The file path that from it tests will be executed" - groups: - type: string - required: false - default: "['All-Tests']" - description: "The number of groups to split the tests into for concurrency" - splits: - type: string - required: false - default: "1" - description: "The number of splits for the tests" - - -jobs: - tests: - name: Python ${{ matrix.python-version }} (${{ matrix.group }}) - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [ "3.8", "3.9", "3.10" ] - group: ${{ fromJson(inputs.groups) }} - fail-fast: false - defaults: - run: - shell: bash - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: ./.github/actions/setup_environment - with: - python-version: ${{ matrix.python-version }} - - name: Run pytest - run: | - source "$(poetry env info --path)/bin/activate" - - if [[ ${{ inputs.test-type }} == "Unit" ]]; then - # Due to race conditions in the tests bringing up and down the node server, have the server available - # For all the tests. - echo "Running mdx server" - node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & - node_pid=$! - fi - - # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=${{inputs.test-type}}-test-results/junit.xml || pytest_exit_code=$ - # mv .test_durations test-results/test_durations - - mkdir ${{inputs.test-type}}-test-results - echo "Running ${{ inputs.test-type }}-tests with the following arguments: file-path=${{ inputs.file-path }}, ignored-file-paths=${{ inputs.ignored-file-paths }}, group=${{ matrix.group }}, splits=${{ inputs.splits }}" - - if [[ ${{ inputs.splits }} == "1" ]]; then - # run tests without pytest-split - poetry run pytest -v "${{ inputs.file-path }}" --ignore={${{ inputs.ignored-file-paths }}} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" || pytest_exit_code=$? - else - # run tests with pytest-split - poetry run pytest -v "${{ inputs.file-path }}" --ignore={${{ inputs.ignored-file-paths }}} --cov=demisto_sdk --cov-report=html --junitxml="${{ inputs.test-type }}-test-results/junit.xml" --splits "${{ inputs.splits }}" --group "${{ matrix.group }}" || pytest_exit_code=$? - fi - - echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - - name: Upload artifacts - if: always() - uses: actions/upload-artifact@v3 - with: - name: ${{ inputs.test-type }}-tests-artifacts-${{ matrix.python-version }}-group-${{ matrix.group }} - path: | - .test_durations - ${{ inputs.test-type }}-test-results/junit.xml - node_versions_info.json - coverage_html_report - .coverage - - name: Print Summary of pytest results in workflow summary - if: always() - uses: pmeier/pytest-results-action@main - with: - path: ${{ inputs.test-type }}-test-results/junit.xml - summary: true - display-options: fsEX - fail-on-empty: true - - name: Check if ${{ inputs.test-type }}-tests have passed - if: always() - run: | - if [[ "$PYTEST_EXIT_CODE" -ne 0 ]]; then - echo "There are ${{ inputs.test-type }}-tests that failed, pytest finished with exit code $PYTEST_EXIT_CODE, to see the tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" - else - echo "All ${{ inputs.test-type }}-tests have passed, congratulations!" - fi - exit $PYTEST_EXIT_CODE From 7ea1ed9e02488ebcd7e92164bd092ea33c8ad74c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 23:00:41 +0200 Subject: [PATCH 175/204] artifacts aligment --- .github/actions/test_summary_upload/action.yml | 3 +-- .github/workflows/main.yml | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 1f6ea9ce54..42722f01a7 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -29,7 +29,6 @@ runs: path: | ${{ inputs.artifacts_folder_name }} node_versions_info.json - coverage_html_report .coverage - name: Print Summary of pytest results in workflow summary if: always() @@ -46,6 +45,6 @@ runs: 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 tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" else - echo "All graph-tests have passed, congratulations!" + echo "All ${{ inputs.artifacts_folder_name }} have passed, congratulations!" fi exit $PYTEST_EXIT_CODE \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 101f3bcb10..b71217bce1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,7 @@ jobs: # mv .test_durations test-results/test_durations mkdir unit-test-results - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html --junitxml=unit-test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html:unit-test-results/coverage --junitxml=unit-test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid @@ -86,7 +86,7 @@ jobs: source "$(poetry env info --path)/bin/activate" mkdir integration-test-results - poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html --junitxml=integration-test-results/junit.xml || pytest_exit_code=$? + poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html:integration-test-results/coverage --junitxml=integration-test-results/junit.xml || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV exit $pytest_exit_code @@ -123,7 +123,7 @@ jobs: source "$(poetry env info --path)/bin/activate" mkdir graph-test-results - poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html --junitxml=graph-test-results/junit.xml || pytest_exit_code=$? + poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html:graph-test-results/coverage --junitxml=graph-test-results/junit.xml || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV - name: Python ${{ matrix.python-version }} - Test Summary Upload From e4f4d5707debdc80d3fcede62a7302669abb92c8 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 23:03:01 +0200 Subject: [PATCH 176/204] add summary-display-options input --- .github/actions/test_summary_upload/action.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 42722f01a7..63cd2953b8 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -15,7 +15,12 @@ inputs: required: false type: string default: "" - description: "The group" + 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: @@ -36,7 +41,7 @@ runs: with: path: ${{ inputs.artifacts_folder_name }}/junit.xml summary: true - display-options: fsEX + display-options: ${{ inputs.summary-display-options }} fail-on-empty: true - name: Check if tests have passed shell: bash From 7599fcd15ff7341f8368c997023b04e4ce4c69c9 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 23:04:53 +0200 Subject: [PATCH 177/204] update composite actions names --- .github/actions/setup_environment/action.yml | 4 ++-- .github/actions/test_summary_upload/action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup_environment/action.yml b/.github/actions/setup_environment/action.yml index d4a96b6447..e06e193947 100644 --- a/.github/actions/setup_environment/action.yml +++ b/.github/actions/setup_environment/action.yml @@ -1,5 +1,5 @@ -name: 'Test' -description: 'Test' +name: 'Setup environment for demisto-sdk' +description: 'Setup environment for every demisto-sdk workflow job' author: 'Demisto-SDK' inputs: diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 63cd2953b8..299eb97df8 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -1,5 +1,5 @@ -name: 'Test' -description: 'Test' +name: 'Test Summary Upload' +description: 'Prints out a summary for all the tests of the demisto-sdk' author: 'Demisto-SDK' inputs: From 256b2e0eb89fa24c27829ed31b33d75d98e85a7d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 23:05:41 +0200 Subject: [PATCH 178/204] pre-commit --- .github/actions/test_summary_upload/action.yml | 2 +- .github/workflows/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 299eb97df8..650c907d28 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -52,4 +52,4 @@ runs: else echo "All ${{ inputs.artifacts_folder_name }} have passed, congratulations!" fi - exit $PYTEST_EXIT_CODE \ No newline at end of file + exit $PYTEST_EXIT_CODE diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b71217bce1..0f8f7b8a6b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,7 +46,7 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - + mkdir unit-test-results poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html:unit-test-results/coverage --junitxml=unit-test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV @@ -151,4 +151,4 @@ jobs: coverage report coverage xml - name: Coveralls - uses: coverallsapp/github-action@v2 \ No newline at end of file + uses: coverallsapp/github-action@v2 From 2bcbc26c8d0d872a45a69bdde2f08b0f94f635ce Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 23:09:04 +0200 Subject: [PATCH 179/204] (All-Tests) group --- .github/actions/test_summary_upload/action.yml | 4 ++-- .github/workflows/main.yml | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 650c907d28..02c4ed92e5 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -14,7 +14,7 @@ inputs: group: required: false type: string - default: "" + default: "All-Tests" description: "The group of the pytest-split" summary-display-options: required: false @@ -30,7 +30,7 @@ runs: if: always() uses: actions/upload-artifact@v3 with: - name: ${{ inputs.artifacts_folder_name }}-artifacts-${{ inputs.python-version }}-${{ inputs.group }} + name: ${{ inputs.artifacts_folder_name }}-artifacts-${{ inputs.python-version }}-group(${{ inputs.group }}) path: | ${{ inputs.artifacts_folder_name }} node_versions_info.json diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0f8f7b8a6b..6ea908dcb5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -96,7 +96,6 @@ jobs: with: python-version: ${{ matrix.python-version }} artifacts_folder_name: integration-test-results - group: ${{ matrix.group }} graph-tests: name: Graph Tests / ${{ matrix.python-version }} @@ -131,7 +130,6 @@ jobs: with: python-version: ${{ matrix.python-version }} artifacts_folder_name: graph-test-results - group: ${{ matrix.group }} coverage: needs: [unit-tests, integration-tests, graph-tests] From 161653b62e34e9ed96a8ca1fb952388fe4990475 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 23:09:41 +0200 Subject: [PATCH 180/204] update steps name --- .github/actions/test_summary_upload/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 02c4ed92e5..0be6a37f49 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -43,7 +43,7 @@ runs: summary: true display-options: ${{ inputs.summary-display-options }} fail-on-empty: true - - name: Check if tests have passed + - name: Check if ${{ inputs.artifacts_folder_name }} have passed shell: bash if: always() run: | From 199867abdc3ad6be50e336a4785c2aa0c057c794 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 23:12:56 +0200 Subject: [PATCH 181/204] update artifacts folders names --- .github/actions/test_summary_upload/action.yml | 4 ++-- .github/workflows/main.yml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 0be6a37f49..2c28343a96 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -30,7 +30,7 @@ runs: if: always() uses: actions/upload-artifact@v3 with: - name: ${{ inputs.artifacts_folder_name }}-artifacts-${{ inputs.python-version }}-group(${{ inputs.group }}) + name: ${{ inputs.artifacts_folder_name }}-artifacts-python-(${{ inputs.python-version }})-group(${{ inputs.group }}) path: | ${{ inputs.artifacts_folder_name }} node_versions_info.json @@ -48,7 +48,7 @@ runs: 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 tests summary refer to https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}" + 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 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6ea908dcb5..3c26e4eafa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,8 +47,8 @@ jobs: # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations - mkdir unit-test-results - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html:unit-test-results/coverage --junitxml=unit-test-results/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + mkdir unit-tests + poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html:unit-tests/coverage --junitxml=unit-tests/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid @@ -85,8 +85,8 @@ jobs: run: | source "$(poetry env info --path)/bin/activate" - mkdir integration-test-results - poetry run pytest -v demisto_sdk/tests/integration_tests --cov=demisto_sdk --cov-report=html:integration-test-results/coverage --junitxml=integration-test-results/junit.xml || pytest_exit_code=$? + 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 @@ -95,7 +95,7 @@ jobs: uses: ./.github/actions/test_summary_upload with: python-version: ${{ matrix.python-version }} - artifacts_folder_name: integration-test-results + artifacts_folder_name: integration-tests graph-tests: name: Graph Tests / ${{ matrix.python-version }} @@ -121,15 +121,15 @@ jobs: run: | source "$(poetry env info --path)/bin/activate" - mkdir graph-test-results - poetry run pytest -v demisto_sdk/commands/content_graph --cov=demisto_sdk --cov-report=html:graph-test-results/coverage --junitxml=graph-test-results/junit.xml || pytest_exit_code=$? + 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-test-results + artifacts_folder_name: graph-tests coverage: needs: [unit-tests, integration-tests, graph-tests] From 00709619ac97961587b9f0252d8e81dcde0fa547 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Sun, 17 Dec 2023 23:34:17 +0200 Subject: [PATCH 182/204] fix invalid junit path --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c26e4eafa..09564e4df7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,7 +57,7 @@ jobs: uses: ./.github/actions/test_summary_upload with: python-version: ${{ matrix.python-version }} - artifacts_folder_name: unit-test-results + artifacts_folder_name: unit-tests group: ${{ matrix.group }} From 8fc35e09e0bdac4c0dbfc71caeebbce81b617cd2 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 18 Dec 2023 07:10:18 +0200 Subject: [PATCH 183/204] update artifacts name without - --- .github/actions/test_summary_upload/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test_summary_upload/action.yml b/.github/actions/test_summary_upload/action.yml index 2c28343a96..4e2fc1e4a3 100644 --- a/.github/actions/test_summary_upload/action.yml +++ b/.github/actions/test_summary_upload/action.yml @@ -30,7 +30,7 @@ runs: if: always() uses: actions/upload-artifact@v3 with: - name: ${{ inputs.artifacts_folder_name }}-artifacts-python-(${{ inputs.python-version }})-group(${{ inputs.group }}) + name: ${{ inputs.artifacts_folder_name }}-artifacts-python(${{ inputs.python-version }})-group(${{ inputs.group }}) path: | ${{ inputs.artifacts_folder_name }} node_versions_info.json From 7c171d34a0235190a3a8d78ea204e04c4453424c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 18 Dec 2023 16:24:48 +0200 Subject: [PATCH 184/204] try to mock import_graph --- demisto_sdk/commands/content_graph/tests/graph_validator_test.py | 1 + 1 file changed, 1 insertion(+) 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..a9625a88b5 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, "import_graph", return_value=False) mocker.patch( "demisto_sdk.commands.common.docker_images_metadata.get_remote_file_from_api", return_value={ From 85d21c48d64e494459c1eb9c0baf302494f9e5ca Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 18 Dec 2023 16:25:40 +0200 Subject: [PATCH 185/204] try to mock import_graph --- .pre-commit-config.yaml | 7 +++++++ 1 file changed, 7 insertions(+) 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" From 2118dff18c86366a5e2721504c86f3557e0fb27c Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 18 Dec 2023 17:25:40 +0200 Subject: [PATCH 186/204] mock export_graph --- .../commands/content_graph/tests/graph_validator_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a9625a88b5..ce1e35cac7 100644 --- a/demisto_sdk/commands/content_graph/tests/graph_validator_test.py +++ b/demisto_sdk/commands/content_graph/tests/graph_validator_test.py @@ -46,7 +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, "import_graph", return_value=False) + mocker.patch.object(ContentGraphInterface, "export", return_value=None) mocker.patch( "demisto_sdk.commands.common.docker_images_metadata.get_remote_file_from_api", return_value={ From 57fa9e6c5bf553a5a4f3124c611f097700ae554f Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 18 Dec 2023 17:44:44 +0200 Subject: [PATCH 187/204] export graph and do not remove neo4j service --- .../content_graph/tests/create_content_graph_test.py | 12 ------------ .../content_graph/tests/format_with_graph_test.py | 1 - .../content_graph/tests/generate_docs_script_test.py | 1 - .../content_graph/tests/graph_validator_test.py | 2 +- .../content_graph/tests/pack_metadata_graph_test.py | 1 - .../tests/prepare_content_graph_test.py | 1 - .../content_graph/tests/update_content_graph_test.py | 1 - 7 files changed, 1 insertion(+), 18 deletions(-) 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 1a1d88e438..12bebdd631 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 ce1e35cac7..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,7 +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", return_value=None) + 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 From 2534c6d2bef4bb644f7f465181967d68a41bb9b3 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 18 Dec 2023 22:45:07 +0200 Subject: [PATCH 188/204] update pytest steps names --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 09564e4df7..c61fc1b6a8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,7 +35,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Run pytest + - name: Run Unit Tests run: | source "$(poetry env info --path)/bin/activate" @@ -81,7 +81,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Run pytest + - name: Run Integration Tests run: | source "$(poetry env info --path)/bin/activate" @@ -117,7 +117,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Run pytest + - name: Run Graph Tests run: | source "$(poetry env info --path)/bin/activate" From 3e4e98eadbdc3d419724d7e937f802aeda5fbce8 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Mon, 18 Dec 2023 22:55:26 +0200 Subject: [PATCH 189/204] test-durations add content-graph to ignore --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c61fc1b6a8..43c0f794c7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,7 +44,7 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ + # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ # mv .test_durations test-results/test_durations mkdir unit-tests From 747eea55b6238b4dcb5dfb3a99f51be1e8cabacb Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 07:10:57 +0200 Subject: [PATCH 190/204] update steps names --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 43c0f794c7..8efcbcf195 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ concurrency: jobs: unit-tests: - name: Unit Tests / ${{ matrix.python-version }} (${{ matrix.group }}) + name: Unit Tests / Python ${{ matrix.python-version }} (${{ matrix.group }}) runs-on: ubuntu-latest strategy: matrix: @@ -62,7 +62,7 @@ jobs: integration-tests: - name: Integration Tests / ${{ matrix.python-version }} + name: Integration Tests / Python ${{ matrix.python-version }} (All-Tests) runs-on: ubuntu-latest strategy: matrix: @@ -98,7 +98,7 @@ jobs: artifacts_folder_name: integration-tests graph-tests: - name: Graph Tests / ${{ matrix.python-version }} + name: Graph Tests / Python ${{ matrix.python-version }} (All-Tests) runs-on: ubuntu-latest strategy: matrix: From 8f79b29a68c05491dc6569694e991b3b32c8fb04 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 22:22:23 +0200 Subject: [PATCH 191/204] add update test-durations workflow --- .github/workflows/update-test-durations.yml | 30 +++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/update-test-durations.yml diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml new file mode 100644 index 0000000000..c27c7cbd68 --- /dev/null +++ b/.github/workflows/update-test-durations.yml @@ -0,0 +1,30 @@ +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: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Update .test-durations + run: | + # Your logic to update the .test-durations file + echo "New content" > .test-durations + git add .test-durations + git commit -m "Update .test-durations" || true + git push origin HEAD:refs/heads/update-test-durations + + - name: Create PR + run: | + gh pr create --base master --head update-test-durations --title "Update .test-durations" --body "This PR updates the .test-durations file." + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From c8ca79a51c9a921f81014d7d452d55217b2e2d8e Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 22:37:38 +0200 Subject: [PATCH 192/204] produce .test-durations with pytest-split --- .github/workflows/update-test-durations.yml | 46 ++++++++++++++++++--- 1 file changed, 40 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml index c27c7cbd68..dd1607a08f 100644 --- a/.github/workflows/update-test-durations.yml +++ b/.github/workflows/update-test-durations.yml @@ -1,3 +1,5 @@ +name: Update .test-durations file + on: # schedule: # - cron: "0 8 * * 0" # Run every two weeks on Sunday at 8 AM UTC @@ -10,21 +12,53 @@ on: jobs: update-test-durations: + name: Update .test-durations file runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ "3.10" ] steps: - - name: Checkout repository - uses: actions/checkout@v3 + - 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} --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: | # Your logic to update the .test-durations file - echo "New content" > .test-durations + 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 PR + - 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." + gh pr create --base main --head update-test-durations --title "Update .test-durations" --body "This PR updates the .test-durations file." --draft env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + 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 From 970531801041ae71c0aa2e6c491eead0a9971026 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 22:40:29 +0200 Subject: [PATCH 193/204] update main.yml to on-push --- .github/workflows/{main.yml => on-push.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{main.yml => on-push.yml} (99%) diff --git a/.github/workflows/main.yml b/.github/workflows/on-push.yml similarity index 99% rename from .github/workflows/main.yml rename to .github/workflows/on-push.yml index 8efcbcf195..3287ac275c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/on-push.yml @@ -1,4 +1,4 @@ -name: CI +name: CI - On Push on: push: From 87c90882404aae2042e456f9b7c5ae3cd0e55fbd Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 22:41:48 +0200 Subject: [PATCH 194/204] make myself the reviewer --- .github/workflows/update-test-durations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml index dd1607a08f..4c4a0ccb3d 100644 --- a/.github/workflows/update-test-durations.yml +++ b/.github/workflows/update-test-durations.yml @@ -53,7 +53,7 @@ jobs: - name: Create Draft PR run: | - gh pr create --base main --head update-test-durations --title "Update .test-durations" --body "This PR updates the .test-durations file." --draft + gh pr create --base main --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 }} From f9a373d717aef725b14d02016bbf80dd4678e5c1 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 23:05:07 +0200 Subject: [PATCH 195/204] fix typo --- .github/workflows/update-test-durations.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml index 4c4a0ccb3d..8d02ae09ef 100644 --- a/.github/workflows/update-test-durations.yml +++ b/.github/workflows/update-test-durations.yml @@ -10,6 +10,11 @@ on: branches: - "**" +concurrency: + group: tests-${{ github.head_ref || github.ref }} + cancel-in-progress: ${{ github.event_name == 'pull_request' }} + + jobs: update-test-durations: name: Update .test-durations file @@ -44,9 +49,8 @@ jobs: - name: Update .test-durations run: | - # Your logic to update the .test-durations file git status - git add .test-durations + git add .test_durations git status git commit -m "Update .test-durations" || true git push origin HEAD:refs/heads/update-test-durations From 0267b72985f4d3dcb5cbd4e4763a62b5ab915ce7 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 23:15:47 +0200 Subject: [PATCH 196/204] base = master --- .github/workflows/update-test-durations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml index 8d02ae09ef..afbf8109be 100644 --- a/.github/workflows/update-test-durations.yml +++ b/.github/workflows/update-test-durations.yml @@ -57,7 +57,7 @@ jobs: - name: Create Draft PR run: | - gh pr create --base main --head update-test-durations --title "Update .test-durations" --body "This PR updates the .test-durations file." --draft --reviewer GuyAfik + 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 }} From b4abbc101a13b9877e6da7d46fb61365898acab3 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 23:41:45 +0200 Subject: [PATCH 197/204] Empty-Commit From 90e46590a460fbbfa3a013c1d2a6faa5d2fef10d Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Tue, 19 Dec 2023 23:42:57 +0200 Subject: [PATCH 198/204] remove cancel --- .github/workflows/update-test-durations.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml index afbf8109be..bc5f86fb87 100644 --- a/.github/workflows/update-test-durations.yml +++ b/.github/workflows/update-test-durations.yml @@ -10,10 +10,6 @@ on: branches: - "**" -concurrency: - group: tests-${{ github.head_ref || github.ref }} - cancel-in-progress: ${{ github.event_name == 'pull_request' }} - jobs: update-test-durations: From 1fb5a578136aec835af5fe573ccf40f618474c45 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Wed, 20 Dec 2023 00:01:10 +0200 Subject: [PATCH 199/204] revert irrelevant changes --- .../commands/content_graph/tests/create_content_graph_test.py | 3 --- .../convert/converters/layout/tests/layout_up_to_5_9_9_test.py | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) 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 12bebdd631..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 @@ -1225,8 +1225,5 @@ def test_create_content_graph_with_python_version( marketplace=MarketplaceVersions.XSOAR, content_type=ContentType.INTEGRATION, ) - import logging - - logging.info(f"{integrations[0].to_dict()=}") assert expected_python_version == integrations[0].to_dict()["python_version"] assert dockerhub_api_mocker.called == is_taken_from_dockerhub 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 cbfaf631e9..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,6 +110,7 @@ def test_layout_to_incidents_dict(self, tmpdir): result = LayoutBelowSixConverter.layout_to_indicators_or_incidents_dict( layout_converter.pack.incident_types ) + try: assert result == { "ExtraHop Detection": ["ExtraHop Detection", "ExtraHop Detection 2"] From 43c37754cf95ee434f1f61f6ed92731862bde197 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 21 Dec 2023 08:10:27 +0200 Subject: [PATCH 200/204] run all tests for uts --- .github/workflows/on-push.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index 3287ac275c..4516ff89e7 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -44,11 +44,8 @@ jobs: node demisto_sdk/commands/common/markdown_server/mdx-parse-server.js & node_pid=$! - # poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --store-durations --junitxml=test-results/junit.xml || pytest_exit_code=$ - # mv .test_durations test-results/test_durations - mkdir unit-tests - poetry run pytest -v --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --cov=demisto_sdk --cov-report=html:unit-tests/coverage --junitxml=unit-tests/junit.xml --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + 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 --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From 7eb5b1b25d1a8b6787c943611d7d8f1ea483fbeb Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 21 Dec 2023 08:10:58 +0200 Subject: [PATCH 201/204] try without pytest-split --- .github/workflows/on-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index 4516ff89e7..47b569cba0 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -45,7 +45,7 @@ jobs: 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 --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? + 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 From d17fad0ae174409b92a5615631c0cd12cd9934cc Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 21 Dec 2023 08:12:01 +0200 Subject: [PATCH 202/204] update-test-durations ignore e2e --- .github/workflows/update-test-durations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml index bc5f86fb87..8254aeff54 100644 --- a/.github/workflows/update-test-durations.yml +++ b/.github/workflows/update-test-durations.yml @@ -38,7 +38,7 @@ jobs: node_pid=$! mkdir unit-tests - poetry run pytest --ignore={demisto_sdk/commands/init/templates,demisto_sdk/tests/integration_tests,demisto_sdk/commands/content_graph} --store-durations --junitxml=unit-tests/junit.xml || pytest_exit_code=$ + 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 From cf81e14b595cfb95a1c81a69363ff7e2ede3a77a Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 21 Dec 2023 09:11:44 +0200 Subject: [PATCH 203/204] with pytest-split --- .github/workflows/on-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index 47b569cba0..4516ff89e7 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -45,7 +45,7 @@ jobs: 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=$? + 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 --splits 5 --group ${{ matrix.group }} || pytest_exit_code=$? echo "PYTEST_EXIT_CODE=$pytest_exit_code" >> $GITHUB_ENV kill $node_pid From 40b0d7df77680c2cde8ec79c1b8552fa882b1199 Mon Sep 17 00:00:00 2001 From: GuyAfik Date: Thu, 21 Dec 2023 09:13:07 +0200 Subject: [PATCH 204/204] update .test-durations --- .test_durations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.test_durations b/.test_durations index e64133459f..75875d7345 100644 --- a/.test_durations +++ b/.test_durations @@ -4592,4 +4592,4 @@ "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 -} +} \ No newline at end of file